batch renaming of files
hi,i have a bunch of files that have a sequential prefix similiar to:
001_-_filename.zip
1222_-_filename.zip
how can i batch remove the [001_-_] before each filename.
ive been experimenting with with a command someone gave me before:
for i in * ; do mv "$i" `echo $i|sed "y/ ()/___/"`; done
but i cant seem to tweak it correctly to yield the right results.
any suggestions?
thanks in advance to anyone that tries to help.