mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 03:07:48 +00:00
11 lines
292 B
Bash
Executable File
11 lines
292 B
Bash
Executable File
#! /bin/bash
|
|
sleep 60
|
|
sshKey=$(<.sshKey)
|
|
serverBackupPath=$(<.serverBackupPath)
|
|
localPath=$(<.localBackupPath)
|
|
|
|
/bin/rsync -r -e "ssh -i $sshKey" "$serverBackupPath/files/*" "$localPath/files/"
|
|
|
|
# Delete files older than 30 days
|
|
find "$localPath/files" -type f -name "*.*" -mtime +30 -delete
|