mikrocata2selks/testInstallation.sh
2023-03-28 13:28:32 +02:00

15 lines
244 B
Bash
Executable File

#!/bin/bash
echo "Insert how many Mikrotik"
count=0
while : ; do
read -n 1 k <&1
if [[ $k = q ]] ; then
printf "\nQuitting from the program\n"
break
else
((count=$count+1))
printf "\nIterate for $count times\n"
echo "Press 'q' to exit"
fi
done