#!/bin/sh ############################################################################################################ # CRB ( Cpanel Rsync Backup ) Version 0.1b Author: Fernando Morgenstern # ############################################################################################################ # # # The license of this software is located at the same directory of this program. Please read the LICENSE # # before you make copies or distribute this software. # # # ############################################################################################################ # Create dir mkdir -p /usr/local/crb cd /usr/local/crb # Download file wget http://fernandomarcelo.com/crb/crb-latest.tar.gz &> /dev/null # Extract file tar -zxvf crb-latest.tar.gz; echo '' echo 'Installation finished. Check /usr/local/crb/crb.conf to config and them add this script to cron.'; echo ''