-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecom.sh
28 lines (22 loc) · 909 Bytes
/
secom.sh
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
#/bin/bash
clear
cat<< EOF
_____ ______ _____ ____ __ __
/ ____| | ____| / ____| / __ \ | \/ |
| (___ | |__ | | | | | | | \ / |
\___ \ | __| | | | | | | | |\/| |
____) | | |____ | |____ | |__| | | | | |
|_____/ |______| \_____| \____/ |_| |_|
WORLD'S MOST SECURE COMMUNICATION MEDIUM
FOR HACKERS
________________________________________________________________________________
EOF
read -p "a) Use as a listener
b) Use as a sender
(select a or b) >>" ab
case $ab in
a) echo Listening ...;;
b) echo Communicating ...;
bash src/Communicator.sh
esac
bash src/Listener.sh