Tuesday, January 25, 2011

decompress script

tar xvf $1
find ./ -name '*.gz' > temp.txt
gawk '{print "gunzip", $1}' temp.txt > temp2.txt
source temp2.txt
rm temp.txt temp2.txt

No comments: