mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
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
|