Thread Problem mit WWW::Mechanize: oder was anderem ;) (18 answers)
Opened by FlorianL at 2007-06-30 21:35

renee
 2007-07-02 17:26
#37596 #37596
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ein
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

$|++;

my $counter = 0;

START:
  print ++$counter,"\r";
  sleep 1;
  goto START;
kannst Du ersetzen durch
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

$|++;

my $counter = 0;

while(1){
  print ++$counter,"\r";
  sleep 1;
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Problem mit WWW::Mechanize: oder was anderem ;)