\_ I'm trying to rename a ton of files with a certain extension to another \_ extension type. If this is possible with the mv command I can't figure out \_ the syntax.. Anyone know how to do this? There's a foreach in your shell of choice that'll run something like foreach f (*.DAT) mv $f $f.broken end but that can be kinda tedious to type in from whole cloth if you don't do it a whole bunch. Having seen this request any number of times now, I dropped out a quick perl script that'll do it w/ args. If it's worth doing once, it's worth scripting for later reuse. :-) I called it map-mv after the lisp command 'map', which rocks. Try map-mv -h for help. YMMV. David #!/usr/bin/perl sub print_help { print <