我正在尝试以参数方式控制命令的错误输出,但管道命令被作为另一个参数处理。下面的测试脚本;
...$ cat printOutput.sh
#!/bin/sh
if [ $# -gt 0 ]; then echo "Wrong parameter $1"; exit; fi
echo "stdout"
echo "errout" >&2
...$ cat test.sh
#!/bin/sh
cmdBase="./printOutput.sh"
if [ -z $1 ]; then
#Do not pipe
cmd="$cmdBase"
else
#Pipe err
cmd="$cmdBase 2>/dev/null"
fi
echo "`$cmd`"
错误输出仅应在选择 --verbose 选项时打印,但无论如何都会打印。测试脚本显示2>/dev/null
管道作为参数处理。
...$ ./test.sh --verbose
Wrong parameter 2>/dev/null
...$ sh -x ./test.sh --verbose
+ cmdBase=./printOutput.sh
+ [ -z --verbose ]
+ cmd=./printOutput.sh 2>/dev/null
+ ./printOutput.sh 2>/dev/null
+ echo Wrong parameter 2>/dev/null
Wrong parameter 2>/dev/null
为什么/如何将管道作为参数处理?