Skip to content

Instantly share code, notes, and snippets.

@ricardodestro
Last active September 2, 2016 13:57
Show Gist options
  • Save ricardodestro/1551279959cdd0461e0504c28cfa8c02 to your computer and use it in GitHub Desktop.
Save ricardodestro/1551279959cdd0461e0504c28cfa8c02 to your computer and use it in GitHub Desktop.
LINUX COMMANDS
# TOP 10 DIRECTORY USAGE
du -a -h /usr/local | sort -n -r | head -n 10
@ricardodestro
Copy link
Author

COUNT TOP X BY COLUMN

zcat <FILE.gz> | awk -F '\t' '{print $2}' | sort | uniq -c | sort -nr | head -10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment