Skip to content

Instantly share code, notes, and snippets.

@osolmaz
Created May 10, 2014 16:41
Show Gist options
  • Save osolmaz/cc5a868f0636c18396e0 to your computer and use it in GitHub Desktop.
Save osolmaz/cc5a868f0636c18396e0 to your computer and use it in GitHub Desktop.
Unix command to list top 20 directories you cd into
history | grep cd | cut -d' ' -f5 | sort | uniq -c | sort -k1 -n -r | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment