xref: /freebsd/bin/sh/tests/parser/dollar-quote8.0 (revision 783d3ff6d7fae619db8a7990b8a6387de0c677b5)
1
2[ $'hello\0' = hello ]
3[ $'hello\0world' = hello ]
4[ $'hello\0'$'world' = helloworld ]
5[ $'hello\000' = hello ]
6[ $'hello\000world' = hello ]
7[ $'hello\000'$'world' = helloworld ]
8[ $'hello\x00' = hello ]
9[ $'hello\x00world' = hello ]
10[ $'hello\x00'$'world' = helloworld ]
11