sortof finishing sd-script for now
This commit is contained in:
parent
0fb364dbfd
commit
3dce517115
1 changed files with 12 additions and 4 deletions
16
sd-script.sh
16
sd-script.sh
|
@ -36,8 +36,9 @@ if rsync -rvu --ignore-existing --info=progress2 $srcdir/ $destdir/pics-$(date '
|
||||||
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
|
||||||
|
|
||||||
echo -e "Files from SD card will be removed in 10 seconds. If you don't want to delete files, press ctrl+C now."
|
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 10
|
sleep 3
|
||||||
|
$doso chown -R $USER:$USER $srcdir/
|
||||||
rm -fv $srcdir/*
|
rm -fv $srcdir/*
|
||||||
|
|
||||||
#Copying to other PCS
|
#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
|
Host: Jacob's PC
|
||||||
IP: 192.168.0.184
|
IP: 192.168.0.184
|
||||||
User: jacob
|
User: jacob
|
||||||
dir: /mnt/hdd/nikon"
|
dir: /mnt/hdd/nikon
|
||||||
|
|
||||||
|
5)
|
||||||
|
Quit script."
|
||||||
|
|
||||||
read -p "Choose a number (or 'all'): " num
|
read -p "Choose a number (or 'all'): " num
|
||||||
|
|
||||||
|
while true; do
|
||||||
case $num in
|
case $num in
|
||||||
1) if rsync -rvu --ignore-existing $destdir/ alarm@192.168.0.148:$HOME/.local/usr/Pictures/nikon ; then
|
1) if rsync -rvu --ignore-existing $destdir/ alarm@192.168.0.148:$HOME/.local/usr/Pictures/nikon ; then
|
||||||
echo -e "[✅]$GREEN Copying successful.$ENDCOLOR"
|
echo -e "[✅]$GREEN Copying successful.$ENDCOLOR"
|
||||||
|
@ -86,6 +91,9 @@ case $num in
|
||||||
echo -e "[✅]$GREEN Copying successful.$ENDCOLOR"
|
echo -e "[✅]$GREEN Copying successful.$ENDCOLOR"
|
||||||
else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi;;
|
else echo -e "[❌] $RED Copying failed. Check IP in settings.$ENDCOLOR"; fi;;
|
||||||
|
|
||||||
|
5) exit 0;;
|
||||||
|
|
||||||
*) echo "Invalid response."
|
*) echo "Invalid response."
|
||||||
esac
|
esac
|
||||||
exit
|
done
|
||||||
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue