nixpulvis / oursh

Your comrade through the perilous world of UNIX.
http://nixpulvis.com/oursh/oursh
MIT License
67 stars 6 forks source link

Compund Commands are Slightly Wrong #10

Closed nixpulvis closed 5 years ago

nixpulvis commented 5 years ago

We currently parse { date } and { sleep 1; date }, but we shouldn't, and instead we should parse { date; } and { sleep 1; date; }.

nixpulvis commented 5 years ago

This is partially addressed now. We properly parse { ls; }, but still fail to parse { sleep 1; date; }.