eric777

from Google drive to Synology NAS

Nov 29th, 2020 (edited)
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. #!/bin/bash
  2. for i in $(ls *.zip)
  3. do
  4.   rep=$(echo $i | cut -d. -f1)
  5.   unzip $i -d $rep
  6.   echo "copying $rep on the nas ..."
  7.   scp -r "$rep" admine@192.168.1.107:Drive/Moments/Gphotos/
  8.   echo "copy of $rep finished"
  9.   mv $i .$i
  10.   rm -rf $rep
  11. done
Add Comment
Please, Sign In to add comment