分配给位置参数



如何在 Bash 中为位置参数赋值?我想为默认参数赋值:

if [ -z "$4" ]; then
   4=$3
fi

指示 4 不是命令。

内置set是设置位置参数的唯一方法

$ set -- this is a test
$ echo $1
this
$ echo $4
test

--保护看起来像选项的东西(例如 -x )。

在您的情况下,您可能需要:

if [ -z "$4" ]; then
   set -- "$1" "$2" "$3" "$3"
fi

但它可能会更清楚

if [ -z "$4" ]; then
   # default the fourth option if it is null
   fourth="$3"
   set -- "$1" "$2" "$3" "$fourth"
fi

您可能还想查看参数计数$#,而不是测试-z

您可以通过使用第四个参数再次调用脚本来执行所需的操作:

if [ -z "$4" ]; then
   $0 "$1" "$2" "$3" "$3"
   exit $?
fi
echo $4

./script.sh one two three一样调用上面的脚本将输出:

这可以通过将任务直接赋值到具有导出/导入类型机制的辅助数组中来完成:

set a b c "d e f" g h    
thisArray=( "$@" )
thisArray[3]=4
set -- "${thisArray[@]}"
echo "$@"

输出 'A b c 4 g h'

相关内容

  • 没有找到相关文章

最新更新