linux – “printf -v”内部函数无法使用重定向输出

前端之家收集整理的这篇文章主要介绍了linux – “printf -v”内部函数无法使用重定向输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用bash 4.1.2和4.3.48,以下脚本给出了预期的输出
#!/bin/bash

returnSimple() {
   local  __resultvar=$1
   printf -v "$__resultvar" '%s' "ERROR"
   echo "Hello World"
}

returnSimple theResult
echo ${theResult}
echo Done.

按预期输出

$./returnSimple
Hello World
ERROR
Done.

但是,当函数的stdout通过管道传递给另一个进程时,__ resultvar变量的赋值不再起作用:

#!/bin/bash

returnSimple() {
   local  __resultvar=$1
   printf -v "$__resultvar" '%s' "ERROR"
   echo "Hello World"
}

returnSimple theResult | cat
echo ${theResult}
echo Done.

意外输出

$./returnSimple
Hello World

Done.

为什么printf -v在第二种情况下不起作用? printf -v是否应该将值写入结果变量,而不管函数输出是否通过管道传递到另一个进程?

解决方法

请参阅man bash,有关管道的部分:

Each command in a pipeline is executed as a separate process (i.e.,in a subshell).

这就是你写cmd时的原因cat,cmd接收无法修改的变量副本.

一个简单的演示:

$test() ((a++))
$echo $a

$test
$echo $a
1
$test | cat
$echo $a
1
原文链接:https://www.f2er.com/linux/395078.html

猜你在找的Linux相关文章