Answers for "bash for i"

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language