Daily Folder Backup and Rotation for Linux
Go to file
Yann Mölle 1d15b08757 remove
2023-04-12 01:32:40 +02:00
README.md „README.md“ ändern 2023-04-11 21:06:57 +00:00
zip_folder_daily.sh remove 2023-04-12 01:32:40 +02:00

Folder archive

Daily Folder Backup and Rotation for Linux

Key Features:

  • Daily automated backups of a specified folder using the zip utility.
  • Date-appended archive file names for easy identification.
  • Automatic removal of backups older than 14 days.
  • Scheduled execution using cron for a hands-off approach.

Explanation:

  • The script sets the source directory (SOURCE_DIR) that will be zipped and the archive directory (ARCHIVE_DIR) where the zipped files will be stored.
  • It creates a timestamp in the format YYYY-MM-DD and stores it in the DATE variable.
  • The zip command is used to create the zipped archive and append the date to the file name.
  • The find command is used to delete files older than 14 days in the archive directory.
  • The cron entry schedules the script to run daily at 13:00 (1 PM).

Install git and zip

apt install git zip -y

Clone the repository

git clone https://github.com/hxcde/folderarchive.git

Add the following to cron:

0 13 * * * /path/to/script/zip_folder_daily.sh