Computer Science - Unix - Discussion

Discussion Forum : Unix - Section 1 (Q.No. 14)
14.
If you are to use [Control-c] as the interrupt key instead of [Del], then you will have to use
tty ^c
stty intr \^c
stty echoe
stty echo \^a
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
3 comments Page 1 of 1.

Sandeep said:   1 decade ago
stty kill '^X' intr '^C'

sets the delete-line character to ^X (Ctrl-X) and the interrupt
character to ^C. This command is usually found in the .login or
.profile file so that ^X and ^C need not be set by the user at each
login session.

Anshuman said:   1 decade ago
Can any one justify this answer?

Bhanu said:   1 decade ago
Give the description of the answer.

Post your comments here:

Your comments will be displayed after verification.