Thread: onpladm
View Single Post

   
  #2 (permalink)  
Old 04-20-2008, 09:52 AM
david@smooth1.co.uk
 
Posts: n/a
Default Re: onpladm


Sounds like you can't. Rename them afterwards.

Something like (untested code follows):-

for FILE in *.unl
do
NEWFILE=`echo $FILE | sed
's/security_\(.*\)\.unl/security_test_\1.unl/'`
echo $FILE $NEWFILE
mv $FILE $NEWFILE
done.

Reply With Quote