Back-up script
Geplaatst door Gert op woensdag 09-05-2018
#!/bin/bash
cd ~
FILES=$(yad --width=800 --height=600 --file-selection --directory --multiple)
IFS="|"
for bestand in ${FILES}
do
rsync -a "$bestand" ~/Backup
done
Geplaatst door Gert op woensdag 09-05-2018
#!/bin/bash
cd ~
FILES=$(yad --width=800 --height=600 --file-selection --directory --multiple)
IFS="|"
for bestand in ${FILES}
do
rsync -a "$bestand" ~/Backup
done