Currently, we use python's substitution syntax for rename patterns, so you have to write
match/substitution expressions like: acme-(.*) -> acme.\\1. The backslash style
escaping can cause cause confusion and lead to errors when having to add extra backslashes
to deal with shell escapes.
We should also support $ style substitutions like acme.$1 and acme.${group-name}
Currently, we use python's substitution syntax for rename patterns, so you have to write match/substitution expressions like:
acme-(.*)
->acme.\\1
. The backslash style escaping can cause cause confusion and lead to errors when having to add extra backslashes to deal with shell escapes.We should also support $ style substitutions like
acme.$1
andacme.${group-name}