You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- BACKUP_DIRECTORY="/home/crontab_backup"
-
- if [ ! -e "${BACKUP_DIRECTORY}" ]; then
- mkdir -p ${BACKUP_DIRECTORY}
- fi
-
- crontab -l > ${BACKUP_DIRECTORY}/$(date '+%Y%m%d%H%M%S').txt
|