^start of line
deploy-file-the literal text deploy-file- (case sensitive) \d+a digit, repeated at least once
_the literal _ (9510 / 1378 / 5F16)
+matches at least one character from the set below:
\wany word character
-the literal - (4510 / 558 / 2D16)
_the literal _ (9510 / 1378 / 5F16)
.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
.any character (except for line terminators)
logthe literal text log (case sensitive) $end of line
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string