LINUX - BACKUP DE ARQUIVOS GERADOS POR TFTP OU FTP
Olá pessoal, eu me chamo Anderson. Este script faz uma movimentação de arquivos de backup ignorando uma pasta existente: #!/bin/bash -x cd /var/FileServerRoot/TFTP/ find /var/FileServerRoot/TFTP/ -maxdepth 1 -type f -exec tar --remove-files --exclude='./firmwares' -czvf /var/FileServerRoot/TFTP/temp.tar.gz {} + mv /var/FileServerRoot/TFTP/temp.tar.gz /var/FileServerRoot/BACKUP/backup_$(date "+%Y%m%d_%H%M%S").tar.gz