What does Ctrl-| (pipe key) do in a terminal?How to fix Ctrl and Shift problems in games?Ctrl+Shift+C not working to copy from terminal (either gnome terminal or roxterm)How to disable ctrl-shift-e keybinding from showing eEEEE and loading Emoji options
Why didn't Snape ask Dumbledore why he let "Moody" search his office?
Can something have more sugar per 100g than the percentage of sugar that's in it?
Why does transition from one electron shell to another shell always produce massless photon?
Would it be easier to colonise a living world or a dead world?
Why did a young George Washington sign a document admitting to assassinating a French military officer?
Describing the taste of food
How can I curtail abuse of the Illusion wizard's Illusory Reality feature?
Actual cropping dimensions are "wrong" in PS
Is there a simple way to apply a function to the RHS of a substitution?
There is any way today to recover/dump 2M disks?
What is the difference between EventSystem.SubscribeAsync and EventSystem.Subscribe events in Tridion Event system?
How to make a gift without seeming creepy?
How to do CV in logistic regression when predicton doesn't work?
Meaning/translation of title "The Light Fantastic" By Terry Pratchett
Is the text of all UK treaties and laws public?
This fell out of my toilet when I unscrewed the supply line. What is it?
Difference between $HOME and ~
I am confused with the word order when putting a sentence into passé composé with reflexive verbs
Creating chess engine, machine learning vs. traditional engine?
'Cheddar goes "good" with burgers?' Can "go" be seen as a verb of the senses?
D&D Monsters and Copyright
Translation Golf XLVIII — We're sorry to see you go
How do lasers measure short distances (<1cm) when electronics are too slow for time-of-flight to work?
Are there any privately owned large commercial airports?
What does Ctrl-| (pipe key) do in a terminal?
How to fix Ctrl and Shift problems in games?Ctrl+Shift+C not working to copy from terminal (either gnome terminal or roxterm)How to disable ctrl-shift-e keybinding from showing eEEEE and loading Emoji options
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
For example, when I press Ctrl+Shift+ (a. k. a. Ctrl+|) in a IPython session I get a Quit (core dumped)
message. Where is this keybinding bound and how can I deactivate it?
shortcut-keys ipython
add a comment
|
For example, when I press Ctrl+Shift+ (a. k. a. Ctrl+|) in a IPython session I get a Quit (core dumped)
message. Where is this keybinding bound and how can I deactivate it?
shortcut-keys ipython
add a comment
|
For example, when I press Ctrl+Shift+ (a. k. a. Ctrl+|) in a IPython session I get a Quit (core dumped)
message. Where is this keybinding bound and how can I deactivate it?
shortcut-keys ipython
For example, when I press Ctrl+Shift+ (a. k. a. Ctrl+|) in a IPython session I get a Quit (core dumped)
message. Where is this keybinding bound and how can I deactivate it?
shortcut-keys ipython
shortcut-keys ipython
edited Jul 14 '16 at 19:29
salotz
asked Jul 14 '16 at 18:21
salotzsalotz
1285 bronze badges
1285 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
It sends SIGQUIT to an application which does produce core dump. It is the same as if you typed kill -3 PID
where PID is you program process id.
For more info, read https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
add a comment
|
Don't know what "system level" means, since it's vague.
This is the old-fashioned terminal (tty) interface. You can control how key sequences are processed, at the terminal-driver level. See stty. For instance,
stty quit ''
should disable the default translation of ctrl-pipe into a QUIT.
Ultimately, doing this at the shell command-line may not help you, since some interactive apps impose their own stty settings, thus overriding/undoing what you already set at the command-line.
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f798658%2fwhat-does-ctrl-pipe-key-do-in-a-terminal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
It sends SIGQUIT to an application which does produce core dump. It is the same as if you typed kill -3 PID
where PID is you program process id.
For more info, read https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
add a comment
|
It sends SIGQUIT to an application which does produce core dump. It is the same as if you typed kill -3 PID
where PID is you program process id.
For more info, read https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
add a comment
|
It sends SIGQUIT to an application which does produce core dump. It is the same as if you typed kill -3 PID
where PID is you program process id.
For more info, read https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
It sends SIGQUIT to an application which does produce core dump. It is the same as if you typed kill -3 PID
where PID is you program process id.
For more info, read https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
answered Jul 14 '16 at 18:52
Sergiy KolodyazhnyySergiy Kolodyazhnyy
79.4k11 gold badges172 silver badges354 bronze badges
79.4k11 gold badges172 silver badges354 bronze badges
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
add a comment
|
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Is there any way to change the keybindings to the signal in a Linux system?
– salotz
Jul 14 '16 at 19:31
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
Not as far as I know. These are hard-coded at the system level
– Sergiy Kolodyazhnyy
Jul 14 '16 at 20:04
add a comment
|
Don't know what "system level" means, since it's vague.
This is the old-fashioned terminal (tty) interface. You can control how key sequences are processed, at the terminal-driver level. See stty. For instance,
stty quit ''
should disable the default translation of ctrl-pipe into a QUIT.
Ultimately, doing this at the shell command-line may not help you, since some interactive apps impose their own stty settings, thus overriding/undoing what you already set at the command-line.
add a comment
|
Don't know what "system level" means, since it's vague.
This is the old-fashioned terminal (tty) interface. You can control how key sequences are processed, at the terminal-driver level. See stty. For instance,
stty quit ''
should disable the default translation of ctrl-pipe into a QUIT.
Ultimately, doing this at the shell command-line may not help you, since some interactive apps impose their own stty settings, thus overriding/undoing what you already set at the command-line.
add a comment
|
Don't know what "system level" means, since it's vague.
This is the old-fashioned terminal (tty) interface. You can control how key sequences are processed, at the terminal-driver level. See stty. For instance,
stty quit ''
should disable the default translation of ctrl-pipe into a QUIT.
Ultimately, doing this at the shell command-line may not help you, since some interactive apps impose their own stty settings, thus overriding/undoing what you already set at the command-line.
Don't know what "system level" means, since it's vague.
This is the old-fashioned terminal (tty) interface. You can control how key sequences are processed, at the terminal-driver level. See stty. For instance,
stty quit ''
should disable the default translation of ctrl-pipe into a QUIT.
Ultimately, doing this at the shell command-line may not help you, since some interactive apps impose their own stty settings, thus overriding/undoing what you already set at the command-line.
answered Apr 17 at 19:17
user945922user945922
111 bronze badge
111 bronze badge
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f798658%2fwhat-does-ctrl-pipe-key-do-in-a-terminal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown