1
2
3
4
5
6
7
my $command="/usr/bin/testscript
open(my $cmd,'-|',$command);
my $line="";
while ($line = <$cmd>)
{
print $line . "\n";
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
use Time::HiRes qw ( setitimer ITIMER_VIRTUAL time ); my $timer_all_seconds = 60; # alle 60 Sekunden # Ausgabefunktion bei Ablauf des Timers my $prline; my $print_line_sub = sub { print $prline, "\n"; }; # Timersignal zuweisen $SIG{VTALRM} = $print_line_sub; # Timer setzen (nach 1 Sekunde alle $timer_all_seconds) setitimer(ITIMER_VIRTUAL, 1, $timer_all_seconds); my $command="/usr/bin/testscript open(my $cmd,'-|',$command); my $line=""; while ($line = <$cmd>) { $prline = $line; # aktuelle Zeile für Timer sichern #print $line . "\n"; # Ausgabe nun im Timer }
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
our $debug = 1;
my $timer = 10;
sub debug
{
if ( $debug == "1" )
{
my $text = shift;
print $text;
}
else
{
return 0;
}
}
my $prline;
my $print_line_sub = sub {
debug ("timer triggered, running print_line_sub\n");
print $prline;
};
# run command and capture output (reporting to backend)
# init timer
$SIG{VTALRM} = $print_line_sub;
setitimer(ITIMER_VIRTUAL,1,$timer);
open(my $cmd,'-|',"./test.script");
my $line="";
while ($line = <$cmd>)
{
$prline = $line;
}
1
2
3
4
5
6
7
8
9
#!/bin/bash
START=0
END=1325
COUNTER=0
while [ $COUNTER -lt $END ]; do
PERC=$(echo "scale=2; $COUNTER / $END * 100" | bc)
echo "The counter is $COUNTER ($PERC %)"
let COUNTER=COUNTER+1
sleep 0.1
1
2
3
4
5
6
#!/usr/bin/perl
use Time::HiRes qw ( setitimer ITIMER_VIRTUAL time );
$SIG{VTALRM} = sub { print time, "\n" };
setitimer(ITIMER_VIRTUAL, 10, 2.5);
sleep 100
1
2
root@broadcast:~# uname -a
Linux broadcast 3.2.0-33-generic #52-Ubuntu SMP Thu Oct 18 16:29:15 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
2012-12-30T13:12:40 errorsmithGrundsätzlich möchte ich allerdings mein Programm nicht kontrollieren, ich möchte lediglich die Ausgabe auf STDOUT in regelmäßigen Abständen einlesen.
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
#! /usr/bin/env perl use strict; use warnings; # Dieser Ansatz hat den Nachteil, dass, wenn lange Zeit keine Zeile # ausgegeben wird, die while-Schleife "haengt" und auf die naechste # zu lesende Zeile wartet; da ist egal, wieviel Zeit verstrichen ist. my $command = '/bin/bash /tmp/testscript'; # Zeitstempel, wann das Skript gestartet wurde my $starttime = $^T; # Ausgabe soll alle $delta Sekunden erfolgen my $delta = 6; open( my $pipe, '-|', $command ) or die "Could not open pipe from '$command': $!\n"; # Zum Start geben wir die erste gelesene Zeile aus print scalar <$pipe>; # Zeilenweise lesen while ( my $line = <$pipe> ) { # pro Zeile aktuellen Zeitstempel holen my $now = time(); # wenn mehr als $delta vergangen ist, Zeile ausgeben if ( $now - $starttime >= $delta ) { printf "%s", $line; # Startzeit anpassen, damit die Differenz für den # naechsten Check wieder passt $starttime += $delta; } } __END__