Skip to content

Instantly share code, notes, and snippets.

@jgomo3
Created March 2, 2022 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgomo3/b9743200560728f9de6d1d704866f7bd to your computer and use it in GitHub Desktop.
Save jgomo3/b9743200560728f9de6d1d704866f7bd to your computer and use it in GitHub Desktop.
Backup in `backups` folder sufixing date
#!/bin/bash
PRJ=$1
BCKP="backups/$PRJ_`date +%Y-%m-%d_%H:%M`"
install -d $BCKP
rsync -av --progress $PRJ/ $BCKP/phmsrails --exclude log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment