1
0

ref: 构建工具重构

This commit is contained in:
TsMask
2025-03-19 17:21:47 +08:00
parent f2e43b0fc4
commit b2f867b86c
211 changed files with 1047 additions and 105510 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# rm expired file with filename like *20231028111213.zip"
filepath=$1
duration=$2
find $filepath -maxdepth 1 -type f -name "*[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]*" -printf "%f\n" | while read filename; do
datestr=$(echo "$filename" | grep -oE '[0-9]{8}')
filedate=$(date -d "$datestr" +%s)
sevendaysago=$(date -d "$duration days ago" +%s)
if [ "$filedate" -lt "$sevendaysago" ]; then
rm -f "$filepath/$filename"
echo "rm file: $filename"
fi
done