- In Bash, I learned that the ending signal can be changed by here document. But by default how can I signal the end of
stdininput? - I happened to find that with
catandchardet, theirstdininputs can be signaled as finished by Ctrl+D. But I seems to remember that Ctrl+D and Ctrl+C are similar to ending execution of a running command. So am I wrong?
3 Answers
Ctrl+D, when typed at the start of a line on a terminal, signifies the end of the input. This is not a signal in the unix sense: when an application is reading from the terminal and the user presses Ctrl+D, the application is notified that the end of the file has been reached (just like if it was reading from a file and had passed the last byte).
Ctrl+C does send a signal, SIGINT. By default SIGINT (the interrupt signal) kills the foreground application, but the application can catch the signal and react in some different way (for example, the shell itself catches the signal and aborts the line you've begun typing, but it doesn't exit, it shows a new prompt and waits for a new command line).
You can change the characters associated with end-of-file and SIGINT with the stty command, e.g. stty eof a would make a the end-of-file character, and stty intr ^- would disable the SIGINT character. This is rarely useful.
- 333,661
- 829,060
Your second point lumps two completely different things together.
- Ctrl+C sends a kill signal to the running process.
- Ctrl+D sends an End of Transmission character.
You are looking for the latter.
- 67,283
- 35
- 116
- 255
- 70,105
-
14Potential for confusion here: from the application perspective, no any actual character is sent for ^D. Which means that the application doesn't recieve that character from the
read(2)syscall. – ulidtko Jan 22 '13 at 17:59
I encountered this while searching for other information. The answers provided are correct but I think too involved with the internal workings.
The simple, non-technical, answer is that Ctrl+D terminates the STDIN file and that Ctrl+C terminates the active application.
Both are handled in the keyboard driver and apply to all programs reading from the keyboard.
To see the difference start a command line shell and enter the wc command with no arguments. It is now waiting for STDIN input. Type a sentence and "return". Now type Ctrl+D and wc will complete and give you the line, word and character count.
Do the same thing but type Ctrl+C. wc will terminate with no output.
- 1,667
- 21
-
I do not think that either
Ctrl+DandCtrl+Care handed by the keyboard driver since their interpretation as EOF or SIGINT is a configurable terminal setting (seeman sttyandstty -a) – The Quark Oct 31 '21 at 17:20
Ctrl+Dmean Ctrl and capital D or it doesn't matter? – Tim Jul 09 '11 at 16:31Ctrl+Shift+DandCtrl+Dsend the same character anyway (character number 4, usually calledCtrl+D). – Gilles 'SO- stop being evil' Jul 09 '11 at 16:41Shiftin the sequence description as in Gilles' example above. – Caleb Jul 09 '11 at 17:35Ctrl+Dis interpreted as the ASCII control character EOT (end of transmission) when the sequence of key it is not caught by the terminal. To enter the EOT character, you can prevent the interpretation by the terminal by first sendingCtrl+Vand thenCtrl+D(Ctrl+Vmakes that the next character is passed quoted, preventing it from being interpreted by the terminal) – seeman sttyandstty -a. – The Quark Oct 31 '21 at 17:13