我有一個每天都需要Mongo DB備份的shell腳本。它按預期工作。現在我需要刪除超過2周的備份。目前的命名規則是否可以實現?任何人都可以點亮一下嗎?我是相當新的shell腳本用於刪除早於2周的備份的Shell腳本
#!/bin/sh
DIR=`date +%m%d%y`
DEST=/dbBackups/$DIR
mkdir $DEST
mongodump --authenticationDatabase admin -h 127.0.0.1 -d pipe -u <username> -p <password>
可能重複:https://stackoverflow.com/questions/13868821/ shell-script-to-delete-directories-older-than-n-days – Vardit
在這種情況下,這會爲我找到/ dbBackups/* -type d -ctime +14 -exec rm -rf {} \; –