Vidyalelo
Computer Science · Q14

UNIX

Engineering and GATE · Computer Science · question 14

Q14

If you are to use [Control-c] as the interrupt key instead of [Del], then you will have to use

A.
tty ^c
B.
stty intr ^c
Answer
C.
stty echoe
D.
stty echo ^a
E.
None of the above

Answer: Option B

Solution

Answer: Option B
Solution:
In Unix, the stty command is used to change or display terminal settings. The intr option is used to specify the interrupt key, which is used to interrupt or terminate the current process. By default, the interrupt key is set to ^c, which represents Control-c. So, to use Control-c as the interrupt key, you would use the command stty intr ^c.
Therefore, Option B: stty intr ^c is the correct command to set Control-c as the interrupt key.