gpt4 book ai didi

bash - 使用 dropbox_uploader.sh 在特定日期后删除文件

转载 作者:行者123 更新时间:2023-12-04 18:57:36 27 4
gpt4 key购买 nike

我正在使用 dropbox_uploader.sh 运行备份我的数据库. backupds 通过基于日期的命名约定保存在 Dropbox 中:

DATE=$(date +"%d-%m-%Y_%H%M") 
BKP_FILE="pal_BK_$DATE.sql"

.例如 pal_BK_12-12-2016_1311.sql .
有没有办法从保管箱中删除超过一个月的备份?

最佳答案

如果不修改日期格式,文件之间的比较会变得有点奇怪,但这会很好。
这个想法是以秒为单位计算当前日期(以您的格式)和限制删除日期(1个月前)。然后对于列出的文件的每个条目,我们检索日期,将其转换为秒,并与规定的限制进行比较。如果文件足够旧,我们将其删除。

#!/bin/bash 

#####################
# Convert a given date to s (leaves result in DATE_IN_S)
#####################
dateToS() {
local date=$1

local year=$(echo $date | tr "-" "\t" | tr "_" "\t" | awk {' print $1 '})
local month=$(echo $date | tr "-" "\t" | tr "_" "\t"| awk {' print $2 '})
local day=$(echo $date | tr "-" "\t" | tr "_" "\t" | awk {' print $3 '})
local hour=$(echo $date | tr "-" "\t" | tr "_" "\t" | awk {' print $4 '} | cut -c -2)
local minute=$(echo $date | tr "-" "\t" | tr "_" "\t" | awk {' print $4 '} | cut -c 3-)
local seconds="00"

# Compute the date time in s
DATE_IN_S=$(date -d "${year}-${month}-${day} ${hour}:${minute}:${seconds}" +%s)
}


#####################
# MAIN CODE
#####################

DEST_DIR= # Dropbox backups base folder
DATE=$(date +"%Y-%m-%d_%H%M")
BKP_FILE="pal_BK_${DATE}.sql"

# Compute the limit date to erase files
LIMIT_DATE=$(date +%s)
LIMIT_DATE=$((LIMIT_DATE-2592000)) # 1 month in seconds

# Retrieve the list of files
files=$(./dropbox_uploader.sh list $DEST_DIR | awk {' print $3 '} | tail -n +2)

# Process each file
for file in $files; do
fileDate=$(echo $file | tr "_" "\t" | tr "." "\t" | awk {' print $3"_"$4 '})

# Retrieve file date in seconds
dateToS $fileDate

# Erase the file if it exceeds the limit date
#echo "[DEBUG] Comparing ${DATE_IN_S} - ${LIMIT_DATE}"
if [ ${DATE_IN_S} -lt ${LIMIT_DATE} ]; then
echo "[INFO] Erasing file $file"
./dropbox_uploader.sh delete ${DEST_DIR}${file}
fi
done
请注意:
  • 函数 dateToS 以秒为单位将您的特定日期格式转换为等效的
  • 要获取文件列表,我们使用 dropbox_uploader.sh list 并 awk 第三个字段(仅文件名)并删除第一行(INFO 行)
  • 为了清楚起见,我添加了一些回显消息,但您显然可以删除它们(也可以在静默模式下执行 dropbox-uploader.sh 调用)。
  • 关于bash - 使用 dropbox_uploader.sh 在特定日期后删除文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41098278/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com