21 lines
568 B
Bash
21 lines
568 B
Bash
#!/bin/bash
|
|
|
|
type_text() {
|
|
local text="$1"
|
|
local delay="$2"
|
|
local char
|
|
|
|
while IFS= read -r -n1 char; do
|
|
printf "%b" "$char"
|
|
sleep "$delay"
|
|
done <<< "$text"
|
|
|
|
printf "\n"
|
|
}
|
|
|
|
type_text "$(echo -e "\e[3m Du bist durch das SSH Tunnel geschritten und suchst nun nach dem Schlüssel weiter.\e[0m")" 0.05
|
|
type_text "$(echo -e "\e[3m Du kannst dich wage erinnern das du hier irgend wo ein Chat mit jemanden versteckt hattest.\e[0m")" 0.03
|
|
|
|
type_text "$(echo -e "\n")" 0.2
|
|
|
|
type_text "$(echo -e "\033[3m Aktuelles Level: 1 \033[0m")" 0.02 |