You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
482 B
19 lines
482 B
#!/bin/sh
|
|
# Simple rsync backup script for my MacBookPro
|
|
# Now using on the X1 Carbon running FreeBSD...
|
|
#
|
|
# Dominic Reich, OE7DRT, quick.hat4396@qtztsjosmprqmgtunjyf.com
|
|
|
|
doas rsync -avzhP --inplace --del --stats \
|
|
--exclude '.cache/***' \
|
|
--exclude '.gvfs/***' \
|
|
--exclude '.DS_Store' \
|
|
--exclude 'Thumbs.db' \
|
|
--exclude 'lost+found/***' \
|
|
--exclude '.Trash/***' \
|
|
--exclude '@eaDir/***' \
|
|
--exclude 'mnt/***' \
|
|
'/' \
|
|
home-server:/mnt/user/backup/x1-freebsd/
|
|
|