-
-
Notifications
You must be signed in to change notification settings - Fork 164
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
read is still line-buffered when a delimiter is specified #783
Comments
Ah good point, right now we do something special for |
So that 'read -d a' returns after the first 'a'. Addresses issue #783.
@Crestwave This is on |
OK nice! The other changes look good |
I did a basic version of |
Okay, it seems to work, although the patch isn't much smaller because I found some more uses of |
I'm honestly having trouble reproducing this in a non-interactive script (if you can, do let me know how!), but you can simply run
read -d a
and press a. In Bash,read
will immediately exit, but on OSH, it still waits for a newline. This is required to run pxltrmThe text was updated successfully, but these errors were encountered: