Files
CTF/HTB/interface/test.sh
Simon 82b0759f1e init htb
old htb folders
2023-08-29 21:53:22 +02:00

9 lines
107 B
Bash
Executable File

#!/bin/bash
read -rp "Enter guess: " num
if [[ $num -eq 42 ]]
then
echo "Correct"
else
echo "Wrong"
fi