7 lines
172 B
Bash
7 lines
172 B
Bash
|
#!/bin/sh
|
||
|
#Doing adata backup to server-ccppi
|
||
|
Source="/home/ccppi2"
|
||
|
Destination="ccppi@192.168.1.3:/home/backup/by-Device/ccppi-nb/"
|
||
|
|
||
|
rsync -rtsv "$Source" "$Destination"
|