diff --git a/2l.sh b/2l.sh deleted file mode 100755 index ef47bdd..0000000 --- a/2l.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -# Read the contents of the file flag.txt using only 2 letter commands - -while true; do - echo -n "$ " - read input - - if [ ${#input} -eq 2 ]; then - eval "$input" - else - echo "Command is not 2 characters!" - fi -done