version 1.40.130 release
[feisty_meow.git] / scripts / rip_burn / checker_report.sh
index 3dd649abf8a000215537bd4814b2ba5b8db2b701..270a06206d3aa47a38e39dbad2acca4f2f1f2886 100644 (file)
@@ -4,7 +4,7 @@
 # in such a way that the file count can be very high without blowing its
 # mind, and without any extra headers in the report.
 
-source $FEISTY_MEOW_SCRIPTS/core/functions.sh
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 
 dirname="$1"; shift
 outfile="$1"; shift  # optional parm.
@@ -26,9 +26,9 @@ fi
 temp_file_list="$(mktemp /tmp/file_list_temporary.XXXXXX)"
 
 find "$dirname" -type f >"$temp_file_list"
-###-exec echo \"{}\" ';' 
 while read input_text; do
   checker -q -b "$input_text" 2>&1 >>"$outfile"
 done <"$temp_file_list"
 
+rm "$temp_file_list"