Skip to content

Instantly share code, notes, and snippets.

View Avelatte's full-sized avatar
Drinking coffee!

Aveline Cacciatore Avelatte

Drinking coffee!
View GitHub Profile
@Avelatte
Avelatte / starbound_linker.sh
Last active February 12, 2026 23:18
Simple script for linking Starbound mods from Steam workshop to a dedicated server
#!/bin/bash
# Usage example:
# ./starbound_linker.sh -s ~/.local/share/Steam/steamapps/workshop/content/211820 -o ./mods
while getopts ":s:o:" opt; do
case $opt in
s) steam_workshop="$OPTARG"
;;
o) output="$OPTARG"