StaticformatStaticparseParse text into a ParsedPipeline. Throws when the input would
yield more than one command — pipeline execution is deferred.
StaticprocessApply tokenizer escape processing to a verbatim source slice. Used
by the matcher to materialise a greedy field's value: the matcher
slices the original input from the end of the last consumed token
through end-of-input, then runs this to honour outside-quote escapes
(\<ws>, \\, \", \|). Quotes inside the slice are LITERAL — no
quote stripping, no inside-quote escapes (per spec §2.4).
Render a parsed pipeline / command back to canonical text. The round-trip property is
parse(format(parse(t))) === parse(t)for validt. Words containing whitespace,",\, or unquoted|are wrapped in"..."with"and `` escaped; apostrophes stay bare.