如何向自定义命令添加选项?

如何向自定义命令添加选项?

我想向自定义命令添加选项。我通过将 .sh 文档放入 /bin 来创建命令。是否可以向我的代码添加“-x”选项?(即 customcommand -c)

答案1

示例文件: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

相关内容