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

Damien Miller <d...@mindrot.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |d...@mindrot.org
         Resolution|---                         |WORKSFORME

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

E.g.

[djm@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@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.
_______________________________________________
openssh-bugs mailing list
openssh-bugs@mindrot.org
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to