I'm running around in circles with chat gpt. I want to backup /home/bmike1 user created data and all other pertinent files.
This is what it tells me:
#!/bin/bash
SOURCE="/home/bmike1/"
DESTINATION="/media/rsync/backup/"
OPTIONS="-av --delete --exclude='*.lock' --exclude='google-chrome/' --exclude='firefox/' --exclude='thunderbird/'"
rsync $OPTIONS $SOURCE $DESTINATION
WIll this do it for me?
As for the pertinent files I did this before and there was a few other directories involved. do I need to worry about it?