1
0
mirror of https://github.com/sheumann/hush.git synced 2025-03-18 01:30:36 +00:00
hush/testsuite/cat/cat-prints-a-file-and-standard-input

8 lines
106 B
Plaintext
Raw Normal View History

2001-10-30 23:11:20 +00:00
echo I WANT > foo
echo SOMETHING | busybox cat foo - >bar
cat >baz <<EOF
I WANT
SOMETHING
EOF
cmp bar baz