Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Run actions only if a regex based condition is met. Other parameters and behavior are the same as the run action. By default the regex is used as a find operation in the value. Options parameter can be set to one or more of the following to modify the default behavior: literal - to treat the regex string as a literal string, exact - to require an exact match of the value, negative - to reverse the condition so a match means do NOT run action.

    Required parameters: value, regex, file or input or standard input

    Optional parameters: common, continue, simulate, clearFileBeforeAppend, encoding, findReplace, findReplaceRegex

Examples


Code Block
titleOnly run on first day of the month
--action runIf --value %now% --regex 01 dateFormat dd --input "--action ... " 


Code Block
titleOnly run if the script parameter lead is set to bob
--action runIf --value %lead% --regex bob --options exact --input "--action ... " --input "--action ... "

...