Following the posts in Planet Ubuntu, I thought of trying out the same to find out which commands I have often used recently. So I tried..
$ history | awk ‘{print $2}’ | awk ‘BEGIN {FS=”|”}{print $1}’ | sort | uniq -c | sort -n | tail | sort -nr
And the result was..
81 ls
68 sudo
64 cd
33 [...]




