Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I write a here document to a file in bash script?

share|improve this question
12  
I wish I could downvote comments: SO is explicitly about all questions, no matter how simple you might think they are. – glenn jackman Jun 2 '10 at 0:09
2  
@S.Lott : Even answering basic questions will contribute to the learning aspect of these sites. – Stefan Lasiewski Jun 3 '10 at 3:58
2  
I was not aware of there was a man command page for here docs (I thought they were only for cat,echo,etc.). I did look extensively around google, I did come accross the bash scripting guide below in another comment, but missed the section on it. I apologize. I was not able to find it as trivial as it might be, so I came here to ask :) I looked at the man page - it didn't have anything relating to file I/O with here docs atleast using this one: ss64.com/bash/syntax-here.html – Joshua Enfield Jun 7 '10 at 18:04
11  
@S.Lott It might be trivial, it might be well documented but Google eventually led me here and answered my question quickly. That is the purpose of this site, no? – Sarge Jul 21 '11 at 3:08
2  
@Sarge: "That is the purpose of this site". Partially. There's a limit. bash (and numerous applications) have their own documentation which is always correct, always current and actively maintained. The data here will (eventually) get out of date, making it less useful than the proper documentation that comes with bash and is maintained by the folks that maintain bash. This is (like wikipedia) a secondary source at best. At worst, it's opinion and rumors. It's not authoritative. – S.Lott Jul 21 '11 at 11:12
show 2 more comments

3 Answers

up vote 59 down vote accepted

Read the Advanced Bash-Scripting Guide Chapter 19. Here Documents.

Here's another example, which will write the contents to a file at /tmp/yourfilehere

cat << 'EOF' > /tmp/yourfilehere
These contents will be written to the file.
EOF

Note that the final 'EOF' (The 'LimitString ') should not have any whitespace in front of the word, because it means that the LimitString will not be recognized.

share|improve this answer
1  
Thank you for your reply. – Joshua Enfield Jun 7 '10 at 17:52
You don't even need Bash, this feature is in the Bourne/Korn/POSIX shells too. – Janus Troelsen May 1 at 17:24

For future people who may have this issue the following format worked:

cat <<- _EOF_
        LogFile /var/log/clamd.log
        LogTime yes
        DatabaseDirectory /var/lib/clamav
        LocalSocket /tmp/clamd.socket
        TCPAddr 127.0.0.1
        SelfCheck 1020
        ScanPDF yes
        _EOF_
 > /etc/clamd.conf
share|improve this answer
3  
Don't need the parentheses: cat << END > afile followed by the heredoc works perfectly well. – glenn jackman Jun 2 '10 at 0:12
Thanks, this actually solved another issue I ran into. After a few here docs there was some issues. I think it had to do with the parens, as with the advice above it fixed it. – Joshua Enfield Jun 7 '10 at 17:53
This won't work. The output redirection needs to be at the end of the line which starts with cat as shown in the accepted answer. – Dennis Williamson May 1 at 20:07
#!/bin/bash
wall <<stuffhere
hello everybody, reboot in 5 minutes
stuffhere

should do the work. Otherwize, you can consider using a temporary file using > >> and < operators.

share|improve this answer
This just sends it to all logged in users, doesn't it? I need to write the here doc to a file lets say X. The > (and related) operators don't work when placed after the here doc. – Joshua Enfield Jun 1 '10 at 20:35
it was just an example with a given command – Aif Jun 1 '10 at 21:05
5  
This does not even come close to answering the question. – Dennis Williamson Jun 2 '10 at 4:21
@DennisWilliamson: How is it not close? It shows the heredoc syntax. You only need to know this and output redirection. It's better to keep the features separated in documentation. – Janus Troelsen May 1 at 17:27
@JanusTroelsen: It's not obvious that the output redirection needs to be on the same line as the cat. "Not even close" may be too strong. "Incomplete" might be a better description. – Dennis Williamson May 1 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.