Answers for "how to do a while in bash"

Lua
13

while loop bash

while true;
do
	#code
done
Posted by: Guest on May-23-2020
1

for while 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

Browse Popular Code Answers by Language