rsync/rsync_backup.sh
2023-02-15 06:36:57 +08:00

12 lines
316 B
Bash

#!/bin/bash
PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
password_file='/etc/rsyncd.pwd'
exclude_file='/etc/rsyncd.exclude'
user='user'
ip='ip'
source='/opt /var/www'
destination='data/'
rsync -a --exclude-from=$exclude_file --password-file=$password_file $source $user@$ip::$destination