Преглед изворни кода

move -type f before -mtime

UltimateByte пре 9 година
родитељ
комит
01c3f90bb9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lgsm/functions/command_backup.sh

+ 1 - 1
lgsm/functions/command_backup.sh

@@ -160,7 +160,7 @@ if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then
 			# Display how many backups will be cleared
 			fn_print_info_nl "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared."
 			fn_script_log "${backupsoudatedcount} backup(s) older than ${maxbackupdays} days will be cleared"
-			find "${backupdir}"/ -mtime +"${maxbackupdays}" -type f -exec rm -f {} \;
+			find "${backupdir}"/ -type f -mtime +"${maxbackupdays}" -exec rm -f {} \;
 			fn_print_ok_nl "Cleared ${backupsoudatedcount} backup(s)."
 			fn_script_log_pass "Cleared ${backupsoudatedcount} backup(s)"
 		else