-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
23 lines (20 loc) · 994 Bytes
/
install.sh
File metadata and controls
23 lines (20 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
echo "Installing dependencies for Demon worm..."
if [ -x "$(command -v apt)" ]; then
sudo apt update
sudo apt install -y libssh-dev
elif [ -x "$(command -v yum)" ]; then
sudo yum install -y libssh-devel
else
echo "Package manager not supported. Install libssh manually."
fi
cat << 'EOF'
/$$ /$$ /$$ /$$ /$$
| $$ /$ | $$ | $$$ | $$ | $$
| $$ /$$$| $$ /$$$$$$ /$$$$$$ /$$$$$$/$$$$ | $$$$| $$ /$$$$$$ /$$$$$$
| $$/$$ $$ $$ /$$__ $$ /$$__ $$| $$_ $$_ $$ | $$ $$ $$ /$$__ $$|_ $$_/
| $$$$_ $$$$| $$ \ $$| $$ \__/| $$ \ $$ \ $$ | $$ $$$$| $$$$$$$$ | $$
| $$$/ \ $$$| $$ | $$| $$ | $$ | $$ | $$ | $$\ $$$| $$_____/ | $$ /$$
| $$/ \ $$| $$$$$$/| $$ | $$ | $$ | $$ | $$ \ $$| $$$$$$$ | $$$$/
|__/ \__/ \______/ |__/ |__/ |__/ |__/ |__/ \__/ \_______/ \___/
EOF