10 lines
268 B
Bash
10 lines
268 B
Bash
#!/bin/bash
|
|
sudo apt update -y
|
|
sudo apt install wget unzip -y
|
|
wget https://terraria.org/api/download/pc-dedicated-server/terraria-server-$1.zip
|
|
unzip terraria-server-$1.zip
|
|
rm terraria-server-$1.zip
|
|
rm -fr ./$1/Windows/
|
|
cd $1/Linux/
|
|
chmod +x TerrariaServer.bin.x86_64
|