Tagged Questions
2
votes
6answers
5k views
Recursively List all directories and files
Hi I would like to recieve the following output -
Suppose the directory structure on the file system is like this:
-dir1
-dir2
-file1
-file2
-dir3
-file3
...
1
vote
2answers
2k views
read the contents of a directory using shell script
I'm trying to get the contents of a directory using shell script.
My script is:
for entry in `ls`; do
echo $entry
done
However, my current directory contains many files with whitespaces in ...
0
votes
2answers
230 views
How to get the list of files in a directory in a shell script?
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 ...