Back up to remote servers

travelly-project

The more back ups the better and scripts help you to automate the project

#!/bin/bash
#put your local or remote servers
for i in 192.168.1.16 192.168.1.37
do
#for a permanent back up don't put your files in /tmp
scp -r /home/bill/professional-scripts $i:/tmp
done