Here is a cool script for anyone that has really big email files and wants to have 
them compressed.


#!/bin/bash
for file in `ls | grep -v gz$ | grep -v sh$`
do
echo "Compressing $file..."
gzip -c $file >> $file.gz
rm $file
touch $file
done

-- 
Jake Johnson
http://www.plutoid.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to