Add status update to update script

The script can take a while, so it is good to give some output so
that users know that it is still running.
This commit is contained in:
Kenneth Moreland 2019-01-10 17:44:08 -07:00
parent a52211e565
commit 871d3360f1

@ -57,6 +57,7 @@ do
sed_command="$sed_command -e 's/\\([^a-zA-Z]\\)$tag<[^<>,]*<[^<>]*<[^<>]*>[^<>]>[^<>,]*>/\\1$tag/g'"
done
echo -n "Converting files in `realpath $1`"
for file in `eval $find_command`
do
eval $sed_command $file > $file._do_update_sig
@ -67,4 +68,7 @@ do
rm $file
mv $file._do_update_sig $file
fi
echo -n "."
done
echo done