This is an old post imported from the previous version of this site when it was my personal blog. Some of these posts are in spanish and I never got to translate these posts.
I found this meme in 120% Linux
Basically this is to see which commands are used most by Linux users
This is my top 10:
112 cd
96 ls
48 sudo
43 ssh
21 ping
16 scp
16 mkdir
13 nano
13 mongrel_rails
10 svn
The code to get this is:
history | awk ‘{print $2}’ | awk ‘BEGIN {FS=”|”} {print $1}’ | sort | uniq -c | sort -rn | head -10
Is interesting how much you can get an idea of the kind of work from the list.
My top 10 linux commands
I found this meme in 120% Linux
Basically this is to see which commands are used most by Linux users
This is my top 10:
112 cd
96 ls
48 sudo
43 ssh
21 ping
16 scp
16 mkdir
13 nano
13 mongrel_rails
10 svn
The code to get this is:
history | awk ‘{print $2}’ | awk ‘BEGIN {FS=”|”} {print $1}’ | sort | uniq -c | sort -rn | head -10
Is interesting how much you can get an idea of the kind of work from the list.
Related posts: