A Here-document is a special syntax of writing literal strings in sourcecode, used by different programming languages.

learn more… | top users | synonyms

4
votes
2answers
37 views

pipe here document command to log file

Quite often I'll use the following construct to pipe output to a log file, keeping the output also on the display ./command 2>&1 | tee output.log I'm trying to do something similar, but with ...
0
votes
1answer
28 views

Executing a set of commands inside a new bash instance from as script

I'm trying execute a set of commands in a new bash session: exec bash <<- EOF ln -snf $JDK_REPO'/jdk'$1 $CURRENT; JAVA_HOME=$(readlink -f $CURRENT); echo $JAVA_HOME; export PATH= ...
1
vote
3answers
47 views

How to have a shell script that unpacks several files when executed?

I would like to have several text files within my shell script file that unpack into a directory once the script is executed. I've been getting by with 'here-doc' solutions that look like this: ...
1
vote
1answer
39 views

How can I replace named vars in a string in python from an incomplete dictionary?

I have a long html form I'm retriving data from and then populating in an html document and emailing it. I'm using form = cgi.FieldStorage() to get the data posted from my form and then I have a ...
0
votes
1answer
45 views

Making an alias for SSH MySQL login using ENDSSH heredoc

I want to make an alias that is kept in my bashrc file to log into a remote MySQL db via SSH. Assume that I can't add/alter any files on the remote machine that I'm SSHing into. Here's the relevant ...
0
votes
2answers
73 views

heredoc syntax for multi-line perl using stdin from bash

How to pass file to perl script for processing and also use heredoc syntax for multi-line perl script? I have tried those but no luck: cat ng.input | perl -nae <<EOF if (@F==2) {print $F[0] . ...
0
votes
3answers
20 views

HEREDOC error for text inclusion in a mail function [closed]

I am using HEREDOC to include some text into the body of a mail PHP function. However, I get this error: "PHP Parse error: syntax error, unexpected T_SL in..." The errors refers to the HEREDOC ...
-1
votes
1answer
46 views

PHP Multi-line string with Heredoc [closed]

I'm working on a project for school. I'm trying to use Heredoc to print the output of a MySQL query into a table using the following code: while($row = mysql_fetch_array($result)) { echo ...
1
vote
2answers
37 views

Heredoc is not preserving text literally as I'm told it should

I've just started the O'Reilly book on PHP, MySQL and JavaScript and I've just got to the stage where I learn about heredocs. It says in the book they preserve text literally, however mine doesn't at ...
0
votes
1answer
86 views

PHP While Loop - Writing to Variable Multiple Times With Heredoc

I am writing a script to pull from the database and dynamically create a table of items. The loop I am using breaks everytime I try to increment a varible. Here is an example with the same result: ...
0
votes
1answer
67 views

JQuery inside here-doc not working

Is it possible to include JQuery in the here-doc section of perl. I tried but no success. Here is my code. my $cgi = CGI->new();print header();print start_html("JQuery in perl"); print ...
-3
votes
2answers
60 views

how to pass $_POST variable inside heredoc

I'm creating some codes will generate a new page with configuration class.I used heredoc like bellow.So i want to pass $_POST['hostname'] varibles into the heredoc.I tried lotof but no luck.Can you ...
2
votes
1answer
45 views

Line breaks are not shown in heredoc

I have a heredoc string html =<<EOF <span> Hello hello 123 </span> <a>Link1</a> <a>Link2Link2</a> EOF If I say puts html, it will ...
-1
votes
2answers
92 views

Why is my Perl script giving the error “Can't find string terminator ” _HTML_“ anywhere before EOF”?

Hi I have just added an IF condition into my source and since then i am getting the error "Can't find string terminator _HTML_ anywhere before EOF " But it works if I remove the IF I am new to ...
0
votes
0answers
57 views

Stop automatic indent for certain lines in sublime text snippets? [closed]

Is there a way in sublime text to make it so that snippets, or parts of snippets are not automatically indented with the rest of the text? My example is this: <snippet> ...
4
votes
4answers
313 views

/dev/stdin with herestring

I would like a Bash script that can take input from a file or stdin, much like grep, for example $ cat hw.txt Hello world $ grep wor hw.txt Hello world $ echo 'Hello world' | grep wor Hello world ...
2
votes
1answer
63 views

here-document that disables shell parsing

I need a here document for uploading TeX to an online shell. I don't want the shell to do anything with the contents. The following MWE is the best I have managed so far. cat << EOF > ...
2
votes
1answer
87 views

</script> in PHP heredoc

Why I am not able to end a javascript inside a PHP heredoc? The rest of the code below this line: </script> become not part of PHP's code. They become HTML code. It is like the end script ...
1
vote
1answer
142 views

Is there heredoc alternative in Java (heredoc as PHP)?

For JAVA development I need writing to a files with strings like "\r\t\n <>", because from Java I want writing a PHP file. If you can't understand look at this example: BufferedWriter buffW = new ...
1
vote
2answers
32 views

Error with php heredoc

I have a problem with php heredoc. I'm trying to do something like this. $heredoc = <<<_HERE This is the way I try to use the heredoc, but apparently something is going wrong _HERE; ...
2
votes
1answer
45 views

How to output Bash heredoc blocks using PHP heredoc

I need to display a bash script on a webpage without any formatting. The bash script uses standard 'here document' blocks. When I try to output the script using the PHP heredoc function, it cuts off ...
0
votes
2answers
28 views

why does all the text get printed on the same line? [duplicate]

Possible Duplicate: Have I misunderstood what heredoc should do? I read that Here document preserves the line breaks and other whitespace (including indentation) in the text. But when I run ...
0
votes
1answer
98 views

Here document not executed in subshell in crontab

I have a script that works well from the prompt but not from crontab. The only thing that is broken is a here document ignored in a subshell in the script. The script uses psftp. Here is the code: ...
6
votes
4answers
113 views

Why generate simple HTML via PHP heredoc? [closed]

I have inherited a website for which I need to make some changes. As always there are many ways to do things in website development. However, this particular site has me confused. All the html is ...
0
votes
2answers
58 views

Concatenating Content between Heredoc Tags

I am converting some formatted html text to a PDF file, and in doing so, I must place a table in the document. In order to put the table into the PDF correctly, I must use heredoc tags instead of ...
0
votes
1answer
56 views

Php nowdoc (heredoc without parsing) is interpreting HTML Markup Characters - Not Desireable

I have PHP that looks like this: $func_code = <<<'EOT' foo1 foo2 '<foo3>'. foo4 . '</div>'; EOT; echo $func_code; And the output looks like this: one_half foo1 foo2 ''. ...
1
vote
3answers
435 views

Shell script to automate SonicWall firewall SSH session not working

I'm trying to write a shell script (Bash) to log into a SonicWall firewall device and issue a command to perform automated backups of the devices ruleset. I prefer to do this in Bash but I will accept ...
-2
votes
2answers
76 views

PHP: echo heredoc from another script

I am having trouble echoing out heredoc statements from one php file into another. I have one script which is used to retrieve API database information and then format that information into a heredoc ...
2
votes
1answer
276 views

PHP equivalent to python's triple-quotes - How to print bulk / lots of HTML within PHP without escaping [duplicate]

Possible Duplicate: php string escaping like python’s “”“ ”“”? The triple-quotes in python escapes all quotes and newlines contained within. For example, """ this is all just one string. ...
0
votes
2answers
99 views

PHP Why Can't EOM contain PHP functions? [duplicate]

Possible Duplicate: Calling PHP functions within HEREDOC strings I am using Swiftmailer PHP to create an order complete page. When the customer lands on this page, I use an include to a PHP ...
1
vote
1answer
39 views

cannot access array in heredoc [closed]

Why is this code giving an error on the line where I try to access $sector_value['sector_info']['purchase_order'];? But not in the fifth line where I print out the variable $sector_counter? //SECTOR ...
3
votes
2answers
277 views

Heredoc string and TCPDF to build dynamic PDF

I am attempting to build a PDF based on the information in a database that I have. I am getting a 500 internal server error when I do. The code that is throwing the error is: <?php ...
2
votes
2answers
96 views

Clean way to build long strings in Ruby

When writing Ruby (client scripts) I see three ways to build longer strings, including line-endings, all of which "smell" kind of ugly to me. Are there any cleaner and nicer ways? The ...
0
votes
1answer
126 views

How to pass an asterisk into bash heredoc?

I execute a MySQL statement with an asterisk from within a bash shell: query=`cat <<EndOfMySQL INSERT tmp_table SELECT * FROM table ; EndOfMySQL ` echo $query echo $query | mysql database ...
1
vote
1answer
148 views

Is nesting of Here Document possible in a unix bash script?

Is it possible to write a heredoc within another heredoc ? ssh -T -q yxz@server1 <<-"END_TEXT" . . ssh -T -q abc@server2 <<-"SUB_TEXT" . . SUB_TEXT . . END_TEXT Thanks ...
2
votes
1answer
86 views

PHP eval and heredoc don't play nicely [duplicate]

Possible Duplicate: heredoc with eval code execution So I have the following in function.php: eval("\$content = <<<TEMPLATE\n asdf \nTEMPLATE;"); And I keep ...
0
votes
1answer
63 views

heredoc script issue with gdb

I want to write a shell script to help me start gdb and input some commands which I don't want to input by myself, how should I do that? I tried the heredoc below, but it doesn't work, what did I do ...
1
vote
3answers
117 views

PHP EOT Error Message [closed]

I got a message when i run this following code.. function print_footer(){ global $file; echo <<<EOT <center> <a href="$file?op=vote"> Vote </a> | <a ...
0
votes
2answers
67 views

Class function echos output inside heredoc string, but in wrong place

I'm trying to use a heredoc string in one section of my script, and inside this heredoc string is a function from inside a class that inputs some dynamic bit of stuff. The function outputs the code ...
1
vote
2answers
72 views

How can I expand a static class variable from within a PHP heredoc expression?

I'm trying to get a static class variable to expand/resolve inside of a HEREDOC expression within a class constructor, but I cannot find a way to make it work. Please see my very simplified example ...
0
votes
0answers
48 views

using static::member->method inside HEREDOC [PHP]

static public function toolBar() { var_dump(static::$_lang); var_dump(static::$_lang->getVal('Index')); return <<< EOC <a ...
1
vote
2answers
186 views

Perl Here-Document Frustrations

I seem to be having a hard time getting my here-document to work properly. I have a chunk of text that I need stuffed into a variable and remain un-interpolated. Here's what I have: my $move_func ...
0
votes
2answers
84 views

Use return value of function call in PHP heredoc in Yii?

I'm trying to html encode a string that will be used as a tooltip in a google map. $cs = Yii::app()->getClientScript(); $cs->registerScript('someID', <<<EOD function mapsetup() { ...
0
votes
1answer
1k views

Bash: warning: here-document at line delimited by end-of-file (wanted `EOF')

The following function in bash comes up with the error mentioned in the title. The error usually appears when the final 'EOF' is not at the beginning of the line. EOF is at the beginning so I can't ...
1
vote
2answers
254 views

What does <<DESC mean in ruby?

I am learning Ruby, and in the book I use, there is an example code like this #... restaurant = Restaurant.new restaurant.name = "Mediterrano" restaurant.description = <<DESC One of the best ...
7
votes
1answer
203 views

PyCharm autocomplete, list of types

How I can tell with Docstring to PyCharm that return type is the list of SomeClass instances? Tried out: @rtype [SomeClass], but it acts only as list.
0
votes
1answer
165 views

Get Netbeans to recogzine HTML tags in PHP HEREDOC

I've tried Googling this, but I cannot find any information on it. Is there a way to get Netbeans to recognize the HTML tags inside HEREDOC as HTML tags? For example, if I do: echo ...
1
vote
3answers
237 views

How do I remove leading whitespace from a Ruby Heredoc, while maintaing 2 leading spaces

This question is partly answered in How do I remove leading whitespace chars from Ruby HEREDOC? In Rails 3 there is a method #strip_heredoc, that strips all whitespace. But when inserting lines in an ...
2
votes
2answers
173 views

Seeking general advice: is there a better way to echo dynamic HTML than heredoc? (smarty / php / html)

Project: To create dynamic multi page form that populates the fields in different ways depending on various situations. Context: Using CMSMS and Smarty tags to insert PHP into the requried pages. ...
1
vote
3answers
426 views

PHP heredoc syntax

I was wondering whether: $foo = <<< EOT Hello, World! EOT; is just as valid as $foo = <<<EOT Hello, World! EOT; and in particular whether this is true in all versions of PHP ...

1 2 3 4 5