
05-01-2007
|
|
Registered User
|
|
|
Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,398
|
|
Quote:
|
Originally Posted by Birasing
dt=$( date +%Y%M%d )
while read file
do
cp ${file} "${file}_${dt}"
: > ${file} --I did not undestsand this line, what does this line
done < /tmp/logs
Can u explain, what does that line.
|
Code:
: > ${file}
This line clears the text in ${file}
|