Pario TechnoBlob
About
Posts
Tag: head
My 10 most used linux commands
This is a oneliner bash command to determine my 10 most used linux commands according to my history file history | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a]...
Finding the 50 largest directories
du -S / | sort -nr | head -n50