这是问题所在,我想计算一下我在 hpc 中拥有的工作数量,但这不是现成的功能之一。所以我做了这个简单的脚本
squeue -u user_name | wc -l
wheresqueue
打印所有作业,如下所示
> squeue -u user_name
JOBID PARTITION NAME USER ST TIME NODES NODELIST(REASON)
8840441 theory cteq fxm PD 0:00 1 (Resources)
8840442 theory cteq fxm PD 0:00 1 (Priority)
8840443 theory cteq fxm PD 0:00 1 (Priority)
8840444 theory cteq fxm PD 0:00 1 (Priority)
这将被输送到wc
并计算行数。但是,第一行不是作业的条目。计数时如何指示wc
跳过第一行?还是我应该只取它的输出wc
和减一?
提前致谢!