From b3579f434b135b944b63a17b5c8dd46713d24755 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Thu, 12 Feb 2026 07:22:15 -0500 Subject: [PATCH] added doc in checker report note added, to provide the vim commands i use all the time when processing the output of checker. in zap the dir, just turned on some debugging noise for when "unimportant" files are whacked. then we know the extent of the issue, maybe a bit late, but for future research into a note that was reported and pooh-poohed. --- scripts/files/zap_the_dir.pl | 2 +- scripts/rip_burn/checker_report.sh | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/scripts/files/zap_the_dir.pl b/scripts/files/zap_the_dir.pl index 63da413e..28adf225 100644 --- a/scripts/files/zap_the_dir.pl +++ b/scripts/files/zap_the_dir.pl @@ -40,7 +40,7 @@ sub remove_whackables { if (! &important_filename($fname)) { # it's a junk file; whack it. $fname = $from_dir . '/' . $fname; -#print "whacking: $fname.\n"; +print "whacking unimportant: $fname.\n"; unlink $fname; if (-f "$fname") { print "cleaning file: $fname\n"; diff --git a/scripts/rip_burn/checker_report.sh b/scripts/rip_burn/checker_report.sh index ed76dd65..0fe9dc10 100644 --- a/scripts/rip_burn/checker_report.sh +++ b/scripts/rip_burn/checker_report.sh @@ -4,6 +4,19 @@ # in such a way that the file count can be very high without blowing its # mind, and without any extra headers in the report. +#### +# +# useful vim patterns for processing the output of the checker report: +# +# cleaning cdrom path entries: +# :1,$s/.media.fred.CDROM\/// +# +# cleaning bluray path entries: +# :1,$s/.z.archons.bluray_[0-9][0-9]*_arch[^\/]*\/// +# +#### + + source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" dirname="$1"; shift -- 2.34.1