ps ux | numfmt --header --to=iec --field 5,6 --padding 6
Sie benötigen Coreutils>=8.25
Ich persönlich bevorzuge dieses hier:
ps -eo pmem,comm,pid,maj_flt,min_flt,rss,vsz --sort -rss | numfmt --header --to=iec --field 4-5 | numfmt --header --from-unit=1024 --to=iec --field 6-7 | column -t | head
Es scheint, als gäbe es in ps
kein entsprechendes Flag , also müssen Sie entweder ein anderes Tool verwenden (ich persönlich bevorzuge htop
) oder mit ps
herumspielen etwas ausgeben. Ich denke, Sie möchten bei ps
bleiben .Hier ist ein schmutziges kleines Skript, das ich als Beispiel erstellt habe:
# get terminal width
WIDTH=`tput cols`
# pipe stdin to awk
cat | \
awk '\
BEGIN {
# set output format
CONVFMT="%.2f"
}
NR==1 {
# search first line for columns that need to be converted from K to M
for (i=1;i<=NF;i++)
# add condition for new columns if you want
if ($i=="VSZ" || $i=="RSS") {
# column numbers are stored in an array
arr[i]=i;
$i = $i "(MB)"
}
}
NR > 1 {
# edit appropriate columns
for (i in arr)
$i=$i/1024;
}
{
# print every line
print $0
}' | \
# format the output into columns and trim it to terminal width
column -t | cut -c 1-$WIDTH
Speichern Sie es in einer Datei, sagen Sie prettyps.sh
, ausführbar machen:
chmod +x prettyps.sh
und wie folgt verwenden:
ps ux | /path/to/prettyps.sh
Die Verwendung dieses Skripts hat den Nachteil, dass zusätzliche Prozesse zur ps-Ausgabe hinzugefügt werden, aber es funktioniert trotzdem:
$ ps ux | ./prettyps.sh USER PID %CPU %MEM VSZ(MB) RSS(MB) TTY STAT START TIME COMMAND pono 2658 0.0 0.0 358.88 4.29 ? Sl 02:33 0:00 /usr/bin/gnome-keyring ... output truncated... pono 4507 0.0 0.0 19.14 1.81 pts/1 S+ 03:29 0:00 man pono 4518 0.0 0.0 10.55 0.96 pts/1 S+ 03:29 0:00 pager pono 4727 0.7 0.9 1143.59 53.08 ? Ssl 04:10 0:24 /opt/sublime_text/subl pono 4742 0.1 0.4 339.05 25.80 ? Sl 04:10 0:03 /opt/sublime_text/plug pono 5177 0.0 0.0 19.23 1.32 pts/0 R+ 05:05 0:00 ps pono 5178 0.0 0.0 4.34 0.61 pts/0 S+ 05:05 0:00 /bin/sh
Ich hoffe, das hilft Ihnen dabei, einen Weg zu finden, der zu Ihnen passt.