Skip to content
jc-rs
GitHub

path-list

--path-listv1.0.0

POSIX path list string parser

Universalstring
$ cat input.txt | jc-rs --path-list

A real pair

From the reference corpus (generic/path_list--one.json). The left pane is the input the fixture ships; the right pane is the corpus's expected JSON. CI compares jc-rs with it field by field under the published differential. Hover a value to see where it came from.

path_listgeneric
/abc/def/gh.txt
expected outputjson
Use the Left and Right arrow keys to highlight the matching value in the input.
[
  {
    "path": "/abc/def/gh.txt",
    "parent": "/abc/def",
    "filename": "gh.txt",
    "stem": "gh",
    "extension": "txt",
    "path_list": [
      "/",
      "abc",
      "def",
      "gh.txt"
    ]
  }
]

Fixture coverage

7/7oracle-valid pairs match under the published structural JSON comparison

Magic syntax

not availableThis parser reads a file or a string rather than a command, so there is nothing for jc-rs to run. Pipe it in.

Source: crates/jc-rs-parsers/src/string/path_list.rs. jc-rs targets the schemas defined by the original Python tool. Fixture coverage above is the measured evidence for this parser; test the inputs your pipeline depends on. Compare