gpt4 book ai didi

bash - 在 bash 中使用 getopts 的 bool cli 标志?

转载 作者:行者123 更新时间:2023-11-29 09:15:12 27 4
gpt4 key购买 nike

是否可以在 bash 中使用 getopts 实现 bool cli 选项?基本上,如果指定了 -x,我想做一件事,如果没有指定,我想做另一件事。

最佳答案

当然可以。 @JonathanLeffler 几乎已经在问题的评论中给出了答案,所以我在这里要做的就是添加一个实现示例和一些需要考虑的细节:

#!/usr/bin/env bash

# Initialise option flag with a false value
OPT_X='false'

# Process all options supplied on the command line
while getopts ':x' 'OPTKEY'; do
case ${OPTKEY} in
'x')
# Update the value of the option x flag we defined above
OPT_X='true'
;;
'?')
echo "INVALID OPTION -- ${OPTARG}" >&2
exit 1
;;
':')
echo "MISSING ARGUMENT for option -- ${OPTARG}" >&2
exit 1
;;
*)
echo "UNIMPLEMENTED OPTION -- ${OPTKEY}" >&2
exit 1
;;
esac
done

# [optional] Remove all options processed by getopts.
shift $(( OPTIND - 1 ))
[[ "${1}" == "--" ]] && shift

# "do one thing if -x is specified and another if it is not"
if ${OPT_X}; then
echo "Option x was supplied on the command line"
else
echo "Option x was not supplied on the command line"
fi

关于上面例子的几点说明:

  • truefalse 用作选项 x 指示符,因为它们都是有效的 UNIX 命令。在我看来,这使得选项存在的测试更具可读性。

  • getopts 配置为以静默错误报告模式运行,因为它抑制了默认错误消息并允许更精确的错误处理。

  • 该示例包括用于处理缺少的选项参数和 post-getopts 命令行参数的代码片段。这些不是 OP 问题的一部分。

    添加它们是为了完整性,因为在任何相当复杂的脚本中都需要此代码。

有关 getopts 的更多信息,请参阅 Bash Hackers Wiki: Small getopts tutorial

关于bash - 在 bash 中使用 getopts 的 bool cli 标志?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31974550/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com