Created
September 28, 2015 21:32
-
-
Save MarxBro/76f0d06ed2f03f6eb60c to your computer and use it in GitHub Desktop.
top ten most used commands.
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
# 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