Some notes:
You use all-caps DIR, LIST and FILES, but all-caps variables in shell scripts are, by convention, environment variables. You should use e.g.
dir='/var/www/public_html/docs/files/'
instead.
To find how many files are in a directory use
find "$dir" -maxdepth 1 -type f | wc -l
You use both LIST and FILES; it seems like you're tring to find out if there are any files before deleting them. There's no point to this from a functionality point of view but if you must conditionally echo the list of files it's better to make the decision this way.
if [ $(find "$dir" -type f | wc -l) -gt 0 ] ; then
echo Files Delete:
find "$dir" -printf '%f '
fi
Although you should be aware that this output cannot be reliably used to reconstruct the actual file names.
To actually delete the files you should again use find
find "$dir" -maxdepth 1 -type f -delete
Putting it all together
dir='/var/www/public_html/docs/files/'
if [ $(find "$dir" -type f | wc -l) -gt 0 ] ; then
echo Files Delete:
find "$dir" -maxdepth 1 -type f -printf '%f ' -delete
fi
Here I have combined the "print files" and "delete files" steps into a single invocation of find.
rm -f /var/www/public_html/docs/files/*orrm -f "$DIR*"be sufficient? – Frédéric Hamidi Oct 11 '11 at 11:18rm -f *will work just fine. – Pete Wilson Oct 11 '11 at 11:20ls, usefind. – Anders Oct 11 '11 at 11:25find /var/www/public_html/docs/files/ -type f -deleteis probably best here. – Sorpigal Oct 11 '11 at 11:36cd $DIRwithout checking this change to dir. After that you want to remove all files. What, if your directory does not exist? What if the directory isn't accessible to the user running this script? – f4m8 Oct 11 '11 at 12:07