Download backup file from remote and copy to Synology

From rbachwiki
Revision as of 14:49, 15 June 2023 by Bacchas (talk | contribs) (Created page with "<h4> NOTE: File must already exist and you must know the exact filename that is being downloaded</h4> <h4 class="yellowbackground">opidwnlfromremotetolocal.sh</h4> <pre> #!/bin/bash d=`date +%Y%m%d` n="opilocal-" e=".jpa" name=$n$d$e #dest='/volume1/Linode/' scp -i ~/.ssh/linode 173.255.229.40:/var/www/html/opilocal/akbackup/$name . echo "+++++++++ done copying form Remoge ++++++++++++++++++" sleep 3 scp -i ~/.ssh/synology $name admin@192.168.20.120:/volume1/Linode/op...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

NOTE: File must already exist and you must know the exact filename that is being downloaded

opidwnlfromremotetolocal.sh

#!/bin/bash
d=`date +%Y%m%d`
n="opilocal-"
e=".jpa"
name=$n$d$e
#dest='/volume1/Linode/'
scp -i ~/.ssh/linode  173.255.229.40:/var/www/html/opilocal/akbackup/$name .

echo "+++++++++ done copying form Remoge ++++++++++++++++++"
sleep 3

scp -i ~/.ssh/synology $name admin@192.168.20.120:/volume1/Linode/opilocal

echo " +++++++++++++++++++++++++ Done copying to stan ++++++++++++++ "
ssh -i ~/.ssh/synology admin@192.168.20.120 "cd /volume1/Linode/opilocal;ls -la"

sleep 5
rm *.jpa

echo " +++++++++++ Deleting jpa file +++++++++++++++"