È possibile inserire un heredoc all'interno di una funzione bash?
L'esempio banale di seguito genera un errore: ./heredoc_in_function.sh: 10: Syntax error: end of file unexpected (expecting "}")
#!/bin/sh
my_function () {
cat <<HEREDOC
heredoc contents
HEREDOC
}
my_function
Ambiente:
- Ubuntu 11.04 (GNU / Linux 2.6.38-8-server x86_64)
- GNU bash, versione 4.2.8 (1) -release (x86_64-pc-linux-gnu)