GameServerManagers / GameServerManagers/LinuxGSM
steam workshop collection downloader
Open
game: Starbound
info: steamcmd
type: feature
- Dominant language
- Shell
- Stars
- 4.9k
- Forks
- 864
- PR merge metrics
- No merged PRs in 30d
Description
as requested by @dgibbs64 i am posting the script i made to download mod collections from steam workshop.
```bash
#!/bin/bash
curl https://steamcommunity.com/sharedfiles/filedetails/?id=1101449362 > source.html
echo "./steamcmd.sh +login "USERNAME" "PASSWORD" +force_install_dir ../serverfiles \\" > moddownload.sh
cat source.html \
| grep -E "
> moddownload.sh
echo "+quit" >> moddownload.sh
chmod +x moddownload.sh
./moddownload.sh
rm source.html
rm moddownload.sh
```
echo "+quit" >> moddownload.sh
chmod +x moddownload.sh
./moddownload.sh
rm source.html
rm moddownload.sh
```
Contributor guide
Assessment
This issue has not been assessed yet.