Puisi untuk backup database dan semua file forum

Hanya untuk catatan semata πŸ˜ƒ πŸ˜ƒ Puisi bc.sh

#!/bin/bash
cd /usr/local/mariadb/var && git add miyui && git commit -a -m "`date`" && git push --all
cd /home/root/mifans.web.id && git add * && git add .htac* && git commit -a -m "`date`" && git push --all

Execute with cronjob

crontab -e
*/10 * * * * /root/bc.sh >/dev/null 2>&1
chmod +x bc.sh

Well done πŸ˜‡ πŸ˜‡

linux
sh
crontab