Created
April 18, 2021 10:57
-
-
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])
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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