-
Notifications
You must be signed in to change notification settings - Fork 41
Closed
Labels
bugSomething is not workingSomething is not working
Description
Description:
In ksh versions later than v1.0.0-beta.1, setting stty -echo in a script no longer works as expected. This issue did not occur in earlier versions.
Bisected Commit:
I performed a git bisect between the last known good tag (reboot) and the first known bad tag (v1.0.0-beta.1). The regression was introduced in commit 41ebb55a3a9133f58cf3cc1c47e83bb5dc11404e.
Reproducer:
Create a script e.g. repro.ksh with the following contents:
#!/bin/ksh
read a
stty -echo
read bRun the script:
ksh repro.kshExpected Behavior:
- Input for
ashould be visible. - Input for
bshould not be echoed to the terminal.
Actual Behavior:
- Input for
ais visible as expected. - Input for
bis also visible, despitestty -echobeing set.
Metadata
Metadata
Assignees
Labels
bugSomething is not workingSomething is not working