At times you may want to perform a quick search/replace or filter operation from the Command Prompt without having to first create & save a transform file.  The Default.uc file contains settings that will be used with quick searches.  Whenever you perform a quick search from the Command Prompt, the search will consist of Default.uc plus the quick search pattern.

You may load up Default.uc with uCalc Transform and modify the properties and even add some default patterns or script setups to be used in subsequent quick searches.

Quick search operations look like this:

C:\> T /REPLACE:"printf({text})" /WITH:"cout << {text}" *.cpp

C:\> T Test*.Bas /REPLACE:"Dim {var} As Long" /WITH:"Dim {var} As Integer"

C:\> T Abc.htm /REPLACE:"<[/]{tag}>" /WITH:"{@Evaluate: UCase({Self})}"

C:\> T *.html /FILTER:<b>{text}</b> /WITH:"Bold text: {text}"

Note:
- The order of the parameters passed at the command line does not patter
- To use a transform file other than Default.uc, use /TF: as in:
  C:\> T /TF:HTML.uc /FILTER:"<a href={q}{text}{q}[{etc}]>" /WITH:"{text}"