numerous minor changes to either use the sep function instead of old name of 'line...
[feisty_meow.git] / scripts / files / checker_report.sh
old mode 100755 (executable)
new mode 100644 (file)
index ce0bb6b..3dd649a
@@ -11,6 +11,7 @@ outfile="$1"; shift  # optional parm.
 
 if [ -z "$dirname" ]; then
   echo "This script requires one directory on which to make a checker report."
+  echo "Additionally, you can specify an output file as the second parameter."
   exit 1
 fi
 
@@ -26,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"