Skip to content

Instantly share code, notes, and snippets.

@rawiriblundell
Created April 18, 2021 10:57
Show Gist options
  • Save rawiriblundell/b41be838cecee6034d3fa4449b6d9641 to your computer and use it in GitHub Desktop.
Save rawiriblundell/b41be838cecee6034d3fa4449b6d9641 to your computer and use it in GitHub Desktop.
Sort history by most used commands, can optionally print n lines (e.g. histrank [n])
# Sort history by most used commands, can optionally print n lines (e.g. histrank [n])
histrank() {
HISTTIMEFORMAT="%y/%m/%d %T " history \
| awk '{out=$4; for(i=5;i<=NF;i++){out=out" "$i}; print out}' \
| sort \
| uniq -c \
| sort -nk1 \
| tail -n "${1:-$(tput lines)}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment