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>
9 lines
181 B
Plaintext
Executable File
9 lines
181 B
Plaintext
Executable File
echo $'a\tb'
|
|
echo "$'a\tb'"
|
|
echo $'a\nb' $'c\nd''ef'
|
|
echo $'a\'b' $'c\"d' $'e\\f'
|
|
echo $'a\63b' $'c\063b' $'e\0633f'
|
|
echo $'a\80b' $'c\608b'
|
|
echo $'a\x33b' $'c\x330b'
|
|
echo $'x\x9y'
|