Answers for "while linux shell or"

1

while loop shell script

#!/bin/sh

a=0

while [ $a -lt 10 ]
do
   echo $a
   a=`expr $a + 1`
done
Posted by: Guest on November-05-2020
4

linux while loop

while true;
do
	#code
;done
Posted by: Guest on June-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language