forked from sinkaroid/hensuki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hensuki
48 lines (45 loc) · 1.13 KB
/
hensuki
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
#sin
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
CYAN=$(tput setaf 6)
WHITE=$(tput setaf 7)
begin=$(date +"%s")
echo -e "${RED}
_ _ _
| | | | (_)
| |__ ___ _ __ ___ _ _| | ___
| '_ \ / _ \ '_ \/ __| | | | |/ / |
| | | | __/ | | \__ \ |_| | <| |
|_| |_|\___|_| |_|___/\__,_|_|\_\_|
[!] [HentaiDoujin-Stealer with bash Implementation] 2019 -sin [!]"
echo -e "${GREEN}"
PS3='type your vendor number or "7" to exit: '
options=("simply-hentai" "hentai2read" "nhentai" "hentaicafe" "hentainexus" "pururin" "Quit")
select opt in "${options[@]}"
do
case $opt in
"simply-hentai")
cd bin;./hentai.sh
;;
"hentai2read")
cd bin;./h2r.sh
;;
"nhentai")
cd bin;./nhen.sh
;;
"hentaicafe")
cd bin;./hcafe.sh
;;
"hentainexus")
cd bin;./hnexus.sh
;;
"pururin")
cd bin;./pur.sh
;;
"Quit")
break
;;
*) echo "invalid option $REPLY";;
esac
done