Horje
until loop bash Code Example
until loop bash
#!/bin/bash

counter=0

until [ $counter -gt 5 ]
do
  echo Counter: $counter
  ((counter++))
done
Source: linuxize.com




Shell

Related
git push specific branch Code Example git push specific branch Code Example
move linux Code Example move linux Code Example
git get latest Code Example git get latest Code Example
create a new git branch Code Example create a new git branch Code Example
ubuntu dock setting Code Example ubuntu dock setting Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11