What commands do you use the most?
I recently discovered the usefulness of find (which makes up its clumsiness, forcing you to type -name to search, with the awesome -exec option). So I'm curious what commands do you find to be the most useful?
history | awk '{print $2}' | grep -v cd | grep -v ls | sort | uniq -c | sort -nr | head -10 (to look for your top ten commands)
4 comments
[ 3.7 ms ] story [ 16.4 ms ] threadvi is an editor, as is mate (cli accesses to TextMate on the Macintosh). I tend to use vi when just editing a single file and TextMate when working on a project.
The ssh and scp are from deploying and managing projects to various machines. curl is used for testing that various REST apis are working correctly.
I never realised how much I deleted things :)
My top 10 commands is/are:
Interestingly, if I remove the ls and cd removal, ls comes in at only the fourth spot. (cd comes at the no. 1 spot, unsurprisingly.)P.S. I had to change the $2 in the awk command to $4, since I store dates with the commands.