SyntheticHuman Asked: 2020-10-06 07:11:45 +0800 CST2020-10-06 07:11:45 +0800 CST 2020-10-06 07:11:45 +0800 CST 如何向自定义命令添加选项?[复制] 772 我想为自定义命令添加选项。我通过将 .sh 文档放入 /bin 来创建我的命令。是否可以在我的代码中添加“-x”选项?(即自定义命令-c) command-line 1 个回答 Voted Best Answer William Martens 2020-10-06T07:21:21+08:002020-10-06T07:21:21+08:00 示例文件:multi_arg.sh echo $1 #Echo out the first argument echo $2 #Echo out the second argument echo $3 #Echo out the 3 argument 测试运行: $ sh multi_arg.sh abc a b c 另一个测试运行(使用 -c 例如) $ sh ABC.sh -a -b -c -a -b -c 相关: https ://unix.stackexchange.com/questions/3773/how-to-pass-parameters-to-an-alias
示例文件:multi_arg.sh
测试运行:
$ sh multi_arg.sh abc
另一个测试运行(使用 -c 例如)
$ sh ABC.sh -a -b -c
相关: https ://unix.stackexchange.com/questions/3773/how-to-pass-parameters-to-an-alias