Delete all lines which don't have n characters before delimiter Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionHow can I wrap text at a certain column size?Delete all lines containing “..” and “@”How can I do a binary search of a text file for a specific character string?Count all lines between a delimiterDelete all lines of text that isn't all numbersHow to print the inputted pattern which don't have matching lines?If Extra delimiter delete last delimiterDelete last characters before delimiterHow to delete all lines that contain only duplicates characters?Delete n lines after pattern and m lines before pattern

Why is "Consequences inflicted." not a sentence?

What causes the vertical darker bands in my photo?

Did Kevin spill real chili?

Antler Helmet: Can it work?

Why did the IBM 650 use bi-quinary?

How to do this path/lattice with tikz

Dominant seventh chord in the major scale contains diminished triad of the seventh?

Bonus calculation: Am I making a mountain out of a molehill?

What would be the ideal power source for a cybernetic eye?

What do you call a plan that's an alternative plan in case your initial plan fails?

What is this single-engine low-wing propeller plane?

How can players work together to take actions that are otherwise impossible?

What is the musical term for a note that continously plays through a melody?

How do I mention the quality of my school without bragging

What is a Meta algorithm?

How can I make names more distinctive without making them longer?

Are my PIs rude or am I just being too sensitive?

Why is "Captain Marvel" translated as male in Portugal?

What do you call a phrase that's not an idiom yet?

Does surprise arrest existing movement?

Is the address of a local variable a constexpr?

Right-skewed distribution with mean equals to mode?

Is there a documented rationale why the House Ways and Means chairman can demand tax info?

Gastric acid as a weapon



Delete all lines which don't have n characters before delimiter



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionHow can I wrap text at a certain column size?Delete all lines containing “..” and “@”How can I do a binary search of a text file for a specific character string?Count all lines between a delimiterDelete all lines of text that isn't all numbersHow to print the inputted pattern which don't have matching lines?If Extra delimiter delete last delimiterDelete last characters before delimiterHow to delete all lines that contain only duplicates characters?Delete n lines after pattern and m lines before pattern



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








11















I have a very long text file (from here) which should contain 6 hexadecimal characters then a 'break' (which appears as one character and doesn't seem to show up properly in the code markdown below) followed by a few words:



00107B Cisco Systems, Inc
00906D Cisco Systems, Inc
0090BF Cisco Systems, Inc
5080 Cisco Systems, Inc
0E+00 ASUSTek COMPUTER INC.
000C6E ASUSTek COMPUTER INC.
001BFC ASUSTek COMPUTER INC.
001E8C ASUSTek COMPUTER INC.
0015F2 ASUSTek COMPUTER INC.
2354 ASUSTek COMPUTER INC.
001FC6 ASUSTek COMPUTER INC.
60182E ShenZhen Protruly Electronic Ltd co.
F4CFE2 Cisco Systems, Inc
501CBF Cisco Systems, Inc


I've done some looking around and can't see something which would work in this situation. My question is, how can I use grep/sed/awk/perl to delete all lines of this text file which do not start with exactly 6 hexadecimal characters and then a 'break'?



P.S. For bonus points, what's the best way of sorting the file alphabetically and numerically according to the hex characters (i.e. 000000 -> FFFFFF)? Should I just use sort?










share|improve this question






























    11















    I have a very long text file (from here) which should contain 6 hexadecimal characters then a 'break' (which appears as one character and doesn't seem to show up properly in the code markdown below) followed by a few words:



    00107B Cisco Systems, Inc
    00906D Cisco Systems, Inc
    0090BF Cisco Systems, Inc
    5080 Cisco Systems, Inc
    0E+00 ASUSTek COMPUTER INC.
    000C6E ASUSTek COMPUTER INC.
    001BFC ASUSTek COMPUTER INC.
    001E8C ASUSTek COMPUTER INC.
    0015F2 ASUSTek COMPUTER INC.
    2354 ASUSTek COMPUTER INC.
    001FC6 ASUSTek COMPUTER INC.
    60182E ShenZhen Protruly Electronic Ltd co.
    F4CFE2 Cisco Systems, Inc
    501CBF Cisco Systems, Inc


    I've done some looking around and can't see something which would work in this situation. My question is, how can I use grep/sed/awk/perl to delete all lines of this text file which do not start with exactly 6 hexadecimal characters and then a 'break'?



    P.S. For bonus points, what's the best way of sorting the file alphabetically and numerically according to the hex characters (i.e. 000000 -> FFFFFF)? Should I just use sort?










    share|improve this question


























      11












      11








      11








      I have a very long text file (from here) which should contain 6 hexadecimal characters then a 'break' (which appears as one character and doesn't seem to show up properly in the code markdown below) followed by a few words:



      00107B Cisco Systems, Inc
      00906D Cisco Systems, Inc
      0090BF Cisco Systems, Inc
      5080 Cisco Systems, Inc
      0E+00 ASUSTek COMPUTER INC.
      000C6E ASUSTek COMPUTER INC.
      001BFC ASUSTek COMPUTER INC.
      001E8C ASUSTek COMPUTER INC.
      0015F2 ASUSTek COMPUTER INC.
      2354 ASUSTek COMPUTER INC.
      001FC6 ASUSTek COMPUTER INC.
      60182E ShenZhen Protruly Electronic Ltd co.
      F4CFE2 Cisco Systems, Inc
      501CBF Cisco Systems, Inc


      I've done some looking around and can't see something which would work in this situation. My question is, how can I use grep/sed/awk/perl to delete all lines of this text file which do not start with exactly 6 hexadecimal characters and then a 'break'?



      P.S. For bonus points, what's the best way of sorting the file alphabetically and numerically according to the hex characters (i.e. 000000 -> FFFFFF)? Should I just use sort?










      share|improve this question
















      I have a very long text file (from here) which should contain 6 hexadecimal characters then a 'break' (which appears as one character and doesn't seem to show up properly in the code markdown below) followed by a few words:



      00107B Cisco Systems, Inc
      00906D Cisco Systems, Inc
      0090BF Cisco Systems, Inc
      5080 Cisco Systems, Inc
      0E+00 ASUSTek COMPUTER INC.
      000C6E ASUSTek COMPUTER INC.
      001BFC ASUSTek COMPUTER INC.
      001E8C ASUSTek COMPUTER INC.
      0015F2 ASUSTek COMPUTER INC.
      2354 ASUSTek COMPUTER INC.
      001FC6 ASUSTek COMPUTER INC.
      60182E ShenZhen Protruly Electronic Ltd co.
      F4CFE2 Cisco Systems, Inc
      501CBF Cisco Systems, Inc


      I've done some looking around and can't see something which would work in this situation. My question is, how can I use grep/sed/awk/perl to delete all lines of this text file which do not start with exactly 6 hexadecimal characters and then a 'break'?



      P.S. For bonus points, what's the best way of sorting the file alphabetically and numerically according to the hex characters (i.e. 000000 -> FFFFFF)? Should I just use sort?







      text-processing sed grep text-formatting






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 10 at 16:46









      codeforester

      405418




      405418










      asked Apr 10 at 14:46









      RoccoRocco

      785




      785




















          2 Answers
          2






          active

          oldest

          votes


















          13














          $ awk '$1 ~ /^[[:xdigit:]]6$/' file
          00107B Cisco Systems, Inc
          00906D Cisco Systems, Inc
          0090BF Cisco Systems, Inc
          000C6E ASUSTek COMPUTER INC.
          001BFC ASUSTek COMPUTER INC.
          001E8C ASUSTek COMPUTER INC.
          0015F2 ASUSTek COMPUTER INC.
          001FC6 ASUSTek COMPUTER INC.
          60182E ShenZhen Protruly Electronic Ltd co.
          F4CFE2 Cisco Systems, Inc
          501CBF Cisco Systems, Inc


          This uses awk to extract the lines that contains exactly six hexadecimal digits in the first field. The [[:xdigit:]] pattern matches a hexadecimal digit, and 6 requires six of them. Together with the anchoring to the start and end of the field with ^ and $ respectively, this will only match on the wanted lines.



          Redirect to some file to save it under a new name.



          Note that this seems to work with GNU awk (commonly found on Linux), but not with awk on e.g. OpenBSD, or mawk.




          A similar approach with sed:



          $ sed -n '/^[[:xdigit:]]6>/p' file
          00107B Cisco Systems, Inc
          00906D Cisco Systems, Inc
          0090BF Cisco Systems, Inc
          000C6E ASUSTek COMPUTER INC.
          001BFC ASUSTek COMPUTER INC.
          001E8C ASUSTek COMPUTER INC.
          0015F2 ASUSTek COMPUTER INC.
          001FC6 ASUSTek COMPUTER INC.
          60182E ShenZhen Protruly Electronic Ltd co.
          F4CFE2 Cisco Systems, Inc
          501CBF Cisco Systems, Inc


          In this expression, > is used to match the end of the hexadecimal number. This ensures that longer numbers are not matched. The > pattern matches a word boundary, i.e. the zero-width space between a word character and a non-word character.




          For sorting the resulting data, just pipe the result trough sort, or sort -f if your hexadecimal numbers uses both upper and lower case letters






          share|improve this answer




















          • 1





            Perfect, thank you very much. Exactly what I was looking for!

            – Rocco
            Apr 10 at 15:07


















          8














          And for completeness, you can do this with grep too:



          $ grep -E '^[[:xdigit:]]6b' oui.txt 
          00107B Cisco Systems, Inc
          00906D Cisco Systems, Inc
          0090BF Cisco Systems, Inc
          000C6E ASUSTek COMPUTER INC.
          001BFC ASUSTek COMPUTER INC.
          001E8C ASUSTek COMPUTER INC.
          0015F2 ASUSTek COMPUTER INC.
          001FC6 ASUSTek COMPUTER INC.
          60182E ShenZhen Protruly Electronic Ltd co.
          F4CFE2 Cisco Systems, Inc
          501CBF Cisco Systems, Inc
          $


          This extended grep expression searches for exactly 6 hex digits at the beginning of each line, followed immediately by a non-whitespace-to-whitespace boundary (b).






          share|improve this answer























            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%2f511695%2fdelete-all-lines-which-dont-have-n-characters-before-delimiter%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









            13














            $ awk '$1 ~ /^[[:xdigit:]]6$/' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            This uses awk to extract the lines that contains exactly six hexadecimal digits in the first field. The [[:xdigit:]] pattern matches a hexadecimal digit, and 6 requires six of them. Together with the anchoring to the start and end of the field with ^ and $ respectively, this will only match on the wanted lines.



            Redirect to some file to save it under a new name.



            Note that this seems to work with GNU awk (commonly found on Linux), but not with awk on e.g. OpenBSD, or mawk.




            A similar approach with sed:



            $ sed -n '/^[[:xdigit:]]6>/p' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            In this expression, > is used to match the end of the hexadecimal number. This ensures that longer numbers are not matched. The > pattern matches a word boundary, i.e. the zero-width space between a word character and a non-word character.




            For sorting the resulting data, just pipe the result trough sort, or sort -f if your hexadecimal numbers uses both upper and lower case letters






            share|improve this answer




















            • 1





              Perfect, thank you very much. Exactly what I was looking for!

              – Rocco
              Apr 10 at 15:07















            13














            $ awk '$1 ~ /^[[:xdigit:]]6$/' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            This uses awk to extract the lines that contains exactly six hexadecimal digits in the first field. The [[:xdigit:]] pattern matches a hexadecimal digit, and 6 requires six of them. Together with the anchoring to the start and end of the field with ^ and $ respectively, this will only match on the wanted lines.



            Redirect to some file to save it under a new name.



            Note that this seems to work with GNU awk (commonly found on Linux), but not with awk on e.g. OpenBSD, or mawk.




            A similar approach with sed:



            $ sed -n '/^[[:xdigit:]]6>/p' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            In this expression, > is used to match the end of the hexadecimal number. This ensures that longer numbers are not matched. The > pattern matches a word boundary, i.e. the zero-width space between a word character and a non-word character.




            For sorting the resulting data, just pipe the result trough sort, or sort -f if your hexadecimal numbers uses both upper and lower case letters






            share|improve this answer




















            • 1





              Perfect, thank you very much. Exactly what I was looking for!

              – Rocco
              Apr 10 at 15:07













            13












            13








            13







            $ awk '$1 ~ /^[[:xdigit:]]6$/' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            This uses awk to extract the lines that contains exactly six hexadecimal digits in the first field. The [[:xdigit:]] pattern matches a hexadecimal digit, and 6 requires six of them. Together with the anchoring to the start and end of the field with ^ and $ respectively, this will only match on the wanted lines.



            Redirect to some file to save it under a new name.



            Note that this seems to work with GNU awk (commonly found on Linux), but not with awk on e.g. OpenBSD, or mawk.




            A similar approach with sed:



            $ sed -n '/^[[:xdigit:]]6>/p' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            In this expression, > is used to match the end of the hexadecimal number. This ensures that longer numbers are not matched. The > pattern matches a word boundary, i.e. the zero-width space between a word character and a non-word character.




            For sorting the resulting data, just pipe the result trough sort, or sort -f if your hexadecimal numbers uses both upper and lower case letters






            share|improve this answer















            $ awk '$1 ~ /^[[:xdigit:]]6$/' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            This uses awk to extract the lines that contains exactly six hexadecimal digits in the first field. The [[:xdigit:]] pattern matches a hexadecimal digit, and 6 requires six of them. Together with the anchoring to the start and end of the field with ^ and $ respectively, this will only match on the wanted lines.



            Redirect to some file to save it under a new name.



            Note that this seems to work with GNU awk (commonly found on Linux), but not with awk on e.g. OpenBSD, or mawk.




            A similar approach with sed:



            $ sed -n '/^[[:xdigit:]]6>/p' file
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc


            In this expression, > is used to match the end of the hexadecimal number. This ensures that longer numbers are not matched. The > pattern matches a word boundary, i.e. the zero-width space between a word character and a non-word character.




            For sorting the resulting data, just pipe the result trough sort, or sort -f if your hexadecimal numbers uses both upper and lower case letters







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 10 at 15:53

























            answered Apr 10 at 14:55









            KusalanandaKusalananda

            142k18265440




            142k18265440







            • 1





              Perfect, thank you very much. Exactly what I was looking for!

              – Rocco
              Apr 10 at 15:07












            • 1





              Perfect, thank you very much. Exactly what I was looking for!

              – Rocco
              Apr 10 at 15:07







            1




            1





            Perfect, thank you very much. Exactly what I was looking for!

            – Rocco
            Apr 10 at 15:07





            Perfect, thank you very much. Exactly what I was looking for!

            – Rocco
            Apr 10 at 15:07













            8














            And for completeness, you can do this with grep too:



            $ grep -E '^[[:xdigit:]]6b' oui.txt 
            00107B Cisco Systems, Inc
            00906D Cisco Systems, Inc
            0090BF Cisco Systems, Inc
            000C6E ASUSTek COMPUTER INC.
            001BFC ASUSTek COMPUTER INC.
            001E8C ASUSTek COMPUTER INC.
            0015F2 ASUSTek COMPUTER INC.
            001FC6 ASUSTek COMPUTER INC.
            60182E ShenZhen Protruly Electronic Ltd co.
            F4CFE2 Cisco Systems, Inc
            501CBF Cisco Systems, Inc
            $


            This extended grep expression searches for exactly 6 hex digits at the beginning of each line, followed immediately by a non-whitespace-to-whitespace boundary (b).






            share|improve this answer



























              8














              And for completeness, you can do this with grep too:



              $ grep -E '^[[:xdigit:]]6b' oui.txt 
              00107B Cisco Systems, Inc
              00906D Cisco Systems, Inc
              0090BF Cisco Systems, Inc
              000C6E ASUSTek COMPUTER INC.
              001BFC ASUSTek COMPUTER INC.
              001E8C ASUSTek COMPUTER INC.
              0015F2 ASUSTek COMPUTER INC.
              001FC6 ASUSTek COMPUTER INC.
              60182E ShenZhen Protruly Electronic Ltd co.
              F4CFE2 Cisco Systems, Inc
              501CBF Cisco Systems, Inc
              $


              This extended grep expression searches for exactly 6 hex digits at the beginning of each line, followed immediately by a non-whitespace-to-whitespace boundary (b).






              share|improve this answer

























                8












                8








                8







                And for completeness, you can do this with grep too:



                $ grep -E '^[[:xdigit:]]6b' oui.txt 
                00107B Cisco Systems, Inc
                00906D Cisco Systems, Inc
                0090BF Cisco Systems, Inc
                000C6E ASUSTek COMPUTER INC.
                001BFC ASUSTek COMPUTER INC.
                001E8C ASUSTek COMPUTER INC.
                0015F2 ASUSTek COMPUTER INC.
                001FC6 ASUSTek COMPUTER INC.
                60182E ShenZhen Protruly Electronic Ltd co.
                F4CFE2 Cisco Systems, Inc
                501CBF Cisco Systems, Inc
                $


                This extended grep expression searches for exactly 6 hex digits at the beginning of each line, followed immediately by a non-whitespace-to-whitespace boundary (b).






                share|improve this answer













                And for completeness, you can do this with grep too:



                $ grep -E '^[[:xdigit:]]6b' oui.txt 
                00107B Cisco Systems, Inc
                00906D Cisco Systems, Inc
                0090BF Cisco Systems, Inc
                000C6E ASUSTek COMPUTER INC.
                001BFC ASUSTek COMPUTER INC.
                001E8C ASUSTek COMPUTER INC.
                0015F2 ASUSTek COMPUTER INC.
                001FC6 ASUSTek COMPUTER INC.
                60182E ShenZhen Protruly Electronic Ltd co.
                F4CFE2 Cisco Systems, Inc
                501CBF Cisco Systems, Inc
                $


                This extended grep expression searches for exactly 6 hex digits at the beginning of each line, followed immediately by a non-whitespace-to-whitespace boundary (b).







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 10 at 20:03









                Digital TraumaDigital Trauma

                6,13211730




                6,13211730



























                    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%2f511695%2fdelete-all-lines-which-dont-have-n-characters-before-delimiter%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

                    Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                    Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                    Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020