The Top 10 of your most used UNIX commands
Binary Talks | (0)
Almost three years ago Uwe Hermann posted a one-liner in his blog which was mentioned in an article from IBM called UNIX Productivity tips. It shows you the ten most used commands on your local machine and I think it's time to revive this habit.
Do the following on your console and see what you're frequently using:
user@host: ~ $ history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head -10
This is the result of my workstation which now runs for about 1 1/2 months with a current total of 8.000 commands:
1987 ssh
767 ls
...