shell 01

1.$?判断上一条命令是否执行成功
if [ $? -ne 0 ]; then
echo “failed”
else

  1. 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

上一篇:通过数组模拟实现单链表


下一篇:CF1454E Number of Simple Paths(容斥+基环树)