Commandline bulk filename change
This command removes VLX09-Banners from the beginning of the name of a series of numbered files.
[perl]
for i in `ls`; do j=`echo $i|sed s/VLX09-Banners//`; mv $i $j; done
[/perl]
This command removes VLX09-Banners from the beginning of the name of a series of numbered files.
[perl]
for i in `ls`; do j=`echo $i|sed s/VLX09-Banners//`; mv $i $j; done
[/perl]
You must be logged in to post a comment.