I'd like to write a PEG that matches filesystem paths. A path element is any character except /
in posix linux.
There is an expression in PEG to match any
character, but I cannot figure out how to match any character except one.
The peg parser I'm using is PEST for rust.