Answers for "bash iterate over list of files"

1

bash iterate over list of files

FILES="/path/to/files*"
for FILE in $FILES ; do echo $FILE ; done
Posted by: Guest on May-04-2021

Code answers related to "bash iterate over list of files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language