cadejacobson / crush

Crush (AKA Cade's RUst SHell) is a rust implementation of a modern shell.
MIT License
0 stars 0 forks source link

Fix parsing not perfectly handling the quotation marks #19

Open cadejacobson opened 4 months ago

cadejacobson commented 4 months ago

Commands like cat ./test/unsorted.txt | grep "y" do not work but cat ./test/unsorted.txt | grep y does correctly work. Could be as simple as passing everything between the two quotes as a single string and ignoring the actual characters. Look more into.