[2l.sh]: Add 2l.sh

This commit is contained in:
2024-09-14 00:01:38 +01:00
parent a79c3644d5
commit 8e84921a63

13
2l.sh Executable file
View File

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