Apr 22
Everybody is doing it
The top 10 commands from your shell meme. Here’s mine (from my server rata):
history | awk '{print $2}' | awk 'BEGIN {FS="|"} {print $1}' | sort | uniq -c | sort -nr | head -10
159 ls
117 cd
59 scp
29 gvim
28 ssh
24 mv
21 mysql
20 locate
19 su
13 rm
So what does this say?
lsmost of the time I’m only lookingcdthen I’m gonescpthe data is always greener on another hostgvimI do do some worksshbut I wish I was somewhere elsemvmaybe moving things around will help?mysqlok, just lately I’m playing around with MySQL replication, more about that laterlocateI’m so lostsutime to call upon a higher powerrmwhen all else fails try something destructive

