I'm trying to get the contents of a directory using shell script.

My script is:

for entry in `ls $search_dir`; do
    echo $entry
done

where $search_dir is a relative path. However, $search_dir contains many files with whitespaces in their names. In that case, this script does not run as expected.

I know I could use for entry in *, but that would only work for my current directory.

I know I can change to that directory, use for entry in * then change back, but my particular situation prevents me from doing that.

I have two relative paths $search_dir and $work_dir, and I have to work on both simultaneously, reading them creating/deleting files in them etc.

So what do I do now?

PS: I use bash.

link|improve this question

80% accept rate
do not vote to close as a duplicate. the other one is mine too, slightly different. – jrharshath Mar 13 '10 at 6:11
feedback

3 Answers

up vote 3 down vote accepted
for entry in "$search_dir"/*
do
  echo "$entry"
done
link|improve this answer
why, you cunning dog! you are right :D – jrharshath Mar 13 '10 at 6:16
feedback
for entry in "$search_dir"/* "$work_dir"/*
do
  if [ -f "$entry" ];then
    echo "$entry"
  fi
done
link|improve this answer
feedback
find "${search_dir}" "${work_dir}" -mindepth 1 -maxdepth 1 -type f -print0 | xargs -0 -i echo "{}"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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