Merge branch 'main' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / email / count_maildir.sh
index d927383137bd4adad754ee47e6f7494505791441..3636bd991f391695e0b9e5ed2cd0e69405b4c56e 100644 (file)
@@ -9,7 +9,7 @@ folderlist=$TMP/zz_folder_list.txt
 
 find . -name "cur" >$folderlist
 
-while read line; do echo -n "$line  -- " ; find "$line" -type f | wc -l ; done < $folderlist
+while read input_text; do echo -n "$input_text  -- " ; find "$input_text" -type f | wc -l ; done < $folderlist
 
 popd &>/dev/null