numerous minor changes to either use the sep function instead of old name of 'line...
[feisty_meow.git] / scripts / buildor / buildor_count_code.sh
index c80b6f8183c799fed7222858f2e545ea131cd879..0be0a0eaf5d0b30b645bb47a786aa628b7e1b898 100644 (file)
@@ -31,9 +31,9 @@ while true; do
 #cat $NAME_LIST_TEMP_FILE
 #echo ====================================================
 
-  while read line; do
-#echo line is $line
-    count=$(grep -h -v -c "^[ ]*$" $line)
+  while read input_text; do
+#echo input_text is $input_text
+    count=$(grep -h -v -c "^[ ]*$" $input_text)
     TOTALS=$(($TOTALS + $count))
 #echo total is $TOTALS now
   done < "$NAME_LIST_TEMP_FILE"