How can I write a here document to a file in bash script?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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
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. |
|||||||
|
|
For future people who may have this issue the following format worked:
|
|||||||||
|
should do the work. Otherwize, you can consider using a temporary file using > >> and < operators. |
|||||||||||||
|
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