Hi,
the red text you refer to is called the construction of a 'here-document' in UNIX. It consists of a command where between tags the input is specified on the shell commandline. In general:
Code:
$ command <<INPUT
$ ...
$ ...
$ INPUT
Ofcourse this can also be specified in a shellscript. This makes it possible to redirect the output of the command to a logfile.
Regards,
Hans