Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delete space in a filename?

Status
Not open for further replies.

lalan7

Technical User
Aug 5, 2004
11
CA
Do you know how to delete space from filename?
 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top