From 428d7b89aff589045ef928bc5d1b1037f59ad5f6 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 15 Sep 2024 19:00:49 +0100 Subject: [PATCH] [2l]: Make 2l directory + add flag --- 2l.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 2l.sh 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