Top ten *NIX commands that you use.

This is a small shell script that will reveal what shell commands that you use the most:

history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head -10

Think about that…..