mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
function old new delta parse_stream 2759 2787 +28 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
9 lines
104 B
Text
Executable file
9 lines
104 B
Text
Executable file
echo hello >greeting
|
|
cat <<EOF &&
|
|
$(cat greeting)
|
|
EOF
|
|
{
|
|
echo $?
|
|
cat greeting
|
|
} >/dev/null
|
|
rm greeting
|