mirror of
https://github.com/opus-tango/minecraft-server-discord-bot.git
synced 2026-03-20 12:05:22 +00:00
11 lines
142 B
Bash
Executable File
11 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while true; do
|
|
read -n 1 -p "" input
|
|
if [[ $input == "q" ]]; then
|
|
break
|
|
fi
|
|
echo "hello"
|
|
sleep 3
|
|
done
|