Tagged Questions

0
votes
2answers
244 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 ...