summaryrefslogtreecommitdiffstats
path: root/bin/mem_usage
blob: ad712dc4cdc2bce9c38904d65e362e885733a418 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash

if [[ -z "$1" ]]; then
    num=20
else
    num=$1
fi
ps -eo size,ucmd | sort -rn | head -n${num}