我有一个bash脚本,调用几个长时间运行的进程。我想捕获这些调用的输出到变量的处理原因。但是,因为这些是长时间运行的进程,我想要的rsync调用的输出将显示在控制台中实时,而不是事实。
为此,我有found一种做的方式,但它依赖于输出文本到/ dev / stderr。我觉得输出到/ dev / stderr不是一个好的做事方式。
VAR1=$(for i in {1..5}; do sleep 1; echo $i; done | tee /dev/stderr) VAR2=$(rsync -r -t --out-format='%n%L' --delete -s /path/source1/ /path/target1 | tee /dev/stderr) VAR3=$(rsync -r -t --out-format='%n%L' --delete -s /path/source2/ /path/target2 | tee /dev/stderr)
在上面的示例中,我调用rsync几次,我想看到文件名,因为它们被处理,但最后我仍然希望输出在一个变量,因为我将在以后解析。
有没有一个“更清洁”的方法来完成这个?
如果它有所作为,我使用Ubuntu 12.04,bash 4.2.24。
在你的shell中复制& 1(在我的考试中为5),在subshell中使用& 5(这样你将写入父shell的stdout(& 1)):
原文链接:https://www.f2er.com/bash/390352.htmlexec 5>&1 FF=$(echo aaa|tee >(cat - >&5)) echo $FF
将打印aaa两次,一次是因为subshell中的echo,第二次打印变量的值。
在您的代码中:
exec 5>&1 VAR1=$(for i in {1..5}; do sleep 1; echo $i; done | tee >(cat - >&5)) # use the value of VAR1