adding ability to send remotely
This commit is contained in:
parent
edfbab37fc
commit
513f554866
1 changed files with 53 additions and 15 deletions
68
sd-script.sh
68
sd-script.sh
|
@ -21,6 +21,7 @@ RED="\e[31m"
|
||||||
YELLOW="\e[33m"
|
YELLOW="\e[33m"
|
||||||
ENDCOLOR="\e[0m"
|
ENDCOLOR="\e[0m"
|
||||||
|
|
||||||
|
#Copying locally
|
||||||
mkdir $mntpoint &> /dev/null
|
mkdir $mntpoint &> /dev/null
|
||||||
if $doso mount -U $sd_uuid $mntpoint; then
|
if $doso mount -U $sd_uuid $mntpoint; then
|
||||||
echo -e "[✅]$GREEN Mounted SD successfully$ENDCOLOR"
|
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
|
if rsync -rvu --ignore-existing --info=progress2 $srcdir/ $destdir/pics-$(date '+%d-%b-%Y')/; then
|
||||||
echo -e "[✅]$GREEN Copying successful.$ENDCOLOR"
|
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
|
#Copying to other PCS
|
||||||
# y|Y) echo "Continuing...";;
|
printf "[✅]All good. We can now send the files to other PCs. These are some presets:
|
||||||
# n|N) echo "Goodbye, Gordon.";;
|
|
||||||
# *) ;;
|
|
||||||
#esac
|
|
||||||
#IP_Waff="192.168.0.203"
|
|
||||||
#IP_Wox="192.168.0.184"
|
|
||||||
#waff_dir="/media/hdd/Pictures/NikonSync"
|
|
||||||
|
|
||||||
# if ping -c 1 $IP_Waff; then
|
1)
|
||||||
# echo -e "[✅]$GREEN Connection to$YELLOW Waffelo's Dragon PC$GREEN successful.$ENDCOLOR Syncing in 3 seconds..." ; sleep 3
|
Host: Waffelo's Pinephone
|
||||||
# rsync -rvu $destdir waffelo@$IP_WAFF:$waff_dir/pics-$(date '+%d-%b-%Y')/
|
IP: 192.168.0.148
|
||||||
# else echo -e "Something went wrong. Check your PC IP."
|
User: alarm
|
||||||
# fi
|
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
|
||||||
|
|
Loading…
Reference in a new issue