A cada 3 horas o script irá rodar e fazer backup de uma pasta "SOURCE" e irá salvá-la junto com os demais backups do dia atual na pasta "mês-dia-ano" ex. "24-03-13". Quando chega um novo dia, ele cria uma nova pasta com a nova data e exclui todos os backups, exceto o mais recente, na pasta do dia anterior. É aqui que está o problema, não vou deletar as pastas antigas do dia anterior. Alguma idéia do porquê?
#!/bin/sh
DIR=/media/HDD
SOURCE=/home/eric/Creative/
DATE=$(date +"%m-%d-%Y")
YESTERDAY=$(date -d '1 day ago' +"%m-%d-%Y")
TIME=$(date +"%T")
DESTINATION=$DIR/$DATE/$TIME
SPACE=$(df -P $DIR | tail -1 | awk '{print $4}')
NEEDED=$(du -s $SOURCE | awk '{print $1}')
FOLDERS=$(find $DIR/* -maxdepth 0 -type d | wc -l)
# If there is not enough space, delete the oldest folder
if [ $NEEDED -ge $SPACE ]; then
ls -dt $DIR/* | tail -n +$FOLDERS | xargs rm -rf
fi
# If there is not a folder for today, create one
if [ ! -d "$DIR/$DATE" ]; then
mkdir $DIR/$DATE
# If there is a folder from yesterday, keep only one of its backups
if [ ! -d "$DIR/$YESTERDAY" ]; then
ls -dt $DIR/$YESTERDAY/* | tail -n +2 | xargs rm -rf
fi
fi
# Create the new backup directory
if [ ! -d "$DESTINATION" ]; then
mkdir $DESTINATION
fi
# Backup source to destination
rsync -a $SOURCE $DESTINATION
Responder1
if [ ! -d "$DIR/$YESTERDAY" ]; then
Este não consegue executar. Você está testando se NÃO existe um diretório.
Deveria ser
if [ -d "$DIR/$YESTERDAY" ]; then