diff --git a/zip_folder_daily.sh b/zip_folder_daily.sh index 83cf098..09c63fc 100644 --- a/zip_folder_daily.sh +++ b/zip_folder_daily.sh @@ -12,5 +12,5 @@ DATE=$(date +%Y-%m-%d) # Create the zipped archive and append the date zip -r "${ARCHIVE_DIR}/folder_${DATE}.zip" "${SOURCE_DIR}" -# Delete files older than 14 days (change the number) +# Delete files older than 14 days find "${ARCHIVE_DIR}" -name "folder_*.zip" -mtime +13 -exec rm {} \;