Skip to content

Instantly share code, notes, and snippets.

@victorhnogueira
Created January 20, 2021 22:42
Show Gist options
  • Select an option

  • Save victorhnogueira/50ee2024a8f99f95fffb7a800e99712f to your computer and use it in GitHub Desktop.

Select an option

Save victorhnogueira/50ee2024a8f99f95fffb7a800e99712f to your computer and use it in GitHub Desktop.
Obter top 10 comandos mais usados no terminal Ubuntu
history | 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 -n10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment