Remove spaces between file names


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Remove spaces between file names
# 1  
Old 03-28-2009
Remove spaces between file names

Hi All,

I have spaces in between file names.

"Material Header.txt"
"Customer Header.txt"
"Vendor Header.txt"

And how can I remove spaces between file names like below

MaterialHeader.txt
CustomerHeader.txt
VendorHeader.txt

Thanks
Srimitta
# 2  
Old 03-28-2009
use tr,sed or awk command
Code:
echo "Material Header.txt"|tr -d ' '
echo "Material Header.txt"|sed 's/ //g'
echo "Material Header.txt"|awk '/ /{gsub(" ","")}{print}'

# 3  
Old 03-28-2009
Thanks Vidyadhar for your reply,

Great, but how to rename all files "with spaces" to "withoutspaces".

Thanks
Srimitta
# 4  
Old 03-29-2009
This trick is working fine,

cp 'Material Header.txt' `ls 'Material Header.txt' | tr -d ' '

But when I try this in loop it doesn't work.

for file in $(ls *' '*)
do
echo "$file"
cp "$file" `"$file" tr -d ' '`
done


echo "$file" is returning file name in two parts like below
Material
Header.txt

Any idea how to pass file name to cp without breaking.
# 5  
Old 03-29-2009
The problem with your code is that the shell uses whitespace to delimit words.

Suppose you have a file named "two words", and you write a command like "cp two words" - how is the shell supposed to know wether you want the file "two" copied to "words" or if you are talking about the file "two words" and the second argument is missing?

The same is true for the for-loop, which passes one argument at a time to the content of the loop - and "one argument" is "one word", because this is where the stream the for-loop works on was split at.

So, here is a script which relies on exactly this mechanism:

Code:
#!/usr/bin/ksh

typeset oldfile=""
typeset newfile=""

# the grep filters for filenames with spaces only:
ls -1 | grep "[^ ] [^ ]" | while read oldfile ; do
     newfile="$( print - $oldfile | tr -d ' ')"
     print - "mv \"${oldfile}\" \"${newfile}\"" # just display, next line is working
     # mv "$oldfile" "$newfile"
done

By the way: do not use for-loops to process lists of unknown length, like a directory listing. If the list grows too long it will exceed your maximum line length (see syslimits.h) and your code will break. Using a while-loop removes this risk.

I hope this helps.

bakunin
# 6  
Old 03-29-2009
Thanks bakunin,

Great it's working, this is what I was trying to do.

srimitta
# 7  
Old 03-29-2009
Hi bakunin,

Your script works great with spaces in file names, but I have some files Apostrophe between file names like "BOM Header's.txt".

Any help in modifying your script to remove Apostrophe within file names.

Thanks
srimitta
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove dates from file names

Hi, I'm using a shell script. I have extracted current date files to a directory1 and the date should be removed on both sides of a CSV file. FYI... I'm looking to remove the date from the file name and not inside the CSV file. Directory1 2017-07-12_gmr_tag_log_20170711.csv... (0 Replies)
Discussion started by: shivamayam
0 Replies

2. Shell Programming and Scripting

Remove spaces from the file

Hi All, The output file contains data as below. "20141023","CUSTOMER" ,"COMPANY" ,"IN0515461" ,"" ,"JOSHUA" There are spaces in between the ending " and ,. The number of spaces is random. How can I remove that from the file so that the final output is:... (4 Replies)
Discussion started by: aarsh.dave
4 Replies

3. Shell Programming and Scripting

Finding size of files with spaces in their file names

I am running a UNIX script to get unused files and their sizes from the server. The issue is arising due to the spaces present in the filename/folder names.Due to this the du -k command doesn't work properly.But I need to calculate the size of all files including the ones which have spaces in them.... (4 Replies)
Discussion started by: INNSAV1
4 Replies

4. OS X (Apple)

Remove leading spaces from file names and folders

Hi All, I have a vexing issue with leading spaces in file names. Basically, we're moving tons of data from our ancient afp file share to Box.com and Box forbids leading spaces in files or folders. The HFS file system seems to be perfectly fine with this, but almost all other Unix file systems... (1 Reply)
Discussion started by: prometheon123
1 Replies

5. Shell Programming and Scripting

Remove spaces from start of file names

Hi, I have a directory with the following file names 01 - abc hyn 02-def 03-ghi.dir 04 - jhu.dir abc1 kil def bil The last two file names abc1 starts with one space and def starts with double space. I want these files in my directory to be renamed as ABC HYN DEF GHI.dir... (6 Replies)
Discussion started by: jacobs.smith
6 Replies

6. Shell Programming and Scripting

How to strip the spaces in file names?

please somebody tell me what is wrong with this, while the thumbnail grabbing works and encoding works, but what is not working is, mv $i.jpg /var/www/thumbs/ and mv $i.mp4 /var/www/uploads/ #!/bin/bash # MINT 9 - FFMPEG - QT-FASTSTART - X264 - MP4 DIR=/var/www/tmp for i in... (9 Replies)
Discussion started by: mysoogal
9 Replies

7. Shell Programming and Scripting

Opening File names with spaces inside it !- PERL

I developed a perl code..And the excerpt from it is given below... open(HANDLE,$cmp_path) ; #reading the xml file from the file path while($file_path = <HANDLE>) I have list of XML files to read from a folder. It has some spaces inside the name of the file...I used "\"... (2 Replies)
Discussion started by: gameboy87
2 Replies

8. UNIX for Dummies Questions & Answers

Unable to use mimesender to send attachments with spaces in the file names / paths

Hello, I found the mimesender multiple attachment emailing shell script in the FAQ of these forums, and I have been able to use it to send multiple files, but only if they don't have spaces in their file name or path. When I attempt to send a file with spaces in it's name, enclosed... (0 Replies)
Discussion started by: rsmorra
0 Replies

9. Shell Programming and Scripting

Dealing with spaces in file names in a shell script

Hi, What's the best way to find all files under a directory - including ones with space - in order to apply a command to each of them. For instance I want get a list of files under a directory and generate a checksum for each file. Here's the csh script: #!/bin/csh set files = `find $1... (5 Replies)
Discussion started by: same1290
5 Replies

10. Shell Programming and Scripting

File names with spaces? Is it possible?

Gurus - I got one simple TXT file with long file name with blank spaces in between the words. I am trying to display that full file name, but it breaks while displaying. Could somebody shed some light here? Script ------ for i in `cat ~\temp\employee.txt` do echo $i done (5 Replies)
Discussion started by: Eric_2005
5 Replies
Login or Register to Ask a Question