Answers for "write a loop in bash"

33

for loop in shell script

for i in {1..5}
do
   echo "Welcome $i times"
done
Posted by: Guest on July-08-2020
2

loop bash

Use for in bash for iterating words in a string or values in an array as:
for value in {1, 2, 3}; do echo $value; done
for value in $(cat arguments_files.txt); do [some_command]; done
And use while for iterating lines from a pipe output as:
cat arguments_file.txt | while read line; do [some_command]; done
Posted by: Guest on October-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language