Snippets code from my daily experience

June 16, 2007

The launched commands top ten

Filed under: cygwin, unix — dafi @ 7:57 am

topyli shows a bash command line to list the launched commands top ten

A very simple command line

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

Blog at WordPress.com.