From 3dce517115f76f9dc2a397a6aa32ffe115e8d588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bid=C5=BEan?= Date: Sun, 16 Mar 2025 17:59:53 +0100 Subject: [PATCH] sortof finishing sd-script for now --- sd-script.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/sd-script.sh b/sd-script.sh index 895ff22..9e026ea 100755 --- a/sd-script.sh +++ b/sd-script.sh @@ -36,8 +36,9 @@ if rsync -rvu --ignore-existing --info=progress2 $srcdir/ $destdir/pics-$(date ' echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" else echo -e "[❌] $RED Operation failed.$ENDCOLOR" && exit 1; fi -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 +echo -e "Files from SD card will be removed in 3 seconds. If you don't want to delete files, press ctrl+C now." +sleep 3 +$doso chown -R $USER:$USER $srcdir/ rm -fv $srcdir/* #Copying to other PCS @@ -65,10 +66,14 @@ printf "[✅]All good. We can now send the files to other PCs. These are some pr Host: Jacob's PC IP: 192.168.0.184 User: jacob - dir: /mnt/hdd/nikon" + dir: /mnt/hdd/nikon + +5) + Quit script." read -p "Choose a number (or 'all'): " num +while true; do 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" @@ -86,6 +91,9 @@ case $num in echo -e "[✅]$GREEN Copying successful.$ENDCOLOR" else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi;; + 5) exit 0;; + *) echo "Invalid response." esac -exit +done +exit 0