subsonic-vita/upload.sh
2025-11-16 15:41:37 +02:00

10 lines
179 B
Bash
Executable file

#!/bin/bash
# File to upload
FILE="make/subsonic.vpk"
# FTP server + target directory
FTP_URL="ftp://192.168.8.31:1337/ux0:/VPK/"
# Upload with curl
curl -T "$FILE" "$FTP_URL"