Listing shell history by popularity





7
Date Submitted Thu. Sep. 21st, 2006 1:25 PM
Revision 1 of 1
Scripter bertheymans
Tags bash | fun | linux | unix
Comments 0 comments
This one-liner is great, it lists the commands you have used by popularity. At present, the 'cd' command wins in my history file with 140. Followed by ls (93) and ssh (56). What are your top 3 commands

Snippet source: ibm


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

 

Bert Heymans

blog.heymans.org

Comments

There are currently no comments for this snippet.

Voting