Created
September 26, 2012 13:49
-
-
Save n00bsys0p/3788152 to your computer and use it in GitHub Desktop.
List all Slackware packages by size, ignoring less than 1MB
This file contains hidden or 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
#!/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