Est-il possible d'insérer un heredoc dans une fonction bash?
L'exemple trivial ci-dessous entraîne une erreur: ./heredoc_in_function.sh: 10: Syntax error: end of file unexpected (expecting "}")
#!/bin/sh
my_function () {
cat <<HEREDOC
heredoc contents
HEREDOC
}
my_function
Environnement:
- Ubuntu 11.04 (GNU / Linux 2.6.38-8-serveur x86_64)
- GNU bash, version 4.2.8 (1) -release (x86_64-pc-linux-gnu)