Improved readability of printouts in rewrite script.

This commit is contained in:
Tobias Reinhard 2022-12-31 10:06:35 -05:00
parent 4386c13fb1
commit 259fb147af

View file

@ -24,8 +24,9 @@ rewrite()
{
FIND_REGEX=$1
REPLACE_REGEX=$2
echo "\tRewrite pattern: \"$FIND_REGEX\" -> \"$REPLACE_REGEX\""
echo "Rewrite pattern: \"$FIND_REGEX\" -> \"$REPLACE_REGEX\""
sed -i "" "s|$FIND_REGEX|$REPLACE_REGEX|g" $SOURCE_FILE
echo
}