[2l]: Make 2l directory + add flag

This commit is contained in:
2024-09-15 19:00:49 +01:00
parent d4d617fa55
commit 428d7b89af

13
2l.sh
View File

@ -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