1.$?判断上一条命令是否执行成功
if [ $? -ne 0 ]; then
echo “failed”
else
- su -user - c ;mkdir test
- c表示切换到这个用户执行命令
3.read -p 读入输入值
read -p “请输入你要ping的ip地址:” ip (保存为ip的变量)
#"&>"的意思是把ping的结果重定向输出到一个指定的文件中去
ping -c5 $ip &>/dev/null
if [ $? -eq 0 ]
then
2024-03-26 08:02:22
1.$?判断上一条命令是否执行成功
if [ $? -ne 0 ]; then
echo “failed”
else
3.read -p 读入输入值
read -p “请输入你要ping的ip地址:” ip (保存为ip的变量)
#"&>"的意思是把ping的结果重定向输出到一个指定的文件中去
ping -c5 $ip &>/dev/null
if [ $? -eq 0 ]
then