Thread
:
Write the Script to zip the files that generates
View Single Post
#
2
(
permalink
)
06-28-2008, 03:28 PM
neelima.rai
Junior Member
Join Date: Jun 2008
Location: Bangalore
Posts: 10
while true
do
for i in `ls *.arc` ;
do
ls *.arc 2> /dev/null
if [ $? -eq 0 ]
then
gzip $i
else
echo "No files to be zipped at this moment...Exiting"
exit 1
done
sleep 300
done
neelima.rai
View Public Profile
Send a private message to neelima.rai
Find all posts by neelima.rai