📅  最后修改于: 2022-03-11 14:51:07.896000             🧑  作者: Mango
#!/bin/bash
# init
USERID="$1"
#....
/bin/egrep -i "^${USERID}:" /etc/passwd
if [ $? -eq 0 ]; then
echo "User $USERID exists in /etc/passwd"
else
echo "User $USERID does not exists in /etc/passwd"
fi
# ....