Answers for "bash script loop"

7

loop bash

years=(2018 2019)
days=(74 274)

for year in "${years[@]}"; do
    for day in $(seq -w ${days[0]} ${days[1]}); do
               echo $year
               echo $day
    done
done
Posted by: Guest on April-13-2020
5

bash for loop

for VARIABLE in file1 file2 file3
do
	command1 on $VARIABLE
	command2
	commandN
done
Posted by: Guest on July-02-2020
4

bash for i

for VARIABLE in 1 2 3 4 5 .. N
do
	command1
	command2
	commandN
done
Posted by: Guest on April-13-2020
3

bash script loop

while [ <some test> ]
do
<commands>
done
Posted by: Guest on March-08-2020
1

bash for loop

for FILE in $(ls -A); do la $FILE; done
Posted by: Guest on October-23-2020
0

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