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