diff options
author | Tucker Boniface <tucker@boniface.tech> | 2018-10-02 19:19:18 -0700 |
---|---|---|
committer | Tucker Boniface <tucker@boniface.tech> | 2018-10-02 19:19:18 -0700 |
commit | 088111396a0dff9a5dff7837e1ae74aa9314b620 (patch) | |
tree | cf0cdbfc21f93ab0472bf235868f98f4f19d71a7 | |
parent | 67f785f10212ca827f25c83cfaa9dddc607a35c6 (diff) |
[bash/en] clarify quoted delimiter for heredocs (fixes #3061)
-rw-r--r-- | bash.html.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index cb805da7..1f59636e 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -256,6 +256,7 @@ print("#stderr", file=sys.stderr) for line in sys.stdin: print(line, file=sys.stdout) EOF +# Variables will be expanded if the first "EOF" is not quoted # Run the hello.py Python script with various stdin, stdout, and # stderr redirections: |