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 could use the -exec parameter of find and use the file names directly:
-exec
find
find . -type f -mtime +15 -exec {} \;
The {} is a placeholder for the file name.
{}