diff options
Diffstat (limited to 'Test')
-rw-r--r-- | Test/B04read.ztst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Test/B04read.ztst b/Test/B04read.ztst index 5efbf24ca..d6b7ce0b1 100644 --- a/Test/B04read.ztst +++ b/Test/B04read.ztst @@ -69,3 +69,10 @@ 0:read with null delimiter >Testing the >null hypothesis + +# Note that trailing NULLs are not stripped even if they are in +# $IFS; only whitespace characters contained in $IFS are stripped. + print -n $'Aaargh, I hate nulls.\0\0\0' | read line + print ${#line} +0:read with trailing metafied characters +>24 |