1人のユーザーのみのbashでtopを読み取るにはどうすればよいですか?他のユーザーのデータを表示したくない。
top
man topから:
man top
-u : Monitor by user as: -u somebody Monitor only processes with an effective UID or user name matching that given.
したがって、top -u rootを実行すると、rootプロセスのみが取得されます。
top -u root
root