diff --git a/sd-script.sh b/sd-script.sh index 7fc38c6..b890dd6 100755 --- a/sd-script.sh +++ b/sd-script.sh @@ -21,6 +21,7 @@ RED="\e[31m" YELLOW="\e[33m" ENDCOLOR="\e[0m" +#Copying locally mkdir $mntpoint &> /dev/null if $doso mount -U $sd_uuid $mntpoint; then echo -e "[✅]$GREEN Mounted SD successfully$ENDCOLOR" @@ -33,21 +34,58 @@ echo -e "You have $YELLOW$(ls -l $srcdir/*.JPG | wc -l) JPG files$ENDCOLOR and $ if rsync -rvu --ignore-existing --info=progress2 $srcdir/ $destdir/pics-$(date '+%d-%b-%Y')/; then echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" - else echo -e "[❌] $RED Operation failed.$ENDCOLOR" && exit 1; fi + else echo -e "[❌] $RED Operation failed.$ENDCOLOR" && exit 1; fi -#read -p "Do you want to also send files to PC? [y/n]: " copyprompt2 +echo -e "Files from SD card will be removed in 10 seconds. If you don't want to delete files, press ctrl+C now." +sleep 10 +rm -fv $srcdir/* -#case copyprompt2 in -# y|Y) echo "Continuing...";; -# n|N) echo "Goodbye, Gordon.";; -# *) ;; -#esac -#IP_Waff="192.168.0.203" -#IP_Wox="192.168.0.184" -#waff_dir="/media/hdd/Pictures/NikonSync" +#Copying to other PCS +printf "[✅]All good. We can now send the files to other PCs. These are some presets: -# if ping -c 1 $IP_Waff; then -# echo -e "[✅]$GREEN Connection to$YELLOW Waffelo's Dragon PC$GREEN successful.$ENDCOLOR Syncing in 3 seconds..." ; sleep 3 -# rsync -rvu $destdir waffelo@$IP_WAFF:$waff_dir/pics-$(date '+%d-%b-%Y')/ -# else echo -e "Something went wrong. Check your PC IP." -# fi +1) + Host: Waffelo's Pinephone + IP: 192.168.0.148 + User: alarm + dir: .local/usr/Pictures/nikon + +2) + Host: Waffelo's PC + IP: 192.168.0.204 + User: waffelo + dir: /mnt/hdd/Pictures/nikon + +3) + Host: Jacob's Pinephone + IP: 192.168.0.157 + User: alarm + dir: .local/usr/Pictures/nikon + +4) + Host: Jacob's PC + IP: 192.168.0.184 + User: jacob + dir: /mnt/hdd/nikon" + + read -p "Choose a number (or 'all'): " num + +case $num in + 1) if rsync -rvu --ignore-existing $destdir/ alarm@192.168.0.148:$HOME/.local/usr/Pictures/nikon ; then + echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" + else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi + + 2) if rsync -rvu --ignore-existing $destdir/ waffelo@192.168.0.204:/mnt/hdd/Pictures/nikon ; then + echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" + else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi + + 3) if rsync -rvu --ignore-existing $destdir/ alarm@192.168.0.157:$HOME/.local/usr/Pictures/nikon ; then + echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" + else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi + + 4) if rsync -rvu --ignore-existing $destdir/ jacob@192.168.0.148:/mnt/hdd/nikon ; then + echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" + else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi + + *) echo "Invalid response." +esac +exit