author | wenzelm |
Fri, 19 Aug 2005 10:50:05 +0200 | |
changeset 17125 | e6a82d1a1829 |
parent 14981 | e73f8140af78 |
child 29145 | b1c6f4563df7 |
permissions | -rw-r--r-- |
# # $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;