Aug 25, 2004 #1 lalan7 Technical User Aug 5, 2004 11 CA Do you know how to delete space from filename?
Aug 25, 2004 #2 columb IS-IT--Management Feb 5, 2004 1,231 EU try a script file Code: #!/bin/ksh mv "$1" `echo $1 | tr -d ' '` and pass the file name to it. Don't forget to surround the file name in quotes so that it is treated as a single string Columb Healy Living with a seeker after the truth is infinitely preferable to living with one who thinks they've found it. Upvote 0 Downvote
try a script file Code: #!/bin/ksh mv "$1" `echo $1 | tr -d ' '` and pass the file name to it. Don't forget to surround the file name in quotes so that it is treated as a single string Columb Healy Living with a seeker after the truth is infinitely preferable to living with one who thinks they've found it.