linux 运行脚本时带参数进去 把输入的参数与脚本内的字符串比较 怎么做不出来
发布网友
发布时间:2022-05-07 10:00
我来回答
共1个回答
热心网友
时间:2023-10-25 03:03
#!/bin/bash
if [ $1 == "all" ] ;then # 主意后边]和all之间需要有空格
echo "none"
elif [ $1 = "none" ];then #错误同上 注意空格
echo "none"
else
echo "please input all | none"
fi #ifend
热心网友
时间:2023-10-25 03:03
#!/bin/bash
if [ $1 == "all" ] ;then # 主意后边]和all之间需要有空格
echo "none"
elif [ $1 = "none" ];then #错误同上 注意空格
echo "none"
else
echo "please input all | none"
fi #ifend
热心网友
时间:2023-10-25 03:03
#!/bin/bash
if [ $1 == "all" ] ;then # 主意后边]和all之间需要有空格
echo "none"
elif [ $1 = "none" ];then #错误同上 注意空格
echo "none"
else
echo "please input all | none"
fi #ifend