From fe44673d6e03ced6d29d84580e28556b7b9a62ca Mon Sep 17 00:00:00 2001 From: root Date: Tue, 28 Mar 2023 13:28:48 +0200 Subject: [PATCH] First attemp - MultipleMikrotik --- testInstallation.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 testInstallation.sh diff --git a/testInstallation.sh b/testInstallation.sh deleted file mode 100755 index 0014d8f..0000000 --- a/testInstallation.sh +++ /dev/null @@ -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