gpt4 book ai didi

linux - 如何在脚本启动时隐藏部分未使用的变量

转载 作者:行者123 更新时间:2023-12-03 09:48:05 24 4
gpt4 key购买 nike

在这种情况下,如何在未使用 bash 命令定义变量时隐藏变量的使用:

EXCLUDE_PORTS="--exclude-ports $2"

if [ "${EXCLUDE_PORTS:-}" == "" ]; then
EXCLUDE_PORTS=''
fi
我还需要隐藏 --exclude-ports,当未指定 $2 时。实际上,当我没有在脚本启动时指定 $2 时,脚本只取第一部分为空的“--exclude-ports”,这会破坏我的脚本。

最佳答案

动态构建参数时始终使用/首选数组:

if [ -n "$2" ]
then EXCLUDE_PORTS=( '--exclude-ports' "$2" )
else EXCLUDE_PORTS=()
fi

echo command "${EXCLUDE_PORTS[@]}" --other-option

关于linux - 如何在脚本启动时隐藏部分未使用的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63220290/

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