Created
April 22, 2015 13:01
-
-
Save fabienhinault/362da5b964fc47b60802 to your computer and use it in GitHub Desktop.
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/sh | |
mv -f ./du.txt ./du.txt~ | |
mv -f ./du_full.txt ./du_full.txt~ | |
mv -f ./du_sorted.txt ./du_sorted.txt~ | |
mv -f ./du.txt ./du_awk.txt~ | |
nice -n 20 du /cygdrive/c/ > ./du_full.txt | |
nice -n 20 sort -nr < ./du_full.txt > ./du_sorted.txt | |
nice -n 20 grep -vf du.grep du_full.txt | nice -n 20 sort -nr > ./du.txt | |
gawk -f du.awk du_full.txt | nice -n 20 sort -nr > ./du_awk.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment