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