numerous minor changes to either use the sep function instead of old name of 'line...
[feisty_meow.git] / scripts / files / checker_report.sh
index 759b8d38c56d24cd31d916ff732710e5395e29d5..3dd649abf8a000215537bd4814b2ba5b8db2b701 100644 (file)
@@ -27,8 +27,8 @@ temp_file_list="$(mktemp /tmp/file_list_temporary.XXXXXX)"
 
 find "$dirname" -type f >"$temp_file_list"
 ###-exec echo \"{}\" ';' 
-while read line; do
-  checker -q -b "$line" 2>&1 >>"$outfile"
+while read input_text; do
+  checker -q -b "$input_text" 2>&1 >>"$outfile"
 done <"$temp_file_list"