Thread Mail senden unter Unix
(6 answers)
Opened by v0id at 2005-10-05 11:52
http://perl-tutor.de/cgi-bin/perl_tipps.pl#Program...
Das kannst du dir ja mal ansehen. Da wird mit einer Pipe ein beliebiges Programm mit beliebig vielen Parametern gestartet und ich bekomm schön agnezeigt, wie lange es läuft. Die Ausgabe willst du wohl nicht haben, aber vielleicht hilft dir die Pipe ja. http://perl-tutor.de/cgi-bin/perl_tipps.pl#PipeRead http://perl-tutor.de/cgi-bin/perl_tipps.pl#PipeWrite perl -Mstrict -Mwarnings -e 'package blub; sub new { bless {} } sub bar {my $self=shift; $self->{bla}="5065726c2d436f6d6d756e697479"; return $self->{bla};} my $foo=blub->new();print "Hallo ";print pack("H*",$foo->bar()); print "\n"'
http://perl-tutor.de |