nsbin/mem_sorted.sh
Nico Schottelius e244cf1bfd add script to display the memory usage of a specific program
Signed-off-by: Nico Schottelius <nico@denkbrett.schottelius.org>
2008-07-24 09:47:18 +02:00

24 lines
384 B
Bash
Executable file

#!/bin/sh
name=apache2
for proc in $(pgrep $name); do
pmap -q -x $proc | \
tail -n +2 | \
awk '{
oors=ORS;
ORS=" ";
print $2 "\t";
i=7;
while(i <= NF) {
print $i;
i=i+1;
}
ORS=oors;
print "";
}' | \
sort -g | \
tail -n 10
echo From: ${proc}
done