if流程控制语句
if 条件判断语句;then
command1
elif 条件判断语句;then
command2
else
command3
fi
练习1
根据当前登录用户uid判断是否为超级用户
提示:uid=0代表超级用户
如果是超级用户输出”the user is root”,否则输出”the user is not root”
#!/bin/bash
if [ “id -u” -ne 0 ]; then
echo “the user is not root”
else
echo “the user is root”
fi
练习2
用户输入云服务器相关信息(主机名),判断主机名输入是否合法
#!/bin/bash
read -p ‘请输入主机名:’ hostname
if [-