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.
 
 
 
 
dotfiles/.aliases.d/backups.sh

14 lines
294 B

#RSYNC
alias backup="rsync --progress --info=progress2 -ravz"
export BACKUP_TO=~/MyBackups
mybackup() {
if [ ! -d "$BACKUP_TO" ]; then
mkdir "$BACKUP_TO"
fi
if [ -d "$BACKUP_TO" ]; then
backup $@ "$BACKUP_TO"
else
echo -e "\nSorry unable to Backup to $BACKUP_TO \n"
fi
}