bash:backup_files_and_directories
This is an old revision of the document!
BASH - Backup files and directories
Backup each file or directory that have been modified within the last 24 hour.
#!/bin/bash BACKUPFILE=backup-$(date +%m-%d-%Y) archive=${1:-$BACKUPFILE} find . -mtime -1 -type f -print0 | xargs -0 tar rvf "$archive.tar" echo "Directory $PWD backed up in archive file \"$archive.tar.gz\"." exit 0
It will print the names of the files and directories after the backup process is successful.
bash/backup_files_and_directories.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1