6 lines
128 B
Bash
Executable File
6 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
MYDIR=$(dirname "$(readlink -f "$0")")
|
|
. "${MYDIR}/../config.ini"
|
|
rsync -av "${MYDIR}/../data" "${SYNC_REMOTE_DIR}/"
|
|
|