Casey Rodarmor
Casey Rodarmor
I think this is probably the best way to do it. The alternative is to write two recipes, one with `[windows]` and the other with `[unix]`.
Thanks for the links and the translation to CMD! I didn't know about ss64, it looks super useful. I'm actually just using `sh` to return an exit code to the...
As a temporary workaround, you can pipe stderr through grep and filter the offending lines: ```bash cargo run 2> >(grep -Ev 'IMKClient|IMKInputSession' >&2) ```