show escape sequences in terminal?












-1















Is there a way to let the terminal show the raw escape sequence? (e.g. those used to control color)



I came across this UNIX.SE question, and want to filter "red" output ( Filter output of command by color)



However, the commands in the answers do not work for my output (e.g. the red in git status for "Untracked files"). They do work for the examples there echo -e '33[00;31mtest33[00m' | grep --color=none '[[:cntrl:]]'. Filtering with grep --color=none '[[:cntrl:]]' works on my output but also shows text with other colors.



I guess the red I see must be a different red than e[31m.



Is there a way to let terminal output raw escape sequences? (so that I can use the right sequence to filter the specific red color I see)



(bash, Ubuntu 18.04)










share|improve this question



























    -1















    Is there a way to let the terminal show the raw escape sequence? (e.g. those used to control color)



    I came across this UNIX.SE question, and want to filter "red" output ( Filter output of command by color)



    However, the commands in the answers do not work for my output (e.g. the red in git status for "Untracked files"). They do work for the examples there echo -e '33[00;31mtest33[00m' | grep --color=none '[[:cntrl:]]'. Filtering with grep --color=none '[[:cntrl:]]' works on my output but also shows text with other colors.



    I guess the red I see must be a different red than e[31m.



    Is there a way to let terminal output raw escape sequences? (so that I can use the right sequence to filter the specific red color I see)



    (bash, Ubuntu 18.04)










    share|improve this question

























      -1












      -1








      -1








      Is there a way to let the terminal show the raw escape sequence? (e.g. those used to control color)



      I came across this UNIX.SE question, and want to filter "red" output ( Filter output of command by color)



      However, the commands in the answers do not work for my output (e.g. the red in git status for "Untracked files"). They do work for the examples there echo -e '33[00;31mtest33[00m' | grep --color=none '[[:cntrl:]]'. Filtering with grep --color=none '[[:cntrl:]]' works on my output but also shows text with other colors.



      I guess the red I see must be a different red than e[31m.



      Is there a way to let terminal output raw escape sequences? (so that I can use the right sequence to filter the specific red color I see)



      (bash, Ubuntu 18.04)










      share|improve this question














      Is there a way to let the terminal show the raw escape sequence? (e.g. those used to control color)



      I came across this UNIX.SE question, and want to filter "red" output ( Filter output of command by color)



      However, the commands in the answers do not work for my output (e.g. the red in git status for "Untracked files"). They do work for the examples there echo -e '33[00;31mtest33[00m' | grep --color=none '[[:cntrl:]]'. Filtering with grep --color=none '[[:cntrl:]]' works on my output but also shows text with other colors.



      I guess the red I see must be a different red than e[31m.



      Is there a way to let terminal output raw escape sequences? (so that I can use the right sequence to filter the specific red color I see)



      (bash, Ubuntu 18.04)







      terminal






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 1 hour ago









      tinlyxtinlyx

      133115




      133115






















          1 Answer
          1






          active

          oldest

          votes


















          0















          I guess the red I see must be a different red than e[31m.




          You guess wrongly.



          % ptybandage git status . | grep rules | console-decode-ecma48
          TAB
          SGR 31
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          SGR 0
          CR
          LF
          % git status . | grep rules | console-decode-ecma48
          TAB
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          LF
          %


          You haven't made git think that it is writing to a terminal, so it isn't producing colour.



          Further reading




          • https://unix.stackexchange.com/a/283984/5132

          • https://unix.stackexchange.com/a/249801/5132

          • Jonathan de Boyne Pollard (2018). "console-decode-ecma48". nosh Guide. Softwares.






          share|improve this answer
























          • Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

            – tinlyx
            30 mins ago











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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/3.0/"u003ecc by-sa 3.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%2funix.stackexchange.com%2fquestions%2f502204%2fshow-escape-sequences-in-terminal%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0















          I guess the red I see must be a different red than e[31m.




          You guess wrongly.



          % ptybandage git status . | grep rules | console-decode-ecma48
          TAB
          SGR 31
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          SGR 0
          CR
          LF
          % git status . | grep rules | console-decode-ecma48
          TAB
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          LF
          %


          You haven't made git think that it is writing to a terminal, so it isn't producing colour.



          Further reading




          • https://unix.stackexchange.com/a/283984/5132

          • https://unix.stackexchange.com/a/249801/5132

          • Jonathan de Boyne Pollard (2018). "console-decode-ecma48". nosh Guide. Softwares.






          share|improve this answer
























          • Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

            – tinlyx
            30 mins ago
















          0















          I guess the red I see must be a different red than e[31m.




          You guess wrongly.



          % ptybandage git status . | grep rules | console-decode-ecma48
          TAB
          SGR 31
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          SGR 0
          CR
          LF
          % git status . | grep rules | console-decode-ecma48
          TAB
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          LF
          %


          You haven't made git think that it is writing to a terminal, so it isn't producing colour.



          Further reading




          • https://unix.stackexchange.com/a/283984/5132

          • https://unix.stackexchange.com/a/249801/5132

          • Jonathan de Boyne Pollard (2018). "console-decode-ecma48". nosh Guide. Softwares.






          share|improve this answer
























          • Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

            – tinlyx
            30 mins ago














          0












          0








          0








          I guess the red I see must be a different red than e[31m.




          You guess wrongly.



          % ptybandage git status . | grep rules | console-decode-ecma48
          TAB
          SGR 31
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          SGR 0
          CR
          LF
          % git status . | grep rules | console-decode-ecma48
          TAB
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          LF
          %


          You haven't made git think that it is writing to a terminal, so it isn't producing colour.



          Further reading




          • https://unix.stackexchange.com/a/283984/5132

          • https://unix.stackexchange.com/a/249801/5132

          • Jonathan de Boyne Pollard (2018). "console-decode-ecma48". nosh Guide. Softwares.






          share|improve this answer














          I guess the red I see must be a different red than e[31m.




          You guess wrongly.



          % ptybandage git status . | grep rules | console-decode-ecma48
          TAB
          SGR 31
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          SGR 0
          CR
          LF
          % git status . | grep rules | console-decode-ecma48
          TAB
          'm'
          'o'
          'd'
          'i'
          'f'
          'i'
          'e'
          'd'
          ':'
          ' '
          ' '
          ' '
          'r'
          'u'
          'l'
          'e'
          's'
          LF
          %


          You haven't made git think that it is writing to a terminal, so it isn't producing colour.



          Further reading




          • https://unix.stackexchange.com/a/283984/5132

          • https://unix.stackexchange.com/a/249801/5132

          • Jonathan de Boyne Pollard (2018). "console-decode-ecma48". nosh Guide. Softwares.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 47 mins ago









          JdeBPJdeBP

          35.2k470165




          35.2k470165













          • Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

            – tinlyx
            30 mins ago



















          • Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

            – tinlyx
            30 mins ago

















          Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

          – tinlyx
          30 mins ago





          Thanks. You haven't made git think that it is writing to a terminal, so it isn't producing colour. ... But I didn't make git produce color, because the text in question is displayed in red, and grep '[[:cntrl:]]' captures it, as said in OP.

          – tinlyx
          30 mins ago


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • 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%2funix.stackexchange.com%2fquestions%2f502204%2fshow-escape-sequences-in-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

          濃尾地震

          How to rewrite equation of hyperbola in standard form

          No ethernet ip address in my vocore2