10 lines
173 B
Bash
10 lines
173 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
BAK="/Data/_server"
|
||
|
|
||
|
|
||
|
rsync -zrhP --links --size-only --verbose --delete \
|
||
|
"/Servers/infra/var/www/gotosocial/storage/" \
|
||
|
"$BAK/gotosocial/storage"
|
||
|
|