10 lines
179 B
Bash
Executable file
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"
|