有没有可能在linux(debian)中添加bash脚本编写的“帮助”?我是说,特别是通过使用commandyourscript --helpyourscript -h

最佳答案

不必比这更难。

case $1 in
 -[h?] | --help)
    cat <<-____HALP
        Usage: ${0##*/} [ --help ]
        Outputs a friendly help message if you can figure out how.
____HALP
        exit 0;;
esac

如果使用getopts进行选项处理,则使用该选项来标识选项;但操作看起来或多或少类似(imnshogetopts在简单的while ... shift循环中实际上不提供任何功能)。

关于linux - 如何添加到您的bash脚本帮助选项“yourscript --help”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29285976/

10-16 01:09