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:...