1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-25 20:58:37 -06:00

Added crontab-bk.sh

This commit is contained in:
Sayantan Santra 2022-06-26 22:34:06 -05:00
parent 46d64aebaa
commit 8d2295c38b

14
crontab-bk.sh Normal file
View file

@ -0,0 +1,14 @@
#!/bin/sh
# this is a script to backup crontab data
# put this inside /etc/cron.daily
# define location for output
DIR=/home/sintan/Documents/Backup/pkglists
# make sure that the folder exists
mkdir -p $DIR
ls /etc/cron.hourly/ /etc/cron.daily/ /etc/cron.weekly/ /etc/cron.monthly/ > $DIR/crontab
echo "-----------------" >> $DIR/crontab
crontab -l >> $DIR/crontab