バックアップ スクリプトのデバッグのヘルプ

バックアップ スクリプトのデバッグのヘルプ

3 時間ごとにスクリプトが実行され、フォルダー「SOURCE」のバックアップが作成され、その日のその他のバックアップとともにフォルダー「月-日-年」(例:「03-24-13」) に保存されます。新しい日になると、新しい日付で新しいフォルダーが作成され、前日のフォルダーにある最新のバックアップ以外のすべてのバックアップが削除されます。ここで問題が発生します。前日の古いフォルダーが削除されません。なぜでしょうか?

#!/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

答え1

if [ ! -d "$DIR/$YESTERDAY" ]; then

これは実行に失敗します。ディレクトリが存在しないかどうかをテストしています。

そのはず

if [ -d "$DIR/$YESTERDAY" ]; then

関連情報