A form or redirection used in
shell scripts. The << operator is followed by a
character string, and until that character string is repeated everything in the file is treated as if it was being typed in on
stdin
For example:
#!/bin/sh
mail bob@domain.com << END
The mail program will act as if I
typed this with the keyboard after
running the command
'mail bob@domain.com'
END