Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- echo -e "Please enter your name: "
- read name
- echo "Nice to meet you $name"
- =============================================================
- #!/bin/bash
- echo -e "What directory would you like to back up?"
- read directory
- DESTDIR=
- [email protected]:$directory/
- rsync --progress -avze ssh --exclude="*.iso" $directory $DESTDIR
Advertisement
Add Comment
Please, Sign In to add comment