I have a bash shell script that loops through all child directories (but not files) of a certain directory. The problem is that some of the directory names contain spaces.

Here are the contents of my test directory:

$ls -F test
Baltimore/  Cherry Hill/  Edison/  New York City/  Philadelphia/  cities.txt

And the code that loops through the directories:

for f in `find test/* -type d`; do
  echo $f
done

Here's the output:

test/Baltimore
test/Cherry
Hill
test/Edison 
test/New
York
City
test/Philadelphia

Cherry Hill and New York City are treated as 2 or 3 separate entries.

I tried quoting the filenames, like so:

for f in `find test/* -type d | sed -e 's/^/\"/' | sed -e 's/$/\"/'`; do
  echo $f
done

but to no avail.

There's got to be a simple way to do this.


The answers below are great. But to make this more complicated - I don't always want to use the directories listed in my test directory. Sometimes I want to pass in the directory names as command-line parameters instead.

I took Charles' suggestion of setting the IFS and came up with the following:

dirlist="${@}"
(
  [[ -z "$dirlist" ]] && dirlist=`find test -mindepth 1 -type d` && IFS=$'\n'
  for d in $dirlist; do
    echo $d
  done
)

and this works just fine unless there are spaces in the command line arguments (even if those arguments are quoted). For example, calling the script like this: test.sh "Cherry Hill" "New York City" produces the following output:

Cherry
Hill
New
York
City
link|improve this question

Updated to document use of arrays for handling command-line parameters. (Wish you'd commented to let me know you needed an extension to the answer sooner -- I don't check back on old answers all the time) – Charles Duffy Oct 7 '09 at 2:56
feedback

13 Answers

up vote 46 down vote accepted

First, don't do it that way. The best approach is to use find -exec properly:

find test -type d -exec echo '{}' +

The next best approach is to use read to process a line at a time (note that the example given here uses process substitution, non-POSIX functionality, to ensure that the iteration takes place in the primary shell rather than a subprocess or pipeline; this means you can modify variables based on what you're reading and those values will persist). Use read -r to disable backslash processing, and set IFS to an empty value to avoid stripping leading and trailing whitespace. This will still break on file names containing newlines.

while IFS= read -r N; do echo "$N"; done < <(find test -mindepth 1 -type d)

If one isn't going to use one of the above, a third approach (less efficient in terms of both time and memory usage, as it reads the entire output of the subprocess before doing word-splitting) is to use an IFS variable which doesn't contain the space character. Turn off globbing (set +f) to prevent \[*? from being expanded.

(
 IFS='
 '
 set +f
 for N in $(find test -mindepth 1 -type d); do
   echo "$N"
 done
)

Finally, for the command-line parameter case, you should be using arrays if your shell supports them (i.e. it's ksh, bash or zsh):

for d in "$@"; do
  echo "$d"
done

will maintain separation. Note that the quoting (and the use of $@ rather than $*) is important. Arrays can be populated in other ways as well, such as glob expressions:

entries=( test/* )
for d in "${entries[@]}"; do
  echo "$d"
done
link|improve this answer
didn't know about that '+' flavor for -exec. sweet – Johannes Schaub - litb Nov 19 '08 at 5:27
1  
tho looks like it can also, like xargs, only put the arguments at the end of the given command :/ that's bugged me sometimes – Johannes Schaub - litb Nov 19 '08 at 5:35
I think -exec [name] {} + is a GNU and 4.4-BSD extension. (At least, it doesn't appear on Solaris 8, and I don't think it was in AIX 4.3 either.) I guess the rest of us may be stuck with piping to xargs... – Michael Ratanapintha Nov 19 '08 at 6:00
2  
I've never seen the $'\n' syntax before. How does that work? (I would have thought that either IFS='\n' or IFS="\n" would work, but neither does.) – MCS Nov 19 '08 at 14:50
1  
@crosstalk it's definitely in Solaris 10, I just used it. – Nick Jan 19 '11 at 15:45
show 2 more comments
feedback
find . -type d | while read file; do echo $file; done

However, doesn't work if the file-name contains newlines. The above is the only solution i know of when you actually want to have the directory name in a variable. If you just want to execute some command, use xargs.

find . -type d -print0 | xargs -0 echo 'The directory is: '
link|improve this answer
No need for xargs, see find -exec ... {} + – Charles Duffy Nov 19 '08 at 5:53
3  
@Charles: for large numbers of files, xargs is much more efficient: it only spawns one process. The -exec option forks a new process for each file, which can be an order of magnitude slower. – Adam Rosenfield Nov 19 '08 at 5:54
1  
I like xargs more. These two essentially seem to do the same both, while xargs has more options, like running in parallel – Johannes Schaub - litb Nov 19 '08 at 5:57
2  
Adam, no that '+' one will aggregate as many filenames as possible and then executes. but it will not have such neat functions as running in parallel :) – Johannes Schaub - litb Nov 19 '08 at 5:57
hands down, who will have \n in their dirnames anyway :p stone them ^^ – Johannes Schaub - litb Nov 19 '08 at 6:08
show 2 more comments
feedback

This is exceedingly tricky in standard Unix, and most solutions run foul of newlines or some other character. However, if you are using the GNU tool set, then you can exploit the find option -print0 and use xargs with the corresponding option -0 (minus-zero). There are two characters that cannot appear in a simple filename; those are slash and NUL '\0'. Obviously, slash appears in pathnames, so the GNU solution of using a NUL '\0' to mark the end of the name is ingenious and fool-proof.

link|improve this answer
feedback

Don't store lists as strings; store them as arrays to avoid all this delimiter confusion. Here's an example script that'll either operate on all subdirectories of test, or the list supplied on its command line:

#!/bin/sh
if [ $# -eq 0 ]; then
        # if no args supplies, build a list of subdirs of test/
        dirlist=() # start with empty list
        for f in test/*; do # for each item in test/ ...
                if [ -d "$f" ]; then # if it's a subdir...
                        dirlist=("${dirlist[@]}" "$f") # add it to the list
                fi
        done
else
        # if args were supplied, copy the list of args into dirlist
        dirlist=("$@")
fi
# now loop through dirlist, operating on each one
for dir in "${dirlist[@]}"; do
        printf "Directory: %s\n" "$dir"
done

Now let's try this out on a test directory with a curve or two thrown in:

$ ls -F test
Baltimore/
Cherry Hill/
Edison/
New York City/
Philadelphia/
this is a dirname with quotes, lfs, escapes: "\''?'?\e\n\d/
this is a file, not a directory
$ ./test.sh 
Directory: test/Baltimore
Directory: test/Cherry Hill
Directory: test/Edison
Directory: test/New York City
Directory: test/Philadelphia
Directory: test/this is a dirname with quotes, lfs, escapes: "\''
'
\e\n\d
$ ./test.sh "Cherry Hill" "New York City"
Directory: Cherry Hill
Directory: New York City
link|improve this answer
feedback

Here is a simple solution which handles the whitespaces.

The test directory

$ls -F test
Baltimore/  Cherry Hill/  Edison/  New York City/  Philadelphia/  cities.txt

The code to go into the directories

find test -type d | while read f ; do
  echo $f
done

And the output:

test/Baltimore
test/Cherry Hill
test/Edison
test/New York City
test/Philadelphia
link|improve this answer
thanks, this worked for the alias I was creating to list how much space each directory in the current folder is using, it was choking on some dirs with spaces in the previous incarnation. This works in zsh, but some of the other answers didn't: alias duc='ls -d * | while read D; do du -sh "$D"; done;' – Ted Naleid Jun 13 '11 at 17:52
1  
If you are using zsh, you can also do this: alias duc='du -sh *(/)' – cbliard Jun 15 '11 at 15:49
nice! That's much better, thanks! – Ted Naleid Jun 15 '11 at 16:42
feedback

To add to what Jonathan said: use the -print0 option for find in conjunction with xargs as follows:

find test/* -type d -print0 | xargs -0 command

That will execute the command command with the proper arguments; directories with spaces in them will be properly quoted (i.e. they'll be passed in as one argument).

link|improve this answer
feedback
#!/bin/bash

dirtys=()

for folder in *
do    
 if [ -d "$folder" ]; then    
    dirtys=("${dirtys[@]}" "$folder")    
 fi    
done    

for dir in "${dirtys[@]}"    
do    
   for file in "$dir"/\*.mov   # <== *.mov
   do    
       #dir_e=`echo "$dir" | sed 's/[[:space:]]/\\\ /g'`   -- This line will replace each space into '\ '   
       out=`echo "$file" | sed 's/\(.*\)\/\(.*\)/\2/'`     # These two line code can be written in one line using multiple sed commands.    
       out=`echo "$out" | sed 's/[[:space:]]/_/g'`    
       #echo "ffmpeg -i $out_e -sameq -vcodec msmpeg4v2 -acodec pcm_u8 $dir_e/${out/%mov/avi}"    
       `ffmpeg -i "$file" -sameq -vcodec msmpeg4v2 -acodec pcm_u8 "$dir"/${out/%mov/avi}`    
   done    
done

The above code will convert .mov files to .avi. The .mov files are in different folders and the folder names have white spaces too. My above script will convert the .mov files to .avi file in the same folder itself. I don't know whether it help you peoples.

Case:

[sony@localhost shell_tutorial]$ ls
Chapter 01 - Introduction  Chapter 02 - Your First Shell Script
[sony@localhost shell_tutorial]$ cd Chapter\ 01\ -\ Introduction/
[sony@localhost Chapter 01 - Introduction]$ ls
0101 - About this Course.mov   0102 - Course Structure.mov
[sony@localhost Chapter 01 - Introduction]$ ./above_script
 ... successfully executed.
[sony@localhost Chapter 01 - Introduction]$ ls
0101_-_About_this_Course.avi  0102_-_Course_Structure.avi
0101 - About this Course.mov  0102 - Course Structure.mov
[sony@localhost Chapter 01 - Introduction]$ CHEERS!

Cheers!

link|improve this answer
feedback

Had to be dealing with whitespaces in pathnames, too. What I finally did was using a recursion and for item in /path/*:

function recursedir {
    local item
    for item in "${1%/}"/*
    do
        if [ -d "$item" ]
        then
            recursedir "$item"
        else
            command
        fi
    done
}
link|improve this answer
feedback

just found out there are some similarities between my question and yours. Aparrently if you want to pass arguments into commands

test.sh "Cherry Hill" "New York City"

to print them out in order

for SOME_ARG in "$@"
do
    echo "$SOME_ARG";
done;

notice the $@ is surrounded by double quotes, some notes here

link|improve this answer
feedback

Why not just put

IFS='\n'

in front of the for command? This changes the field separator from < Space>< Tab>< Newline> to just < Newline>

link|improve this answer
feedback
find . -print0|while read -d $'\0' file; do echo "$file"; done
link|improve this answer
feedback

Just had a simple variant problem... Convert files of typed .flv to .mp3 (yawn).

for file in read `find . *.flv`; do ffmpeg -i ${file} -acodec copy ${file}.mp3;done

recursively find all the Macintosh user flash files and turn them into audio (copy, no transcode) ... it's like the while above, noting that read instead of just 'for file in ' will escape.

link|improve this answer
The read after in is one more word in the list you're iterating over. What you've posted is a slightly broken version of what the asker had, which doesn't work. You may have intended to post something different, but it's probably covered by other answers here anyway. – Gilles Feb 24 at 17:49
feedback

For me this works, and it is pretty much "clean":

for f in "$(find ./test -type d)" ; do
  echo "$f"
done
link|improve this answer
But this is worse. The double-quotes around the find cause all path names to be concatenated as a single string. Change the echo to an ls to see the problem. – NVRAM Sep 19 '11 at 17:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.