Skip to content

Instantly share code, notes, and snippets.

@ItsEmilyJpg
Created May 7, 2020 14:54
Show Gist options
  • Select an option

  • Save ItsEmilyJpg/4ad8cc4f61121df697bbacdffd038b87 to your computer and use it in GitHub Desktop.

Select an option

Save ItsEmilyJpg/4ad8cc4f61121df697bbacdffd038b87 to your computer and use it in GitHub Desktop.
#!/bin/bash
SOURCE=/root/gitlab/
DESTINATION=/root/backup/
# not modify below
DATE_DAILY=`date '+%d-%m-%Y_%H-%M-%S'`
tar -cvzf $DESTINATION/$DATE_DAILY.tar $SOURCE
# daily - keep for 14 days
find $DESTINATION/ -maxdepth 1 -mtime +14 -type d -exec rm -rv {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment