> A nice bash for loop with a file wildcard will do it...
> 
> As will the RENAME command...
> 
> "find" also will work with -exec...
> 
> Ah the possibilities with Linux...
> 
> -JMS

Missed most of this, but perhaps you are interested in a one liner like

for a in <wildcard>; do mv $a <somepart>$a<somepart>; done

Paul


Reply via email to