Answers for "for in list bash"

1

bash for loop string array

## 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
0

bash script for list

#!/bin/bash
# Read a string with spaces using for loop
for value in I like programming
do
    echo $value
done
Posted by: Guest on May-17-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language