author | blanchet |
Sun, 01 May 2011 18:37:25 +0200 | |
changeset 42586 | 59e0ca92bb0b |
parent 41616 | aa002926cbf1 |
child 47868 | 32c03d45fffe |
permissions | -rw-r--r-- |
# # 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"); if ($head) { utf8::upgrade($head); $head =~ s/([\x80-\xff])/\\${\(ord($1))}/g; print $head, "\n"; } if (!$quit) { while (<STDIN>) { print; } } $tail && (print "$tail", "\n"); # wait forever close STDOUT; sleep;