From 85534b130a4e3d009ea5e862eaff4de52b02f32e Mon Sep 17 00:00:00 2001 From: Oleg Sheynin Date: Fri, 19 Jul 2024 11:09:34 -0400 Subject: [PATCH] progress --- release_version.txt | 2 +- utils/prune_data.sh | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/release_version.txt b/release_version.txt index c81aa44..e3e1807 100644 --- a/release_version.txt +++ b/release_version.txt @@ -1 +1 @@ -0.9.7 +0.9.8 diff --git a/utils/prune_data.sh b/utils/prune_data.sh index b355a83..ddf1c06 100755 --- a/utils/prune_data.sh +++ b/utils/prune_data.sh @@ -21,7 +21,7 @@ src=${Settings[Src]} prune_date=${Settings[PruneDate]} -echo "Finding files older than ${prune_date}..." +echo "Finding files older than ${prune_date} in ${Src} ..." Cmd="find ${src} -type f ! -newermt \"${prune_date}\"" echo ${Cmd} files=($(eval ${Cmd})) @@ -42,7 +42,8 @@ for f in $files ; do ls -l $f; done echo "====================================" echo "Total files to be pruned: ${total_files}" -Cmd="${Cmd} -delete" +echo "Removing files..." +Cmd="${Cmd} -print -delete" echo ${Cmd} eval ${Cmd}