Files
2022-01-08 21:40:00 +01:00

9 lines
95 B
Bash

#!/bin/bash
tal=0
until [ $tal -gt 10 ]; do
echo "Talet är $tal"
let tal=tal+1
done