1
0
Fork 0

Read the entire history in history-stat

By default history acts like 'fc -l' which only gives the last 16 entries of the history
pull/69/merge
Colin Hebert 13 years ago committed by Sorin Ionescu
parent 25405b226b
commit 13f7fde31e

@ -8,7 +8,7 @@
#
# Lists the ten most used commands.
alias history-stat="history | awk '{print \$2}' | sort | uniq -c | sort -n -r | head"
alias history-stat="history . | awk '{print \$2}' | sort | uniq -c | sort -n -r | head"
# Serves a directory via HTTP.
alias http-serve='python -m SimpleHTTPServer'

Loading…
Cancel
Save