2009-07-14

【L】查看你最常使用的指令

這個指令,就是針對 history 來看你最常使用的指令是什麼。

history | awk '{print $2}' | awk 'BEGIN {FS="|"}{print $1}' | sort | uniq -c | sort -r

結果如下:

chingwei:~ # history | awk '{print $2}' | awk 'BEGIN {FS="|"}{print $1}' | sort | uniq -c | sort -r
    115 cd
    109 ls
     49 ll
     28 vi
     23 svn
     21 /etc/init.d/lighttpd
     14 exit
     13 rm
      8 whoami
      7 tail
      6 history
      6 chown

看的出來,我最常使用的是 cd......

PS.如果看到比較常用的,又要打很長指令的,就可以在 ./bashrc 裡設定 alias 。

 

0 comments:

張貼留言