First attemp - MultipleMikrotik

This commit is contained in:
root 2023-03-28 13:28:48 +02:00
parent a4162d97c7
commit fe44673d6e

View File

@ -1,14 +0,0 @@
#!/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