BASH for loop works nicely under UNIX / Linux / Windows and OS X while working on set of files. However, if you try to process a for loop on file name with spaces in them you are going to have some problem. for loop uses $IFS variable to determine what the field separators are. By default $IFS is set to the space character. There are multiple solutions to this problem.
Set $IFS variable
Try it as follows:
#!/bin/bash SAVEIFS=$IFS IFS=$(echo -en "\n\b") for f in * do echo "$f" done IFS=$SAVEIFS
OR
#!/bin/bash SAVEIFS=$IFS IFS=$(echo -en "\n\b") # set me FILES=/data/* for f in $FILES do echo "$f" done # restore $IFS IFS=$SAVEIFS
More examples using $IFS and while loop
Now you know that if the field delimiters are not whitespace, you can set IFS. For example, while loop can be used to get all fields from /etc/passwd file:
.... while IFS=: read userName passWord userID groupID geCos homeDir userShell do echo "$userName -> $homeDir" done < /etc/passwd
Using old good find command to process file names
To process the output of find with a command, try as follows:
find . -print0 | while read -d $'\0' file do echo -v "$file" done
Try to copy files to /tmp with spaces in a filename using find command and shell pipes:
find . -print0 | while read -d $'\0' file; do cp -v "$file" /tmp; done
Processing filenames using an array
Sometimes you need read a file into an array as one array element per line. Following script will read file names into an array and you can process each file using for loop. This is useful for complex tasks:
#!/bin/bash DIR="$1" # failsafe - fall back to current directory [ "$DIR" == "" ] && DIR="." # save and change IFS OLDIFS=$IFS IFS=$'\n' # read all file name into an array fileArray=($(find $DIR -type f)) # restore it IFS=$OLDIFS # get length of an array tLen=${#fileArray[@]} # use for loop read all filenames for (( i=0; i<${tLen}; i++ )); do echo "${fileArray[$i]}" done
Playing mp3s with spaces in file names
Place following code in your ~/.bashrc file:
mp3(){ local o=$IFS IFS=$(echo -en "\n\b") /usr/bin/beep-media-player "$(cat $@)" & IFS=o }
Keep list of all mp3s in a text file such as follows (~/eng.mp3.txt):
/nas/english/Adriano Celentano - Susanna.mp3 /nas/english/Nick Cave & Kylie Minogue - Where The Wild Roses Grow.mp3 /nas/english/Roberta Flack - Kiling Me Softly With This Song.mp3 /nas/english/The Beatles - Girl.mp3 /nas/english/John Lennon - Stand By Me.mp3 /nas/english/The Seatbelts, Cowboy Bebop - 01-Tank.mp3
To play just type:
$ mp3 eng.mp3.txt
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email this to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: Jan/20/2009



{ 31 comments… read them below or add one }
Hi, I don’t fully understand how this…
works nicely under Windows…
Oh! btw, thank you.
Install cygwin from http://www.cygwin.com/
Install bash and your are done!
For the shell equivalent of python’s splitlines, I always did it like this:
or while read ... instead of for when the list exceeds $(getconf ARG_MAX)
Your way works too, but is more typing
Thanks really so much,
It’s so useful and I think it’d save me a lot of time and help me do better shell coding..
This is a great blog!
Instead of using following:
I just use:
Never had problems with it. A filename can impossible contain newline-chars, or am I wrong?
Best regards,
Benjamin Schmidt
@Jeff/Benjamin
Thanks for sharing your code and ideas.
i’d love to play music with mplayer… through cli
let say that i have song/music folder with many directory inside, how i can play with mplayer with single command. Actually i have one bash script, but i got trouble when facing white space… mplayer wouldn’t play the file
[songRequest.sh]
for i in ` find -name “*mp3″`
do
mplayer $i
done
any help will be appreciated
Try
> A filename can impossible contain newline-chars, or am I wrong?
A filename can contain newlines. It can contain any character except a slash (/) or an ASCII NUL (0×0).
# use for loop read all filenames
> for (( i=0; i do
> echo “${fileArray[$i]}”
> done
If all you want to do is print the contents of the array:
printf "%s\n" "${fileArray[@]}"To loop through them, use:
for i in "${fileArray[@]}"do
: ... whatever
done
great… vivek.gite ^^
your script just work on one file… then mplayer killed immediately.
yeah just playing one file only(there are many left).
on playing progress i can’t get control of mplayer, even i can’t turn up/down volume, go to the next song, etc.
all i can do is Ctrl+C
btw thanks
I guess you can try
mplayer *.mp3Or send all files to .playlist.txt
ls -1 > .playlist.txtmplayer -playlist .playlist.txt
All this information is very useful, but I think that needing it is sympton: ¿shouldn’t you use another language instead?
Nice post, though
“All this information is very useful, but I think that needing it is sympton: ¿shouldn’t you use another language instead?”
Why? It’s straightforward shell scripting.
opendir(DIR, “.”) or die(“Error opening directory”);
my @readFiles = readdir(DIR);
foreach (@readFiles) {
…
I don’t think there is a need to reset the IFS variable, all you really need to do to avoid problems with word splitting is to put the variables that appear in the loop body in double quotes (I find this to be a good default habit). Once in double quotes the shell will consider whatever the variable expands to as a single argument and pass it to the program as such.
For example:
for i in *.mp3; do rm “$i”; done
mhernandez: Its not a problem with the shell, its just how it works, the bash shell is based on word splitting.
You can reset the IFS with
unset IFS
this way, you do not need to save the state and then recall it from a variable.
Kyle is correct. No need to mess w/ your IFS var.
Your 2nd example is problematic in a very subtle way
FILES=/data/*does not set the variable ‘FILES’ to the names of all the files in /data, it sets it to ‘/data/*’. You can see this w/:
declare -p FILESA very useful technique in all this, is to employ the ’set’ builtin:
cd ..; set *.txt; cd ~-
for f; do
echo "../$f" "$f"
done
This lets you scoop up a file list (w/ nasty names and all), and then move somewhere else to process them.
i am doing a project in unix shell scripting.
so my project have messages to be displayed. my problem is that how to add a beep sound to the messages …can any help me to include that also with the coding??pls..its very urgent…i dont know the shell codings…its for my project
Chris F.A. Johnson has it right on the nose.
Thanks man, my code is now only 40 lines long, not 136 like before xD^^
nice blog
mp3(){
local o=$IFS
IFS=$(echo -en “\n\b”)
/usr/bin/beep-media-player “$(cat $@)” &
IFS=o
}
“$(cat $@)” if you use this I think the IFS down work …
I think you want $(cat “$@”)
Thank you! I found this post most useful.
Instead of telling echo to print a char for new line and (probably) bell and then *not* to print a new line, one can just use echo’s default new line output :)
IFS=`echo`
Thanks for your share!
Why “IFS=`echo`”? Command substitution is slow (and unnecessary).
IFS=’
‘
IFS=$’\n’ ## bash
Amazing! Your notation for creating an array from:
> fileArray=($(find $DIR -type f))
is stunning! Thanks for the excellent writeup.
I just use as following
with double quotes
[code]
for m in "`ls`"; do echo "$m" ; done
[/code]
for m in "`ls`"; do echo "$m" ; doneWhy?
The
forcommand will only see one argument.Try this:
n=1
for m in "`ls`"
do
echo "$n"
echo "$m"
n=$(( $n + 1 ))
done
You’ll see that it only goes through the loop once.
You don’t need a loop for that, and you don’t need
ls:printf "%s\n" *excellent post. exactly what i was looking for. i had been facing this space-field-seperator problem for quite a sometime today. had tried many options to circumvent it, but in vain. will try this $IFS approach now.
thanks a lot for sharing.
shreyas
My favorite solution, though it can theoretically overmatch:
find . | sed -e “s/ /?/g”
ls | sed -e “s/ /?/g”
Then you can do things like greps, for loops, whatever equally well:
grep hello $(ls | sed -e “s/ /?/g”)
for i in $(find . | sed -e “s/ /?/g) do; ls -l “$i”; done
“grep hello $(ls | sed -e “s/ /?/g”)”
You don’t need sed or ls; use filename expansion:
grep hello *
“for i in $(find . | sed -e “s/ /?/g) do; ls -l “$i”; done”
That will fail if any filenames contain whitespace.
It is also extremely inefficient to call ls in a loop.