18 lines
207 B
Bash
Executable File
18 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
while :
|
|
do
|
|
read -n 2 -s -r -p "Press any key to continue: " action
|
|
echo $action
|
|
case $action in
|
|
00)
|
|
echo "mario is real"
|
|
;;
|
|
01)
|
|
echo "L is real 2401"
|
|
;;
|
|
02)
|
|
neofetch
|
|
;;
|
|
esac
|
|
done
|