观看流程替换

时间:2018-05-09 21:47:38

标签: bash unix watch process-substitution

我经常运行命令

squeue -u $USER | tee >(wc -l)

其中squeueSlurm command,以查看您正在运行的作业数量。这给了我squeue的输出并自动告诉它有多少行。

我如何watch这个命令?

watch -n.1 "squeue -u $USER | tee >(wc -l)"会产生

Every 0.1s: squeue -u randoms | tee >(wc -l)                                                                                                                                                                                                                                                                                                        Wed May  9 14:46:36 2018

sh: -c: line 0: syntax error near unexpected token `('
sh: -c: line 0: `squeue -u randoms | tee >(wc -l)'

1 个答案:

答案 0 :(得分:2)

来自watch手册页:

  

请注意,命令被赋予" sh -c"这意味着您可能需要使用额外的引用来获得所需的效果。

sh -c也不支持流程替换,您在此处使用的语法为>()

幸运的是,您所做的事情实际上并不需要这种语法:

watch -n.1 'out=$(squeue -u "$USER"); echo "$out"; { echo "$out" | wc -l; }'

...或者,如果你真的想要使用你的原始代码,即使性能损失很大(每隔十分之一开始不只有一个两个新shell)第二个 - 第一个sh,然后是bash):

bash_cmd() { squeue -u "$USER" | tee >(wc -l); } # create a function
export -f bash_cmd            # export function to the environment
watch -n.1 'bash -c bash_cmd' # call function from bash started from sh started by watch