mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
function old new delta parse_stream 2609 2634 +25 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
14 lines
130 B
Text
Executable file
14 lines
130 B
Text
Executable file
unset a
|
|
|
|
# Heredoc with empty delimiter
|
|
cat <<- ""
|
|
OK1
|
|
|
|
echo Ok:$?
|
|
|
|
# Heredoc with empty delimiter
|
|
cat <<- ""
|
|
OK2
|
|
|
|
|
|
echo Ok:$?
|