```bash #!/bin/bash echo "参数个数为: $#" ``` 运行脚本并传递一些参数: ```bash $ ./script.sh arg1 arg2 arg3 参数个数为:3 ``` 2. 使用条件判断结构:可以使用if语句来判断参数个数。例如: ```bash #!/bin/bash if [ $# -eq 0 ]; then echo "没有传递任何参数" elif [ $# -...
/bin/bashif[ $# -gt0]; then echo"参数个数为$#个"elseecho"没有参数"fi
/bin/bash #提示“请输入姓名”并等待30秒,把用户的输入保存入变量name中read -t 30 -p "请输入用户名称:" nameecho -e "\n"echo "用户名为:$name" #提示“请输... 扯 0 55331 linux shell判断脚本执行时传入了多少个参数,判断脚本参数个数,参数数量...