Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
おおよその CPU 使用率をカウントしたいのですが、accton やその他のソフトウェアは使用したくありません。スクリプトのみです。top を使用して、CPU 使用率またはメモリ使用率の最も高いプロセス名を取得できますか? top -b を使用すると、役に立たない情報がたくさん得られます。
CPU 使用率の場合:
ps -eo comm,%cpu --no-headers | sort -k2 -nr | head -1
メモリの場合:
ps -eo comm,%mem --no-headers | sort -k2 -nr | head -1