Skip to content

Instantly share code, notes, and snippets.

@MarxBro
Created September 28, 2015 21:32
Show Gist options
  • Save MarxBro/76f0d06ed2f03f6eb60c to your computer and use it in GitHub Desktop.
Save MarxBro/76f0d06ed2f03f6eb60c to your computer and use it in GitHub Desktop.
top ten most used commands.
# Sin frecuencia.
history | awk '{print $2}' | sort | uniq -c | sort -n -r | head | awk '{print $2}'
# Con frecuencia.
history | awk '{print $2}' | sort | uniq -c | sort -n -r | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment