I\'m trying to write a bash script that will process a list of files whose names are stored one per line in an input file, something the likes of
find . -type f
You can do this without a temporary file using process substitution:
while read F do ... done < <(find . -type f -mtime +15)