sed '/^$/d' and grep -Ev '^$' failed to remove blank lines Announcing the arrival of Valued...

Statistical model of ligand substitution

I'm thinking of a number

Strange behaviour of Check

Is it possible to ask for a hotel room without minibar/extra services?

If A makes B more likely then B makes A more likely"

Estimate capacitor parameters

Can a monk deflect thrown melee weapons?

Area of a 2D convex hull

Estimated State payment too big --> money back; + 2018 Tax Reform

How to say that you spent the night with someone, you were only sleeping and nothing else?

Two different pronunciation of "понял"

Was credit for the black hole image misattributed?

Did the new image of black hole confirm the general theory of relativity?

How is simplicity better than precision and clarity in prose?

What is the electric potential inside a point charge?

What can I do if my MacBook isn’t charging but already ran out?

Simulating Exploding Dice

Blender game recording at the wrong time

Notation for two qubit composite product state

Problem when applying foreach loop

If I can make up priors, why can't I make up posteriors?

How to stop my camera from exagerrating differences in skin colour?

How do you clear the ApexPages.getMessages() collection in a test?

Can the prologue be the backstory of your main character?



sed '/^$/d' and grep -Ev '^$' failed to remove blank lines



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Not able to execute a .sh file: /bin/bash^M: bad interpretersed, grep, and awk file sortingFilter lines based on length using sed and grepFilter consecutive identical characters using Sed and GrepHow to escape “.” with sed or grep?sed replace only first and last space in linesUse sed and grep to extract data for particular months in a file with timestampsremoving lines by sedgrep form bottom and display lines after matchSelect using grep and sedgrep and sed only the numbers from a text file's line





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







2















I have such a file with multiple blank lines in vscode



$ tail -n 20 draft3.py
hi = len(a)

if lo < 0:
raise ValueError('low must be non-negative')

if lo == hi:
return None

mid = (lo + hi) // 2

if x == a[mid]:
return x
if x > a[mid]:

lo = mid + 1
return self.bi_search(a, x, lo, hi)
if x < a[mid]:

hi = mid
return self.bi_search(a, x, lo, hi)


Tried multiple methods to remove the blank lines



`grep -v -e '^$' failed



$ tail -n 20 draft3.py | grep -v -e '^$'
hi = len(a)
if lo < 0:
raise ValueError('low must be non-negative')
if lo == hi:
return None
mid = (lo + hi) // 2

if x == a[mid]:
return x
if x > a[mid]:

lo = mid + 1
return self.bi_search(a, x, lo, hi)
if x < a[mid]:

hi = mid
return self.bi_search(a, x, lo, hi)


`grep -Ev "^$" failed



$ tail -n 20 draft3.py | grep -Ev "^$" 
hi = len(a)
if lo < 0:
raise ValueError('low must be non-negative')
if lo == hi:
return None
mid = (lo + hi) // 2

if x == a[mid]:
return x
if x > a[mid]:

lo = mid + 1
return self.bi_search(a, x, lo, hi)
if x < a[mid]:

hi = mid
return self.bi_search(a, x, lo, hi)


`sed '/^$/d' failed



$ tail -n 20 draft3.py | sed '/^$/d'
hi = len(a)
if lo < 0:
raise ValueError('low must be non-negative')
if lo == hi:
return None
mid = (lo + hi) // 2

if x == a[mid]:
return x
if x > a[mid]:

lo = mid + 1
return self.bi_search(a, x, lo, hi)
if x < a[mid]:

hi = mid
return self.bi_search(a, x, lo, hi)


What's the problem? How could remove the blank lines?










share|improve this question































    2















    I have such a file with multiple blank lines in vscode



    $ tail -n 20 draft3.py
    hi = len(a)

    if lo < 0:
    raise ValueError('low must be non-negative')

    if lo == hi:
    return None

    mid = (lo + hi) // 2

    if x == a[mid]:
    return x
    if x > a[mid]:

    lo = mid + 1
    return self.bi_search(a, x, lo, hi)
    if x < a[mid]:

    hi = mid
    return self.bi_search(a, x, lo, hi)


    Tried multiple methods to remove the blank lines



    `grep -v -e '^$' failed



    $ tail -n 20 draft3.py | grep -v -e '^$'
    hi = len(a)
    if lo < 0:
    raise ValueError('low must be non-negative')
    if lo == hi:
    return None
    mid = (lo + hi) // 2

    if x == a[mid]:
    return x
    if x > a[mid]:

    lo = mid + 1
    return self.bi_search(a, x, lo, hi)
    if x < a[mid]:

    hi = mid
    return self.bi_search(a, x, lo, hi)


    `grep -Ev "^$" failed



    $ tail -n 20 draft3.py | grep -Ev "^$" 
    hi = len(a)
    if lo < 0:
    raise ValueError('low must be non-negative')
    if lo == hi:
    return None
    mid = (lo + hi) // 2

    if x == a[mid]:
    return x
    if x > a[mid]:

    lo = mid + 1
    return self.bi_search(a, x, lo, hi)
    if x < a[mid]:

    hi = mid
    return self.bi_search(a, x, lo, hi)


    `sed '/^$/d' failed



    $ tail -n 20 draft3.py | sed '/^$/d'
    hi = len(a)
    if lo < 0:
    raise ValueError('low must be non-negative')
    if lo == hi:
    return None
    mid = (lo + hi) // 2

    if x == a[mid]:
    return x
    if x > a[mid]:

    lo = mid + 1
    return self.bi_search(a, x, lo, hi)
    if x < a[mid]:

    hi = mid
    return self.bi_search(a, x, lo, hi)


    What's the problem? How could remove the blank lines?










    share|improve this question



























      2












      2








      2








      I have such a file with multiple blank lines in vscode



      $ tail -n 20 draft3.py
      hi = len(a)

      if lo < 0:
      raise ValueError('low must be non-negative')

      if lo == hi:
      return None

      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      Tried multiple methods to remove the blank lines



      `grep -v -e '^$' failed



      $ tail -n 20 draft3.py | grep -v -e '^$'
      hi = len(a)
      if lo < 0:
      raise ValueError('low must be non-negative')
      if lo == hi:
      return None
      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      `grep -Ev "^$" failed



      $ tail -n 20 draft3.py | grep -Ev "^$" 
      hi = len(a)
      if lo < 0:
      raise ValueError('low must be non-negative')
      if lo == hi:
      return None
      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      `sed '/^$/d' failed



      $ tail -n 20 draft3.py | sed '/^$/d'
      hi = len(a)
      if lo < 0:
      raise ValueError('low must be non-negative')
      if lo == hi:
      return None
      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      What's the problem? How could remove the blank lines?










      share|improve this question
















      I have such a file with multiple blank lines in vscode



      $ tail -n 20 draft3.py
      hi = len(a)

      if lo < 0:
      raise ValueError('low must be non-negative')

      if lo == hi:
      return None

      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      Tried multiple methods to remove the blank lines



      `grep -v -e '^$' failed



      $ tail -n 20 draft3.py | grep -v -e '^$'
      hi = len(a)
      if lo < 0:
      raise ValueError('low must be non-negative')
      if lo == hi:
      return None
      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      `grep -Ev "^$" failed



      $ tail -n 20 draft3.py | grep -Ev "^$" 
      hi = len(a)
      if lo < 0:
      raise ValueError('low must be non-negative')
      if lo == hi:
      return None
      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      `sed '/^$/d' failed



      $ tail -n 20 draft3.py | sed '/^$/d'
      hi = len(a)
      if lo < 0:
      raise ValueError('low must be non-negative')
      if lo == hi:
      return None
      mid = (lo + hi) // 2

      if x == a[mid]:
      return x
      if x > a[mid]:

      lo = mid + 1
      return self.bi_search(a, x, lo, hi)
      if x < a[mid]:

      hi = mid
      return self.bi_search(a, x, lo, hi)


      What's the problem? How could remove the blank lines?







      command-line text-processing grep sed






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 9:06









      Sergiy Kolodyazhnyy

      75.5k9155329




      75.5k9155329










      asked Mar 23 at 8:32









      AliceAlice

      572111




      572111






















          3 Answers
          3






          active

          oldest

          votes


















          3














          grep -v '^$' will remove empty lines. But what if we have spaces or tabs in some lines ? For example I added 3 spaces to parts of your text, and if we do cat -A we will see that it shows line terminator $, but it will be offset.



          $
          mid = (lo + hi) // 2$
          $
          if x == a[mid]:$
          return x$
          if x > a[mid]:$


          The second line there has 3 spaces, first one doesn't. So we also want to use [[:blank:]] character class to account for those as well:



          $ grep -v '^[[:blank:]]*$' text.txt
          hi = len(a)
          if lo < 0:
          raise ValueError('low must be non-negative')
          if lo == hi:
          return None
          mid = (lo + hi) // 2
          if x == a[mid]:
          return x
          if x > a[mid]:
          lo = mid + 1
          return self.bi_search(a, x, lo, hi)
          if x < a[mid]:
          hi = mid
          return self.bi_search(a, x, lo, hi)


          Now you should see that the line with 3 added spaces is gone. The * signifies zero or more repetitions of the characters, so the pattern ^[[:blank:]]*$ also implies ^$ when there are zero whitespace or tab characters on the line. So this pattern handles both truly empty and seemingly empty lines. It also applies exactly the same to grep or sed, because we're using basic regex expressions and [[:blank:]] is one of the POSIX character classes, so it is portable.





          We could also do something like this in python but without regex patterns:



          $ python3 -c 'import sys; print("n".join([ l.rstrip() for l in sys.stdin if l.strip().split() ]))'  < text.txt
          hi = len(a)
          if lo < 0:
          raise ValueError('low must be non-negative')
          if lo == hi:
          return None
          mid = (lo + hi) // 2
          if x == a[mid]:
          return x
          if x > a[mid]:
          lo = mid + 1
          return self.bi_search(a, x, lo, hi)
          if x < a[mid]:
          hi = mid
          return self.bi_search(a, x, lo, hi)


          Why does this work ? Because .split() on a string will split at whitespaces to extract non-whitespace tokens. If a line contains only spaces, the resulting list from .split() will be empty.





          As noted by ilkkachu in the comments, the issue can also occur if you use CRLF line endings ( used in DOS/Windows text files). It is easy to see if the file uses CRLF line endings via cat -A, they will be marked as ^M. For example,



          $ printf 'hellonrnWorldn   rntestnnnewtestn' | cat -A
          hello$
          ^M$
          World$
          ^M$
          test$
          $
          newtest$


          One thing that could be done to account for carriage return is this:



          $ printf 'hellonrnWorldn   ntestnnnewtestn' | sed '/^[[:blank:]]*r*$/d'
          hello
          World
          test
          newtest


          It may be simpler to first use a dos2unix utility designed specifically for converting DOS files to Unix files, and then use sed and grep. See ByteCommander's answer that shows example of how to do that.






          share|improve this answer





















          • 1





            "regular" whitespace like spaces could do that, or they might have CRLF line endings

            – ilkkachu
            Mar 23 at 11:53











          • @ilkkachu Good point, thank you. I've edited to account for CRLF as well

            – Sergiy Kolodyazhnyy
            Mar 23 at 19:48






          • 1





            oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

            – ilkkachu
            Mar 23 at 20:11



















          3
















          Presumably you want to remove not only empty lines, but also lines with only whitespace characters. For that, use:



          sed '/^s*$/d'   # or respectively
          grep -v '^s*$'


          The sed expression deletes every line with any number (*) of whitespace characters (s) in it. grep -v outputs any line which does not match the expression.



          Example usage



          $ sed '/^s*$/d' <draft3.py 
          hi = len(a)
          if lo < 0:
          raise ValueError('low must be non-negative')
          if lo == hi:
          return None
          mid = (lo + hi) // 2
          if x == a[mid]:
          return x
          if x > a[mid]:
          lo = mid + 1
          return self.bi_search(a, x, lo, hi)
          if x < a[mid]:
          hi = mid
          return self.bi_search(a, x, lo, hi)





          share|improve this answer

































            0














            use



            perl -p  -e 's/^[:blank:]*$//g' inputfile | sed '/^$/d' 


            and you will have



            tail -n 20 draft3.py
            hi = len(a)
            if lo < 0:
            raise ValueError('low must be non-negative')
            if lo == hi:
            return None
            mid = (lo + hi) // 2
            if x == a[mid]:
            return x
            if x > a[mid]:
            lo = mid + 1
            return self.bi_search(a, x, lo, hi)
            if x < a[mid]:
            hi = mid
            return self.bi_search(a, x, lo, hi)


            Only with sed is



            sed -r 's/^[[:space:]]*$//g' inputfile | sed '/^$/d'





            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/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%2faskubuntu.com%2fquestions%2f1128019%2fsed-d-and-grep-ev-failed-to-remove-blank-lines%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              3














              grep -v '^$' will remove empty lines. But what if we have spaces or tabs in some lines ? For example I added 3 spaces to parts of your text, and if we do cat -A we will see that it shows line terminator $, but it will be offset.



              $
              mid = (lo + hi) // 2$
              $
              if x == a[mid]:$
              return x$
              if x > a[mid]:$


              The second line there has 3 spaces, first one doesn't. So we also want to use [[:blank:]] character class to account for those as well:



              $ grep -v '^[[:blank:]]*$' text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Now you should see that the line with 3 added spaces is gone. The * signifies zero or more repetitions of the characters, so the pattern ^[[:blank:]]*$ also implies ^$ when there are zero whitespace or tab characters on the line. So this pattern handles both truly empty and seemingly empty lines. It also applies exactly the same to grep or sed, because we're using basic regex expressions and [[:blank:]] is one of the POSIX character classes, so it is portable.





              We could also do something like this in python but without regex patterns:



              $ python3 -c 'import sys; print("n".join([ l.rstrip() for l in sys.stdin if l.strip().split() ]))'  < text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Why does this work ? Because .split() on a string will split at whitespaces to extract non-whitespace tokens. If a line contains only spaces, the resulting list from .split() will be empty.





              As noted by ilkkachu in the comments, the issue can also occur if you use CRLF line endings ( used in DOS/Windows text files). It is easy to see if the file uses CRLF line endings via cat -A, they will be marked as ^M. For example,



              $ printf 'hellonrnWorldn   rntestnnnewtestn' | cat -A
              hello$
              ^M$
              World$
              ^M$
              test$
              $
              newtest$


              One thing that could be done to account for carriage return is this:



              $ printf 'hellonrnWorldn   ntestnnnewtestn' | sed '/^[[:blank:]]*r*$/d'
              hello
              World
              test
              newtest


              It may be simpler to first use a dos2unix utility designed specifically for converting DOS files to Unix files, and then use sed and grep. See ByteCommander's answer that shows example of how to do that.






              share|improve this answer





















              • 1





                "regular" whitespace like spaces could do that, or they might have CRLF line endings

                – ilkkachu
                Mar 23 at 11:53











              • @ilkkachu Good point, thank you. I've edited to account for CRLF as well

                – Sergiy Kolodyazhnyy
                Mar 23 at 19:48






              • 1





                oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

                – ilkkachu
                Mar 23 at 20:11
















              3














              grep -v '^$' will remove empty lines. But what if we have spaces or tabs in some lines ? For example I added 3 spaces to parts of your text, and if we do cat -A we will see that it shows line terminator $, but it will be offset.



              $
              mid = (lo + hi) // 2$
              $
              if x == a[mid]:$
              return x$
              if x > a[mid]:$


              The second line there has 3 spaces, first one doesn't. So we also want to use [[:blank:]] character class to account for those as well:



              $ grep -v '^[[:blank:]]*$' text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Now you should see that the line with 3 added spaces is gone. The * signifies zero or more repetitions of the characters, so the pattern ^[[:blank:]]*$ also implies ^$ when there are zero whitespace or tab characters on the line. So this pattern handles both truly empty and seemingly empty lines. It also applies exactly the same to grep or sed, because we're using basic regex expressions and [[:blank:]] is one of the POSIX character classes, so it is portable.





              We could also do something like this in python but without regex patterns:



              $ python3 -c 'import sys; print("n".join([ l.rstrip() for l in sys.stdin if l.strip().split() ]))'  < text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Why does this work ? Because .split() on a string will split at whitespaces to extract non-whitespace tokens. If a line contains only spaces, the resulting list from .split() will be empty.





              As noted by ilkkachu in the comments, the issue can also occur if you use CRLF line endings ( used in DOS/Windows text files). It is easy to see if the file uses CRLF line endings via cat -A, they will be marked as ^M. For example,



              $ printf 'hellonrnWorldn   rntestnnnewtestn' | cat -A
              hello$
              ^M$
              World$
              ^M$
              test$
              $
              newtest$


              One thing that could be done to account for carriage return is this:



              $ printf 'hellonrnWorldn   ntestnnnewtestn' | sed '/^[[:blank:]]*r*$/d'
              hello
              World
              test
              newtest


              It may be simpler to first use a dos2unix utility designed specifically for converting DOS files to Unix files, and then use sed and grep. See ByteCommander's answer that shows example of how to do that.






              share|improve this answer





















              • 1





                "regular" whitespace like spaces could do that, or they might have CRLF line endings

                – ilkkachu
                Mar 23 at 11:53











              • @ilkkachu Good point, thank you. I've edited to account for CRLF as well

                – Sergiy Kolodyazhnyy
                Mar 23 at 19:48






              • 1





                oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

                – ilkkachu
                Mar 23 at 20:11














              3












              3








              3







              grep -v '^$' will remove empty lines. But what if we have spaces or tabs in some lines ? For example I added 3 spaces to parts of your text, and if we do cat -A we will see that it shows line terminator $, but it will be offset.



              $
              mid = (lo + hi) // 2$
              $
              if x == a[mid]:$
              return x$
              if x > a[mid]:$


              The second line there has 3 spaces, first one doesn't. So we also want to use [[:blank:]] character class to account for those as well:



              $ grep -v '^[[:blank:]]*$' text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Now you should see that the line with 3 added spaces is gone. The * signifies zero or more repetitions of the characters, so the pattern ^[[:blank:]]*$ also implies ^$ when there are zero whitespace or tab characters on the line. So this pattern handles both truly empty and seemingly empty lines. It also applies exactly the same to grep or sed, because we're using basic regex expressions and [[:blank:]] is one of the POSIX character classes, so it is portable.





              We could also do something like this in python but without regex patterns:



              $ python3 -c 'import sys; print("n".join([ l.rstrip() for l in sys.stdin if l.strip().split() ]))'  < text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Why does this work ? Because .split() on a string will split at whitespaces to extract non-whitespace tokens. If a line contains only spaces, the resulting list from .split() will be empty.





              As noted by ilkkachu in the comments, the issue can also occur if you use CRLF line endings ( used in DOS/Windows text files). It is easy to see if the file uses CRLF line endings via cat -A, they will be marked as ^M. For example,



              $ printf 'hellonrnWorldn   rntestnnnewtestn' | cat -A
              hello$
              ^M$
              World$
              ^M$
              test$
              $
              newtest$


              One thing that could be done to account for carriage return is this:



              $ printf 'hellonrnWorldn   ntestnnnewtestn' | sed '/^[[:blank:]]*r*$/d'
              hello
              World
              test
              newtest


              It may be simpler to first use a dos2unix utility designed specifically for converting DOS files to Unix files, and then use sed and grep. See ByteCommander's answer that shows example of how to do that.






              share|improve this answer















              grep -v '^$' will remove empty lines. But what if we have spaces or tabs in some lines ? For example I added 3 spaces to parts of your text, and if we do cat -A we will see that it shows line terminator $, but it will be offset.



              $
              mid = (lo + hi) // 2$
              $
              if x == a[mid]:$
              return x$
              if x > a[mid]:$


              The second line there has 3 spaces, first one doesn't. So we also want to use [[:blank:]] character class to account for those as well:



              $ grep -v '^[[:blank:]]*$' text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Now you should see that the line with 3 added spaces is gone. The * signifies zero or more repetitions of the characters, so the pattern ^[[:blank:]]*$ also implies ^$ when there are zero whitespace or tab characters on the line. So this pattern handles both truly empty and seemingly empty lines. It also applies exactly the same to grep or sed, because we're using basic regex expressions and [[:blank:]] is one of the POSIX character classes, so it is portable.





              We could also do something like this in python but without regex patterns:



              $ python3 -c 'import sys; print("n".join([ l.rstrip() for l in sys.stdin if l.strip().split() ]))'  < text.txt
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)


              Why does this work ? Because .split() on a string will split at whitespaces to extract non-whitespace tokens. If a line contains only spaces, the resulting list from .split() will be empty.





              As noted by ilkkachu in the comments, the issue can also occur if you use CRLF line endings ( used in DOS/Windows text files). It is easy to see if the file uses CRLF line endings via cat -A, they will be marked as ^M. For example,



              $ printf 'hellonrnWorldn   rntestnnnewtestn' | cat -A
              hello$
              ^M$
              World$
              ^M$
              test$
              $
              newtest$


              One thing that could be done to account for carriage return is this:



              $ printf 'hellonrnWorldn   ntestnnnewtestn' | sed '/^[[:blank:]]*r*$/d'
              hello
              World
              test
              newtest


              It may be simpler to first use a dos2unix utility designed specifically for converting DOS files to Unix files, and then use sed and grep. See ByteCommander's answer that shows example of how to do that.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Mar 23 at 19:48

























              answered Mar 23 at 8:55









              Sergiy KolodyazhnyySergiy Kolodyazhnyy

              75.5k9155329




              75.5k9155329








              • 1





                "regular" whitespace like spaces could do that, or they might have CRLF line endings

                – ilkkachu
                Mar 23 at 11:53











              • @ilkkachu Good point, thank you. I've edited to account for CRLF as well

                – Sergiy Kolodyazhnyy
                Mar 23 at 19:48






              • 1





                oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

                – ilkkachu
                Mar 23 at 20:11














              • 1





                "regular" whitespace like spaces could do that, or they might have CRLF line endings

                – ilkkachu
                Mar 23 at 11:53











              • @ilkkachu Good point, thank you. I've edited to account for CRLF as well

                – Sergiy Kolodyazhnyy
                Mar 23 at 19:48






              • 1





                oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

                – ilkkachu
                Mar 23 at 20:11








              1




              1





              "regular" whitespace like spaces could do that, or they might have CRLF line endings

              – ilkkachu
              Mar 23 at 11:53





              "regular" whitespace like spaces could do that, or they might have CRLF line endings

              – ilkkachu
              Mar 23 at 11:53













              @ilkkachu Good point, thank you. I've edited to account for CRLF as well

              – Sergiy Kolodyazhnyy
              Mar 23 at 19:48





              @ilkkachu Good point, thank you. I've edited to account for CRLF as well

              – Sergiy Kolodyazhnyy
              Mar 23 at 19:48




              1




              1





              oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

              – ilkkachu
              Mar 23 at 20:11





              oh, I just noticed you used [:blank:] and not [:space:]. The latter would match the CR too.

              – ilkkachu
              Mar 23 at 20:11













              3
















              Presumably you want to remove not only empty lines, but also lines with only whitespace characters. For that, use:



              sed '/^s*$/d'   # or respectively
              grep -v '^s*$'


              The sed expression deletes every line with any number (*) of whitespace characters (s) in it. grep -v outputs any line which does not match the expression.



              Example usage



              $ sed '/^s*$/d' <draft3.py 
              hi = len(a)
              if lo < 0:
              raise ValueError('low must be non-negative')
              if lo == hi:
              return None
              mid = (lo + hi) // 2
              if x == a[mid]:
              return x
              if x > a[mid]:
              lo = mid + 1
              return self.bi_search(a, x, lo, hi)
              if x < a[mid]:
              hi = mid
              return self.bi_search(a, x, lo, hi)





              share|improve this answer






























                3
















                Presumably you want to remove not only empty lines, but also lines with only whitespace characters. For that, use:



                sed '/^s*$/d'   # or respectively
                grep -v '^s*$'


                The sed expression deletes every line with any number (*) of whitespace characters (s) in it. grep -v outputs any line which does not match the expression.



                Example usage



                $ sed '/^s*$/d' <draft3.py 
                hi = len(a)
                if lo < 0:
                raise ValueError('low must be non-negative')
                if lo == hi:
                return None
                mid = (lo + hi) // 2
                if x == a[mid]:
                return x
                if x > a[mid]:
                lo = mid + 1
                return self.bi_search(a, x, lo, hi)
                if x < a[mid]:
                hi = mid
                return self.bi_search(a, x, lo, hi)





                share|improve this answer




























                  3












                  3








                  3









                  Presumably you want to remove not only empty lines, but also lines with only whitespace characters. For that, use:



                  sed '/^s*$/d'   # or respectively
                  grep -v '^s*$'


                  The sed expression deletes every line with any number (*) of whitespace characters (s) in it. grep -v outputs any line which does not match the expression.



                  Example usage



                  $ sed '/^s*$/d' <draft3.py 
                  hi = len(a)
                  if lo < 0:
                  raise ValueError('low must be non-negative')
                  if lo == hi:
                  return None
                  mid = (lo + hi) // 2
                  if x == a[mid]:
                  return x
                  if x > a[mid]:
                  lo = mid + 1
                  return self.bi_search(a, x, lo, hi)
                  if x < a[mid]:
                  hi = mid
                  return self.bi_search(a, x, lo, hi)





                  share|improve this answer

















                  Presumably you want to remove not only empty lines, but also lines with only whitespace characters. For that, use:



                  sed '/^s*$/d'   # or respectively
                  grep -v '^s*$'


                  The sed expression deletes every line with any number (*) of whitespace characters (s) in it. grep -v outputs any line which does not match the expression.



                  Example usage



                  $ sed '/^s*$/d' <draft3.py 
                  hi = len(a)
                  if lo < 0:
                  raise ValueError('low must be non-negative')
                  if lo == hi:
                  return None
                  mid = (lo + hi) // 2
                  if x == a[mid]:
                  return x
                  if x > a[mid]:
                  lo = mid + 1
                  return self.bi_search(a, x, lo, hi)
                  if x < a[mid]:
                  hi = mid
                  return self.bi_search(a, x, lo, hi)






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 30 at 7:04

























                  answered Mar 23 at 8:37









                  dessertdessert

                  25.5k674108




                  25.5k674108























                      0














                      use



                      perl -p  -e 's/^[:blank:]*$//g' inputfile | sed '/^$/d' 


                      and you will have



                      tail -n 20 draft3.py
                      hi = len(a)
                      if lo < 0:
                      raise ValueError('low must be non-negative')
                      if lo == hi:
                      return None
                      mid = (lo + hi) // 2
                      if x == a[mid]:
                      return x
                      if x > a[mid]:
                      lo = mid + 1
                      return self.bi_search(a, x, lo, hi)
                      if x < a[mid]:
                      hi = mid
                      return self.bi_search(a, x, lo, hi)


                      Only with sed is



                      sed -r 's/^[[:space:]]*$//g' inputfile | sed '/^$/d'





                      share|improve this answer




























                        0














                        use



                        perl -p  -e 's/^[:blank:]*$//g' inputfile | sed '/^$/d' 


                        and you will have



                        tail -n 20 draft3.py
                        hi = len(a)
                        if lo < 0:
                        raise ValueError('low must be non-negative')
                        if lo == hi:
                        return None
                        mid = (lo + hi) // 2
                        if x == a[mid]:
                        return x
                        if x > a[mid]:
                        lo = mid + 1
                        return self.bi_search(a, x, lo, hi)
                        if x < a[mid]:
                        hi = mid
                        return self.bi_search(a, x, lo, hi)


                        Only with sed is



                        sed -r 's/^[[:space:]]*$//g' inputfile | sed '/^$/d'





                        share|improve this answer


























                          0












                          0








                          0







                          use



                          perl -p  -e 's/^[:blank:]*$//g' inputfile | sed '/^$/d' 


                          and you will have



                          tail -n 20 draft3.py
                          hi = len(a)
                          if lo < 0:
                          raise ValueError('low must be non-negative')
                          if lo == hi:
                          return None
                          mid = (lo + hi) // 2
                          if x == a[mid]:
                          return x
                          if x > a[mid]:
                          lo = mid + 1
                          return self.bi_search(a, x, lo, hi)
                          if x < a[mid]:
                          hi = mid
                          return self.bi_search(a, x, lo, hi)


                          Only with sed is



                          sed -r 's/^[[:space:]]*$//g' inputfile | sed '/^$/d'





                          share|improve this answer













                          use



                          perl -p  -e 's/^[:blank:]*$//g' inputfile | sed '/^$/d' 


                          and you will have



                          tail -n 20 draft3.py
                          hi = len(a)
                          if lo < 0:
                          raise ValueError('low must be non-negative')
                          if lo == hi:
                          return None
                          mid = (lo + hi) // 2
                          if x == a[mid]:
                          return x
                          if x > a[mid]:
                          lo = mid + 1
                          return self.bi_search(a, x, lo, hi)
                          if x < a[mid]:
                          hi = mid
                          return self.bi_search(a, x, lo, hi)


                          Only with sed is



                          sed -r 's/^[[:space:]]*$//g' inputfile | sed '/^$/d'






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Mar 26 at 15:52









                          aborrusoaborruso

                          21115




                          21115






























                              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%2f1128019%2fsed-d-and-grep-ev-failed-to-remove-blank-lines%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

                              Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

                              Fil:Tokke komm.svg

                              Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?