1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-22 16:20:23 +02:00

18836: read with metafied delimiter didn't work.

This commit is contained in:
Peter Stephenson 2003-07-09 11:04:01 +00:00
parent 9deb9a4e96
commit 2d2ce4ecc2
3 changed files with 13 additions and 1 deletions

View file

@ -63,3 +63,9 @@
0:read with timeout (no waiting should occur)
>hello
>0
print -n 'Testing the\0null hypothesis\0' |
while read -d $'\0' line; do print $line; done
0:read with null delimiter
>Testing the
>null hypothesis