This fixes a bug related to grc's handling of arguments when piping to another command in fish shell, the arguments should be quoted, but they weren't. This PR fixes that issue.
Demonstration of the previous issue, obviously this should cat a file named "file with spaces.txt" but it is instead treated as separate files:
❯ cat file\ with\ spaces.txt | cat
cat: file: No such file or directory
cat: with: No such file or directory
cat: spaces.txt: No such file or directory
This fixes a bug related to grc's handling of arguments when piping to another command in fish shell, the arguments should be quoted, but they weren't. This PR fixes that issue.
Demonstration of the previous issue, obviously this should cat a file named "file with spaces.txt" but it is instead treated as separate files: