linux判断用户是否存在的方法:1、将“read -p “please input a username:” username…”保存为test.sh;2、运行“sh test.sh”即可。
本文操作环境:linux5.9.8系统,Dell G3电脑。
linux怎么判断用户是否存在?
linux 判断一个用户是否存在:
#!/bin/bashread -p “please input a username:” usernameif id -u $username >/dev/null 2>&1; then echo “user exists”else echo “user does not exist”fi
把上面内存保存为 test.sh , 然后 sh test.sh 运行
推荐学习:《linux视频教程》
最新评论