GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Who can tech me how to do cron jobs to copy files? (https://gfy.com/showthread.php?t=904971)

Phil 05-12-2009 07:51 PM

Who can tech me how to do cron jobs to copy files?
 
Any good tutorials? I need to tickle my brain a bit.

fris 05-12-2009 07:57 PM

just create a shell script and execute it.

(once a day)

0 0 * * * /home/user/wpbackup.sh

Code:

#!/usr/bin/bash

date="`eval date +%Y%m%d`";
mysqluser="mysqluser"
mysqlpass="mysqlpassword"
mysqldb="blogdatabase"
backupsource="/home/user/public_html/"
backupdest="/home/user/backups/"

echo "creating database backup"
mysqldump -q -e -h localhost -u ${mysqluser} -p${mysqlpass} ${mysqldb} | gzip - > ~/${backupdest}${date}_db-backup.sql.gz
echo "done"
echo "creating file system backup"
cd ~/${backupsource}
tar cf - . | gzip - > ~/${backupdest}${date}_files.tar.gz
echo "done"
echo "wordpress backup complete"



All times are GMT -7. The time now is 09:41 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc