Thread length() ergibt immer 0
(7 answers)
Opened by styx-cc at 2009-01-01 23:30
Woher weisst Du, dass $compile Inhalt hat?
Mit einer kleinen Anpassung der Printausgabe wird das sichtbar: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/perl # vi:ts=4 sw=4 et: use strict; use warnings; my $compiler = 'g++'; my $file_in = shift @ARGV; my $file_out = shift @ARGV; my $out = qx( $compiler $file_in -o $file_out ); print ">>>$out\nLength: ", length( $out ), "\n"; Code: (dl
)
1 $ perl cp.pl a.c r.x meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen! |