Files
bash/tests/heredoc.right
T
2009-09-12 16:47:02 +00:00

64 lines
551 B
Plaintext

there
one - alpha
two - beta
three - gamma
hi\
there$a
stuff
hi\
there
EO\
F
hi
hi
tab 1
tab 2
tab 3
abc
def ghi
jkl mno
fff is a function
fff ()
{
ed /tmp/foo > /dev/null <<ENDOFINPUT
/^name/d
w
q
ENDOFINPUT
aa=1
}
fff is a function
fff ()
{
ed /tmp/foo > /dev/null <<ENDOFINPUT
/^name/d
w
q
ENDOFINPUT
aa=1
}
foo is a function
foo ()
{
echo;
cat <<END
bar
END
cat <<EOF
qux
EOF
}
bar
qux
bar
qux
./heredoc.tests: line 96: warning: here-document at line 94 delimited by end-of-file (wanted `EOF')
hi
there