Re: tar backup script

2008-02-14 Thread Derek Ragona
At 09:57 PM 2/13/2008, Steel City Phantom wrote: this isn't really bsd specific but i still need help with it. im writing a backup script a clip from that script is this: find /usr/local/www/data-dist/ -name config.php > /usr/local/backupScript/include find /usr/local/www/data-dis

Re: tar backup script

2008-02-14 Thread Lowell Gilbert
"Steel City Phantom" <[EMAIL PROTECTED]> writes: > this isn't really bsd specific but i still need help with it. im writing a > backup script a clip from that script is this: > > find /usr/local/www/data-dist/ -name config.php > > /usr/local/backupScript/

Re: tar backup script

2008-02-14 Thread The MadDaemon
7:22PM -0500: > > this isn't really bsd specific but i still need help with it. im writing > a > > backup script a clip from that script is this: > > > find /usr/local/www/data-dist/ -name config.php > > > /usr/local/backupScript/include > > find /u

tar backup script

2008-02-13 Thread Steel City Phantom
this isn't really bsd specific but i still need help with it. im writing a backup script a clip from that script is this: find /usr/local/www/data-dist/ -name config.php > /usr/local/backupScript/include find /usr/local/www/data-dist/ -name ClientFiles >> /usr/local/backupScrip

Re: tar backup script

2008-02-13 Thread Wael Nasreddine
This One Time, at Band Camp, Steel City Phantom <[EMAIL PROTECTED]> said, On Wed, Feb 13, 2008 at 10:57:22PM -0500: > this isn't really bsd specific but i still need help with it. im writing a > backup script a clip from that script is this: > find /usr/local/www/data-di

Re: Backup Script

2007-03-03 Thread Kostas Blekos
Robert Davison <[EMAIL PROTECTED]> on Sat, Mar 03, 2007 (09:06 +) wrote: > Im trying to write a small backup script which I have put in > /etc/periodic/weekly. The script is as follows.. > > #!/bin/sh > # > #weekly backup of chosen files > # > if >

Backup Script

2007-03-03 Thread Robert Davison
Im trying to write a small backup script which I have put in /etc/periodic/weekly. The script is as follows.. #!/bin/sh # #weekly backup of chosen files # if then tar -cf /dev/sa0 /var/ftp /home /etc /usr/local echo "backing up the disks" else echo &q