Leser: 30
2011-02-15T07:42:24 kamiAlso eine Abfrage von einem File oder so sollte es eigentlich nciht sein.
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 39 40 41 42 43 44 45 46 47
#!/usr/bin/perl use strict; use warnings; use Tools::IO::FiFo; my $file='test.fifo'; # neues FiFo Objekt my $fifo=Tools::IO::FiFo->new($file); # fifo öffnen $fifo->open() or die("ERROR create fifo $file ($!)\n"); my $cnt=0; while(1) { # print Counter print $cnt++,"\n"; # read fifo my $txt=$fifo->read(); # wenn text empfangen if($txt) { print "$txt\n"; # hier exit wenn String "quit" auftaucht last if($txt=~/quit/); } # alles andere... read_serial(); } # fifo schießen $fifo->close(); exit(); ######################################################################## sub read_serial { # dummy ... sleep(1); }
echo "quit" > test.fifo