mirror of
https://github.com/mbirth/tcl_update_db.git
synced 2024-11-10 07:16:46 +00:00
6 lines
135 B
Bash
Executable File
6 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
MYDIR=$(dirname "$(readlink -f "$0")")
|
|
. "${MYDIR}/../config.ini"
|
|
rsync -av "${SYNC_REMOTE_DIR}/data/*" "${MYDIR}/../data/"
|
|
|