Leser: 15
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;
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
1 2 3 4 5 6 7 8
$cmd = qq{cat <<-ENDOFMESSAGE \none \ntwo \nthree \nENDOFMESSAGE}; print ($cmd =~ s/\n/\\n/gr); print "\n"; # cat <<-ENDOFMESSAGE \none \ntwo \nthree \nENDOFMESSAGE print `$cmd`; # one # two # three
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
#!/usr/bin/perl use 5.020; use warnings; package PerlIO::via::NoLF { sub PUSHED { my $self= ''; bless \$self, shift; } sub FILL { my ($self, $fh) = @_; return defined $fh ? nolf(<$fh>) : undef; } sub WRITE { my ( $self, $text, $fh ) = @_; return 0 unless defined $text; return print $fh nolf($text); } sub nolf { $_[0] =~ s/\n(?!$)/\\n/gr; } } binmode STDOUT,':via(NoLF)'; my $cmd = qq{cat <<-ENDOFMESSAGE \none \ntwo \nthree \nENDOFMESSAGE}; print "Ausgabe am Bildschirm soll so auschauen - alles in einer Zeile:\n"; print $cmd; print "\n"; # cat <<-ENDOFMESSAGE \none \ntwo \nthree \nENDOFMESSAGE print "Ausgeführt muss es aber dann so werden:\n"; print `$cmd`; # one # two # three