NovaAndrom3da / BrowserLinux

A web application aiming to give a linux environment to the browser.
MIT License
13 stars 0 forks source link

Issues with piped commands following `vmsh` #1

Open NovaAndrom3da opened 2 years ago

NovaAndrom3da commented 2 years ago

If more than one pipe is used in a command, the command will have issues running.

NovaAndrom3da commented 2 years ago

It seems that this only occurrs if vmsh is one of the subcommands.

NovaAndrom3da commented 2 years ago

echo text | echo | echo | echo does not have any problems, and echo echo text | vmsh has no issues, but echo echo echo text | vmsh | vmsh has issues.

NovaAndrom3da commented 2 years ago

Even a simple command such as vmsh help | echo has issues

NovaAndrom3da commented 2 years ago

I am unsure of what even causes this. It could possibly be the recursion of running parse('help') (vmsh help) inside of parse('vmsh help | echo') (vmsh help | echo)

NovaAndrom3da commented 2 years ago

This will be fixed with the implimentation of browsix's command parsing system.