Closed 1Kinoti closed 11 months ago
# this should parse as a pipeline with two elements 'nushell' | str contains n # but it is parsed as two pipelines, with one ending at `contains` 'nushell' | str contains n # quoting the string solves it though 'nushell' | str contains 'n' # <- okay
Description