9 lines
226 B
Bash
9 lines
226 B
Bash
#!/bin/bash
|
|
|
|
SRCD_URL="https://forums.alliedmods.net/attachment.php?attachmentid=111241&d=1350927414"
|
|
|
|
echo "Installing Left 4 Downtown 2"
|
|
|
|
curl -sL "$SRCD_URL" | bsdtar -xf - -C $DIR_SOURCEMOD
|
|
|
|
rm -v $DIR_SOURCEMOD/README.txt |