Thread Problem mit system()-Befehl (16 answers)
Opened by daniel at 2010-07-14 09:02

fw
 2010-07-14 10:21
#139782 #139782
User since
2010-07-04
5 Artikel
BenutzerIn
[default_avatar]
... bis auf zwei Ausnahmen:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
use warnings; use strict;

for ( 32 .. 126 ) {
    my $str = "\\" . chr;
    my $esc = eval "'$str'";
    print "$str => $esc" if $str ne $esc;
}
__END__
\' => '
\\ => \

View full thread Problem mit system()-Befehl