脚本显示未找到任何存在的进程

时间:2018-10-15 15:41:30

标签: linux bash scripting

嗨,我已经编写了此脚本,并且可以正常工作,但是我的一些进程显示为找不到进程

#!/bin/bash
OIFS=$IFS;
IFS=$'\n';
psC=$(ps -C "node" --format pid --no-headers)
arra=$(pwdx $psC)
array=($arra);
for ((i=0; i<${#array[@]}; ++i));
do
echo "$i: ${array[$i]}" 
done

我也附上了输出

enter image description here

0 个答案:

没有答案