On 2/16/06, Jesus Enerio Jr. <[EMAIL PROTECTED]> wrote: > Specially if d files/directories is separated by > spaces? like: "/home/x/my files..." to > "/home/x/my_files..."
Some systems use have the rename command symlinked to a perl script named "prename" which uses the syntax "prename perl-regexp file/s" so you can simply do: $ rename s/\ /\_/g * Discovered this just lately on my Ubuntu box, and it's a lot more convenient than the standard rename command that I was familiar with. -bodgie _________________________________________________ Philippine Linux Users' Group (PLUG) Mailing List [email protected] (#PLUG @ irc.free.net.ph) Read the Guidelines: http://linux.org.ph/lists Searchable Archives: http://archives.free.net.ph

