You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
319 B
Bash
12 lines
319 B
Bash
#!/usr/bin/bash
|
|
|
|
# Sync Vita save data with a local directory.
|
|
# Add non-Retroarch directories if it makes sense to.
|
|
|
|
vita_ip="$1"
|
|
|
|
RETROARCH_PATH_VITA="ux0:/data/retroarch/savefiles"
|
|
RETROARCH_PATH_LOCAL=~/Nextcloud/game-saves/retroarch/saves
|
|
|
|
ftp-sync "${vita_ip}:1337/${RETROARCH_PATH_VITA}" "$RETROARCH_PATH_LOCAL"
|