shell练习四

    模拟linnux登录shell

#!/bin/bash
echo -n "login:"
read name
echo -n "passwd:"
read passwd

if [ $name="aaa" -a passwd="aaa" ]; then
        echo "the host and passwd is right!"
else
        echo "input is error!"
fi
[root@localhost shell]# sh 5_login.sh
login:aaa
passwd:aaa
the host and passwd is right!


你可能感兴趣的:(shell练习四)