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
use while read
echo $FILE | while read line do echo $line done
You can do redirect instead of echo