raspite / rsh

The main repo for the raspite shell (rsh)
Apache License 2.0
3 stars 1 forks source link

parse_args: Correctly handle newlines #11

Closed with-heart closed 7 years ago

with-heart commented 7 years ago

Example of problem:

Typing "echo" and pressing return results in argv: ["echo\n"].

chasinglogic commented 7 years ago

we're going to need to include the regex crate at some point anyway, perhaps we should use it here to just replace('\n$', '') ?

with-heart commented 7 years ago

Completed in #38