Shell Script to recursively list files
Shell Script to recursively list files #!/bin/sh # Shell script to find out all the files under a directory and #its subdirectories. This also takes into consideration those files #or directories which have spaces or newlines in their names DIR="." function list_files(){ if !(test -d "$1") then echo $1; return;fi cd "$1" echo; echo `pwd`:; #Display Directory name for i in * do if test -d "$i" #i..