b278d82c61
function old new delta parse_dollar_squote - 441 +441 encode_then_expand_vararg 359 380 +21 parse_stream 2252 2271 +19 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 2/0 up/down: 481/0) Total: 481 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
11 lines
245 B
Plaintext
Executable File
11 lines
245 B
Plaintext
Executable File
# Embedded NULs
|
||
echo $'str\x00'strstrstrstrstrstrstrstrstrstrstrstrstrstrstrstr
|
||
echo $'str\000'strstrstrstrstrstrstrstrstrstrstrstrstrstrstrstr
|
||
|
||
# The chars after '\' are hex 0x80,81,82...
|
||
echo 80:$'\€'
|
||
echo 81:$'\<5C>'
|
||
echo 82:$'\‚'
|
||
|
||
echo Done:$?
|