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;









4















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?










share|improve this question
































    4















    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?










    share|improve this question




























      4












      4








      4


      1






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 14 '16 at 19:29







      salotz

















      asked Jul 14 '16 at 18:21









      salotzsalotz

      1285 bronze badges




      1285 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          6
















          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






          share|improve this answer

























          • 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


















          1
















          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.






          share|improve this answer


























            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
            );



            );














            draft saved

            draft discarded
















            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









            6
















            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






            share|improve this answer

























            • 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















            6
















            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






            share|improve this answer

























            • 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













            6














            6










            6









            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






            share|improve this answer













            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







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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

















            • 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













            1
















            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.






            share|improve this answer





























              1
















              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.






              share|improve this answer



























                1














                1










                1









                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 17 at 19:17









                user945922user945922

                111 bronze badge




                111 bronze badge































                    draft saved

                    draft discarded















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Tamil (spriik) Luke uk diar | Nawigatjuun

                    Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                    Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?