13 lines
195 B
Bash
13 lines
195 B
Bash
|
#! /usr/bin/env bash
|
||
|
FILE="$(realpath "${BASH_SOURCE[0]}")"
|
||
|
ROOT="$(dirname "${FILE}")"
|
||
|
|
||
|
rsync \
|
||
|
--archive \
|
||
|
--delete-before \
|
||
|
--partial \
|
||
|
--progress \
|
||
|
--verbose \
|
||
|
"${ROOT}/in/" \
|
||
|
"${ROOT}/out/"
|