标签: 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
我也附上了输出