mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-14 01:40:09 +00:00
lib: clean up zsh_stats function
This commit is contained in:
parent
bcc859e012
commit
caff704f41
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
function zsh_stats() {
|
function zsh_stats() {
|
||||||
fc -l 1 | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n20
|
fc -l 1 \
|
||||||
|
| awk '{ CMD[$2]++; count++; } END { for (a in CMD) print CMD[a] " " CMD[a]*100/count "% " a }' \
|
||||||
|
| grep -v "./" | sort -nr | head -n20 | column -c3 -s " " -t | nl
|
||||||
}
|
}
|
||||||
|
|
||||||
function uninstall_oh_my_zsh() {
|
function uninstall_oh_my_zsh() {
|
||||||
|
|
Loading…
Reference in a new issue