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
pipe your find command straight to while read loop
find . -type f -mtime +15 | while read -r line do printf "do something with $line\n" done