为什么要将 shell 脚本括在大括号中?

为什么要将 shell 脚本括在大括号中?

将 shell 脚本中的所有行括在大括号中的原因是什么?

例如该脚本的全部内容 用大括号括起来:

#!/bin/sh

{
set -e

LATEST="v0.3.5"
DGOSS_VER=$GOSS_VER

if [ -z "$GOSS_VER" ]; then
    GOSS_VER=${GOSS_VER:-$LATEST}
    DGOSS_VER='master'
fi
GOSS_DST=${GOSS_DST:-/usr/local/bin}
INSTALL_LOC="${GOSS_DST%/}/goss"
DGOSS_INSTALL_LOC="${GOSS_DST%/}/dgoss"
touch "$INSTALL_LOC" || { echo "ERROR: Cannot write to $GOSS_DST set GOSS_DST elsewhere or use sudo"; exit 1; }

arch=""
if [ "$(uname -m)" = "x86_64" ]; then
    arch="amd64"
else
    arch="386"
fi

url="https://github.com/aelsabbahy/goss/releases/download/$GOSS_VER/goss-linux-$arch"

echo "Downloading $url"
curl -L "$url" -o "$INSTALL_LOC"
chmod +rx "$INSTALL_LOC"
echo "Goss $GOSS_VER has been installed to $INSTALL_LOC"
echo "goss --version"
"$INSTALL_LOC" --version

dgoss_url="https://raw.githubusercontent.com/aelsabbahy/goss/$DGOSS_VER/extras/dgoss/dgoss"
echo "Downloading $dgoss_url"
curl -L "$dgoss_url" -o "$DGOSS_INSTALL_LOC"
chmod +rx "$DGOSS_INSTALL_LOC"
echo "dgoss $DGOSS_VER has been installed to $DGOSS_INSTALL_LOC"
}

Shellcheck.net 认为带或不带花括号的脚本都有效。

答案1

没有明显的理由这样做。大括号是一个分组结构,其中的命令将在与脚本其余部分相同的环境中执行。

如果它是一个普通的括号,那么它就会是一个子 shell(与脚本其余部分分开的环境),但在这种情况下,这也不会产生太大的区别。

可能的这样做的原因是,它将使作者能够将 中任何命令的所有输出重定向{ ... }到某个特定位置,如

{ ...some commands...; } >somefile

但这里显然没有这样做。

带括号,

( ...some commands... )

作者本来可以设置 shell 选项并创建不影响脚本其余部分的局部变量。

相关内容