[wellylug] Blank in file names ?

Rob Stockley rob.stockley at mowgli.net.nz
Fri Apr 23 17:24:00 NZST 2004


On Fri, 2004-04-23 at 17:21, E.Chalaron wrote:
> e.g. 
> transforming  MY FILE.whatever in MY_FILE.whatever

You could make a quick and dirty script like this:

#!/bin/bash
mv $1 `echo $1 | tr ' ' '_'`
# end of script

Rob




More information about the wellylug mailing list