mirror of
https://github.com/sheumann/hush.git
synced 2025-01-27 06:34:03 +00:00
10 lines
104 B
Plaintext
10 lines
104 B
Plaintext
|
echo hello >greeting
|
||
|
cat <<EOF &&
|
||
|
$(cat greeting)
|
||
|
EOF
|
||
|
{
|
||
|
echo $?
|
||
|
cat greeting
|
||
|
} >/dev/null
|
||
|
rm greeting
|