7 lines
65 B
Bash
7 lines
65 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
source .env
|
||
|
|
||
|
rsync -rzdv "${WWW}/" "${DEST}"
|