我有一个带有可选详细参数的脚本。根据它的值,我想抑制输出(在下面的示例中是 pushd,但实际上是其他,主要是 git 命令)。例子:
verb=1
# pushd optionally outputs path (works but too long)
if [ $verb ]; then
pushd ..
else
pushd .. > /dev/null
fi
popd > /dev/null # the same if.. would be needed here
我正在寻找的是一些东西:
push .. $cond # single line, outputing somehow controlled directly
popd $cond # ditto
有人可以帮忙吗?谢谢,
汉斯-彼得