11 lines
259 B
Bash
11 lines
259 B
Bash
#!/bin/bash
|
|
# installation script
|
|
|
|
cd || exit
|
|
mkdir tmp_install
|
|
cd tmp_install || exit
|
|
wget https://github.com/asandikci/iflbot-setup/archive/refs/heads/main.tar.gz
|
|
tar -xzvf main.tar.gz
|
|
cd iflbot-setup-main || exit
|
|
bash prerequisites.sh
|
|
bash applications.sh
|