Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement read without -r #33

Closed
andychu opened this issue Sep 11, 2017 · 1 comment
Closed

Implement read without -r #33

andychu opened this issue Sep 11, 2017 · 1 comment

Comments

@andychu
Copy link
Contributor

andychu commented Sep 11, 2017

Reported here:

https://www.reddit.com/r/ProgrammingLanguages/comments/6z730t/please_try_the_osh_01_release/

$ read x y <<< '1\ 2 3 4'
$ echo $x
1 2
$ echo $y
3 4

$ read -r x y <<< '1\ 2 3 4'
$ echo $x
1\
$ echo $y
2 3 4
@andychu
Copy link
Contributor Author

andychu commented Jan 25, 2018

Done with 0.4.alpha1

@andychu andychu closed this as completed Jan 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant