Difference between revisions of "Download backup file from remote and copy to Synology"

From rbachwiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<h4> NOTE: File must already exist and you must know the exact filename that is being downloaded</h4>
<h4> NOTE: File must already exist and you must know the exact filename that is being downloaded</h4>
<h4 class="yellowbackground">opidwnlfromremotetolocal.sh</h4>
<h4 class="bluebackground">opidwnlfromremotetolocal.sh</h4>
<pre>
<pre>
#!/bin/bash
#!/bin/bash
Line 23: Line 23:
echo " +++++++++++ Deleting jpa file +++++++++++++++"
echo " +++++++++++ Deleting jpa file +++++++++++++++"
</pre>
</pre>
==[[Main_Page| Home]] - [[Scripts_used_on_Servers|Category]]==
[[Category:Bash]]

Latest revision as of 14:52, 15 June 2023

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  10.1.0.1:/var/www/html/opi/akbackup/$name .

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

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

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

sleep 5
rm *.jpa

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

Home - Category