lib/scripts/feeder.pl
author wenzelm
Sat, 08 Oct 2005 23:43:14 +0200
changeset 17807 cc5dbc24e561
parent 14981 e73f8140af78
child 29145 b1c6f4563df7
permissions -rw-r--r--
get rid of feeder -- at the cost of batch-only commit-at-exit; redirect stderr to stdout;

#
# $Id$
# Author: Markus Wenzel, TU Muenchen
#
# feeder.pl - feed isabelle session
#

# args

($head, $emitpid, $quit, $tail) = @ARGV;


# setup signal handlers

sub hangup { exit(0); }
$SIG{'HUP'} = "hangup";
$SIG{'INT'} = "IGNORE";


# main

#buffer lines
$| = 1;


$emitpid && (print $$, "\n");

$head && (print "$head", "\n");

if (!$quit) {
    while (<STDIN>) {
	print;
    }
}

$tail && (print "$tail", "\n");


# wait forever

close STDOUT;
sleep;