Until Loop Bash

[Solved] Until Loop Bash | Perl - Code Explorer | yomemimo.com
Question : until loop bash

Answered by : jumping-boy

#!/bin/bash
counter=0
until [ $counter -gt 5 ]
do echo Counter: $counter ((counter++))
done

Source : https://linuxize.com/post/bash-until-loop/ | Last Update : Tue, 10 Aug 21

Answers related to until loop bash

Code Explorer Popular Question For Perl