Skip to content

Instantly share code, notes, and snippets.

@raimon49
Created March 1, 2012 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raimon49/1949853 to your computer and use it in GitHub Desktop.
Save raimon49/1949853 to your computer and use it in GitHub Desktop.
zshの履歴から良く打ってる順にコマンド + サブコマンド( or オプション)を並べるワンライナー
cat ~/.zsh_history | awk '{print $1" "$2}' | sort | uniq -c | sort -nr | head -20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment