Tags
backup beta compile computer conversion crash crontab decimal firefox fmadm game gcc git hexadecimal hp java jumpstart kernel kill linux math microsoft networker nfs opensolaris opensource patch pkg programming psexec SAN SCAT smpatch solaris sparc ssh strace sun t-mobile tap thunderbird ucigame update windows windows 7 zfs
Tag Archives: awk
quick disk usage check
Here’s a quick one liner for checking your disk usage your current working directory (cwd): nice -n 19 du -ks * | sort -rn | awk ‘{print $1 “KB\t”, $1 / 1024 “MB\t”, $2 }’ Some sample output looks like: … Continue reading