mirror of
https://github.com/mbirth/tcl_update_db.git
synced 2024-11-09 23:06:45 +00:00
6 lines
128 B
Bash
6 lines
128 B
Bash
|
#!/bin/sh
|
||
|
MYDIR=$(dirname "$(readlink -f "$0")")
|
||
|
. "${MYDIR}/../config.ini"
|
||
|
rsync -av "${MYDIR}/../data" "${SYNC_REMOTE_DIR}/"
|
||
|
|