You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that ksh supports null-terminated read, it would be convenient to have a single option to trigger it, rather than having to remember to set three different things correctly. I suggest that a -Z option be added to read which would set IFS to the empty string for the duration of the command and have the same effect as using the -r and -d '' options. (I chose -Z since -z is already used by zsh's read for something else; -Z is currently unused in both bash and zsh.)
The text was updated successfully, but these errors were encountered:
Now that ksh supports null-terminated
read
, it would be convenient to have a single option to trigger it, rather than having to remember to set three different things correctly. I suggest that a-Z
option be added toread
which would setIFS
to the empty string for the duration of the command and have the same effect as using the-r
and-d ''
options. (I chose-Z
since-z
is already used by zsh'sread
for something else;-Z
is currently unused in both bash and zsh.)The text was updated successfully, but these errors were encountered: