{"id":2292,"date":"2017-12-08T06:38:55","date_gmt":"2017-12-08T06:38:55","guid":{"rendered":"http:\/\/www.scmgalaxy.com\/tutorials\/?p=2292"},"modified":"2020-01-09T09:57:02","modified_gmt":"2020-01-09T09:57:02","slug":"remove-blank-line-using-grep-and-sed","status":"publish","type":"post","link":"https:\/\/www.devopsschool.com\/blog\/remove-blank-line-using-grep-and-sed\/","title":{"rendered":"Remove blank line using Grep and sed"},"content":{"rendered":"<p><strong>scmuser created the topic: Remove blank line using Grep and sed<\/strong><br \/>\nHi,<\/p>\n<p>How do you remove blank line using grep and sed in shell scripting?<\/p>\n<p><strong>rajeshkumar replied the topic: Re: Remove blank line using Grep and sed<\/strong><\/p>\n<p><code>grep -v \"^$\" filename > newfilename<\/code><\/p>\n<p>The ^$ within the quotes is a regular expression: ^=beginning of line, $=end of line, with no characters between.<\/p>\n<p>To store output to another file use redirection operator:<\/p>\n<p>$ sed &#8216;\/^$\/d&#8217; \/tmp\/data.txt > \/tmp\/output.txt<\/p>\n<p>Regards,<br \/>\nRajesh Kumar<br \/>\nTwitt me @ <a href=\"http:\/\/twitter.com\/RajeshKumarIn\" target=\"_blank\" rel=\"noopener\">twitter.com\/RajeshKumarIn<\/a><\/p>\n<p><strong>rajeshkumar replied the topic: Re: Remove blank line using Grep and sed<\/strong><br \/>\nThe above script will work only if you have no character in the blank line but most of the time it can happen that Tab can be possle in blank line&#8230;.<\/p>\n<p>so for this situation u should try following..<\/p>\n<p><code>sed '\/^[PRESS TAB]*$\/d' filename<\/code><\/p>\n<p>Regards,<br \/>\nRajesh Kumar<br \/>\nTwitt me @ <a href=\"http:\/\/twitter.com\/RajeshKumarIn\" target=\"_blank\" rel=\"noopener\">twitter.com\/RajeshKumarIn<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>scmuser created the topic: Remove blank line using Grep and sed Hi, How do you remove blank line using grep and sed in shell scripting? rajeshkumar replied the topic: Re:&#8230; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_joinchat":[],"footnotes":""},"categories":[454],"tags":[475],"class_list":["post-2292","post","type-post","status-publish","format-standard","hentry","category-shell-script","tag-grep"],"_links":{"self":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2292","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/comments?post=2292"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2292\/revisions"}],"predecessor-version":[{"id":2293,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2292\/revisions\/2293"}],"wp:attachment":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/media?parent=2292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/categories?post=2292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/tags?post=2292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}