using mtime instead of atime with find
This commit is contained in:
parent
7b2a0a1b1e
commit
66227f98b8
|
@ -46,7 +46,7 @@ create_backup_dirs() {
|
||||||
|
|
||||||
cleanup_old_backups() {
|
cleanup_old_backups() {
|
||||||
# Remove the old backups
|
# Remove the old backups
|
||||||
find ${HISTDIR} -atime +${N_DAYS_TO_SPARE} -type f -exec rm -f {} \;
|
find ${HISTDIR} -mtime +${N_DAYS_TO_SPARE} -type f -exec rm -fv {} \;
|
||||||
# TODELETE=$( /bin/ls "${HISTDIR}/" | awk -F '.' '{print $NF}' | sort -ruV | tail -n +${N_DAYS_TO_SPARE} )
|
# TODELETE=$( /bin/ls "${HISTDIR}/" | awk -F '.' '{print $NF}' | sort -ruV | tail -n +${N_DAYS_TO_SPARE} )
|
||||||
# for i in ${TODELETE}
|
# for i in ${TODELETE}
|
||||||
# do
|
# do
|
||||||
|
|
Loading…
Reference in New Issue