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