[Bug 3550] Key Conflict

bugzilla-daemon at mindrot.org bugzilla-daemon at mindrot.org
Mon Mar 20 16:22:30 AEDT 2023


https://bugzilla.mindrot.org/show_bug.cgi?id=3550

Damien Miller <djm at mindrot.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |djm at mindrot.org
         Resolution|---                         |WORKSFORME

--- Comment #1 from Damien Miller <djm at mindrot.org> ---
You can use stty(1) to control the terminal's interpretation of ^C

E.g.

[djm at djm ~]$ ssh -t test "stty -isig; echo go; sleep 5; echo ok"
go
^C^C^C^C^C^C^C^C^Cok
Connection to test closed.

Without -isig, the ^C results in a SIGINT:

[djm at djm ~]$ ssh -t test "echo go; sleep 5; echo ok"go
^CConnection to test.mindrot.org closed.

-- 
You are receiving this mail because:
You are watching someone on the CC list of the bug.
You are watching the assignee of the bug.


More information about the openssh-bugs mailing list