我不知道这是否可能,但我想编写类似于带有选项的常规可执行文件的 shell 脚本。作为一个非常简单的示例,考虑一个配置为可执行的 shell 脚本 foo.sh:
./foo.sh
./foo.sh -o
并且代码的foo.sh
工作方式类似于
#!/bin/sh
if ## option -o is turned on
## do something
else
## do something different
endif
是否有可能以及如何做到这一点?谢谢。