read aa
file='cat /etc/passwd |grep $aa'
if [ -z $aa ]
then
echo "the user is not exist"
useradd user$aa
else
echo "the user is exist"
fi