On linux, you'd use
$ stty intr undef
on the terminal concerned. That sets the interrupt character to nothing ("undef"). To restore you would use
$ stty intr ^c
See `man stty` for details.
On linux, you'd use
$ stty intr undef
on the terminal concerned. That sets the interrupt character to nothing ("undef"). To restore you would use
$ stty intr ^c
See `man stty` for details.