摘要: 1、编写shell脚本 ex1.sh,提示用户输入用户名,并判断此用户名是否存在。 (提示:利用read、grep和/etc/passwd) #!/bin/bash echo "请输入用户名" read username #相当于scanf if grep $username /etc/passwd 阅读全文
posted @ 2020-04-12 11:51 创造bug的夫 阅读(1251) 评论(0) 推荐(0) 编辑