Thread String Ausgabe vs Ausführung (6 answers)
Opened by PROXEN at 2019-11-07 19:01

PROXEN
 2019-11-07 19:35
#190851 #190851
User since
2013-07-23
21 Artikel
BenutzerIn
[default_avatar]
Ok - hier das Beispiel:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use strict;
use warnings;

print "Ausgabe am Bildschirm soll so auschauen - alles in einer Zeile:\n";
my $cmd = q{cat <<-ENDOFMESSAGE \one \ntwo \nthree \nENDOFMESSAGE};
print $cmd;
print "\n";
print "Ausgeführt muss es aber dann so werden:\n";
$cmd = qq{cat <<-ENDOFMESSAGE \none \ntwo \nthree \nENDOFMESSAGE};
print $cmd;


Ausgabe
Code: (dl )
1
2
3
4
5
6
7
8
Ausgabe am Bildschirm soll so auschauen - alles in einer Zeile:
cat <<-ENDOFMESSAGE \one \ntwo \nthree \nENDOFMESSAGE
Ausgeführt muss es aber dann so werden:
cat <<-ENDOFMESSAGE
one
two
three
ENDOFMESSAGE

View full thread String Ausgabe vs Ausführung