トップ出力からPWD列を取得できますか?

トップ出力からPWD列を取得できますか?

わかりましたpwdx。しかし、PWDが表示されたらいいと思いますtop。つまり、PWDとCPU/memの使用量を並べてみたいと思います。top/の出力psと定期的な更新をpwdx組み合わせるスクリプトや1行のスクリプトを持っている人がいますか?

答え1

私のオタクの解決策は次のとおりです。

ps --no-headers -e -o pid,%cpu,%mem,args | grep -v "ps --no-headers" > ps.txt && awk '{ print $1 }' ps.txt > pids.txt && cat pids.txt | xargs pwdx | cut -d ' ' -f 2 > pwd.txt && awk '{ print " "$1" "$2" "$3" "}' ps.txt > ps1.txt && cut -d ' ' -f 4- ps.txt > ps2.txt && paste ps1.txt pwd.txt ps2.txt

ファイルを書かなくても大丈夫ですか?それとも一般的に悪夢が少ないのですか?

答え2

私はそれを悪夢のようにすることができませんでした。

#!/bin/bash
ps --no-headers -e -o pid,%cpu,%mem,args > ps_out.txt
awk '!/--no-headers/ { print $1 }' ps_out.txt | tee pids.txt | xargs pwdx 2>/dev/null > paths.txt
sed --in-place 's/://' paths.txt
awk 'FILENAME=="paths.txt" {pids[$1][0]=$2} FILENAME=="ps_out.txt" { pid=$1; $1=""; $0=$0; pids[pid][1]=$0} END {for( pid in pids ) {print pid, pids[pid][1], pids[pid][0]} }' paths.txt ps_out.txt
rm pids.txt paths.txt ps_out.txt

awkこのスクリプトを読みやすくするには、次の手順を実行します。

FILENAME=="paths.txt" {
   pids[$1][0]=$2
}
FILENAME=="ps_out.txt" {
   pid=$1;
   $1="";
   $0=$0;
   pids[pid][1]=$0
}
END {
   for( pid in pids ) {
      print pid, pids[pid][1], pids[pid][0]
   }
}

関連情報