如何使用 getopt 在 UNIX 中制作多字符参数?
作者:Waffles 提问时间:10/20/2010
我正在尝试制作一个 getopt 命令,以便当我将“-ab”参数传递给脚本时, 该脚本会将 -ab 视为单个参数。 #!/bin/sh args=`getopt "ab":fc:d $*` set ...
getopt 问答列表
作者:Waffles 提问时间:10/20/2010
我正在尝试制作一个 getopt 命令,以便当我将“-ab”参数传递给脚本时, 该脚本会将 -ab 视为单个参数。 #!/bin/sh args=`getopt "ab":fc:d $*` set ...
作者:Redwood 提问时间:10/11/2008
比如说,我有一个脚本,用以下行调用: ./myscript -vfd ./foo/bar/someFile -o /fizz/someOtherFile 或者这个: ./myscript -v...
作者:Malte 提问时间:3/8/2022
我想使用 getopt 传递一些 interger 号码。 这是我尝试过的: if ! options=$(getopt -o n: -l num: -- $@) then exit 1 fi ...