http://qs321.pair.com?node_id=1214736

morgon has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

as a (contrieved) example that catches SIGINT consider this:

$SIG{INT} = sub { print STDERR "*"; }; while(1) { sleep(1); print STDERR "."; }
When I run this in bash and press Control-C to generate a signal I get the star printed, but I also get a "^C" in the output and I don't understand where this is coming from.

So the output looks like

.....^C*...^C*....^C*..
Where do these "^C"s come from? Is this the shell, the terminal or what? And is there a way to supress that from within a perl-script?

Many thanks!

Replies are listed 'Best First'.
Re: signal handler output
by hippo (Bishop) on May 17, 2018 at 13:31 UTC
    Is this the shell, the terminal or what?

    It's the shell controlling the terminal. Here's what happens in bash if I interrupt both these commands:

    $ sleep 30 ^C $ stty -ctlecho; sleep 30 $

    As for perl, I expect IO::Stty might be able to do it but I've never used it for that.

      Not the shell, it's the tty driver itself. For linux, that would be n_tty_receive_char() in drivers/tty/n_tty.c. Upon receiving the control char, it optionally echoes it.