Answers for "bash for loop every line variable"

2

bash for loop one line

# Basic syntax:
for i in a b; do echo $i; done
Posted by: Guest on February-15-2022
1

bash while read line loop from variable

while read -r line
do
 echo "line=[$line]"
done < <(cat jj)
Posted by: Guest on March-05-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language