Dermot wrote:
> Hi,
> 
> ls | perl -ne 'print if /\.$/'| sed 's/\(.*\)/mv & \1jpg/' | sh
> 
> 
> I concocted the above command to change files named
> 
> A1234.  to A1234.jpg
> 
> Is there a pure perl one-liner for this? Just curious.
> 
> Thanx,
> Dp.
> 

perl -e 'rename $_, $_."jpg" foreach (glob "*.")'

regards
robert

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to