The easiest way to do it is a classic trick that’s been in the bourne shell for a while.
for filename in `cat file_list`; do
# Do stuff here
done
The easiest way to do it is a classic trick that’s been in the bourne shell for a while.
for filename in `cat file_list`; do
# Do stuff here
done