bash find list of files and iterate over it code example
Example: bash iterate over list of files
FILES="/path/to/files*"
for FILE in $FILES ; do echo $FILE ; done
FILES="/path/to/files*"
for FILE in $FILES ; do echo $FILE ; done