Isn't it waiting for the EOF
in your heredoc ?
I'd expect you to say
$ mycommand <<EOF
input1
input2
...
EOF
Note that EOF
isn't a magic keyword. It's just a marker, and could be anything (ABC
etc.). It indicates the end-of-file, but people simply write EOF
as convention.