Displaying 1 result from an estimated 1 matches for "msg11518".
Did you mean:
msg11014
2004 Sep 29
1
--link-dest doesn't work
i want to backup a website every day, but only get the changed files.
Otherwise just hard link to yesterdays file. So I'm trying
--link-dest. here is the script (backup.sh) I'm trying to use....
#!/bin/bash
if [ -z "$1" ]; then
echo usage: $0 rsync_module
exit
fi
BACKUP_DIR=/home/user/backups/sites/$1
NEW_BACKUP=$BACKUP_DIR/`date +%m-%d-%Y`