Answers for "bash iterate thoguht a list"

2

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
1

how to loop through every value in array bash

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done
Posted by: Guest on October-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language