Ordena historico por comandos mais usados

awk '{print $1}'|awk 'BEGIN {FS="|"} {print $1}' ~/.bash_history | sort|uniq -c|sort -rn|head -5
history |awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head

Comentários