Answers for "shell script program run in while loop"

0

shell script loop while process running

while [ condition ]; do commands; done
while control-command; do COMMANDS; done
Posted by: Guest on March-17-2021
0

shell script loop while process running

#!/bin/bash
x=1
while [ $x -le 5 ]
do
  echo "Welcome $x times"
  x=$(( $x + 1 ))
done
Posted by: Guest on March-17-2021

Code answers related to "shell script program run in while loop"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language