Skip to content

Instantly share code, notes, and snippets.

@n00bsys0p
Created September 26, 2012 13:49
Show Gist options
  • Save n00bsys0p/3788152 to your computer and use it in GitHub Desktop.
Save n00bsys0p/3788152 to your computer and use it in GitHub Desktop.
List all Slackware packages by size, ignoring less than 1MB
#!/bin/bash
/usr/bin/grep UNCOMPRESSED /var/log/packages/* | awk -F: '{print $3,$1}' | sort -rn | egrep '^\s*[0-9]+\.?[0-9]+M'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment