Removing blank lines not working


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Removing blank lines not working
# 1  
Old 08-19-2012
Removing blank lines not working

In my bash script I want to echo lines in a file and ensure no blank lines are echoed:
Code:
for i in $(cat txt)
do
echo $i | sed 's/|/ /g;s/ SEARCHTERM$//g;s/ /\r\n/g;s/^$/d'
done

Keep in mind this is a fragment so ignore the fact that the for loop is not closed. When I add the "s/^$/d' per several other examples I've found on these forums I receive an "unterminated s" error. How do I properly remove blank lines? I tried removing the s and breaking it into a separate sed statement but either it's not removing the blank lines or I get an unterminated s error. Sample input file is UNIX GID's from the /etc/group file, one per line.

Last edited by MaindotC; 08-19-2012 at 04:06 PM..
# 2  
Old 08-19-2012
Hi MaindotC,

You have a mix between the selection command
Code:
/.../

and substitute command
Code:
s/.../.../

Use:
Code:
/^$/ d

This User Gave Thanks to birei For This Post:
# 3  
Old 08-19-2012
I'm still getting blank lines Smilie I tried adding it at the end of my sed statement as well as piping it into another sed expression. Removed the "s" - still blank lines.
# 4  
Old 08-19-2012
There are lots of ways to do this depending on what tools you're using to process the lines that aren't empty. But, for what it looks like you're trying to do with this script, you could use:
Code:
grep . txt

or if you really want to use sed:
Code:
sed '/^$/d' txt

This User Gave Thanks to Don Cragun For This Post:
# 5  
Old 08-19-2012
Quote:
Originally Posted by MaindotC
I'm still getting blank lines Smilie I tried adding it at the end of my sed statement as well as piping it into another sed expression. Removed the "s" - still blank lines.
Blank lines might not be empty lines (immediate newline), but have one or more whitespace characters between the beginning of the line and the newline. Does this help?

Code:
sed  -E '/^[[:space:]]*$/ d' input-file >output-file

This User Gave Thanks to agama For This Post:
# 6  
Old 08-19-2012
Code:
awk 'NF' yourfile.txt

This User Gave Thanks to codecaine For This Post:
# 7  
Old 08-19-2012
This is really weird...I modified my sed expression:[code]for i in $(cat txt)
do
echo $i | sed 's/|/ /g;s/ SEARCHTERM$//g;s/ /\r\n/g;/^[[:space:]]*$/ d;/^$/d'
done[/code
I tried adding the -E but I got a lot of error messages - not sure why that was included. So most of the whitespaces are gone...there used to be 5 whitespaces, now there is 1. So based on this information I have to assume there's something freaky going on with my input file?

---------- Post updated at 03:10 PM ---------- Previous update was at 03:09 PM ----------

Quote:
Originally Posted by codecaine
Code:
awk 'NF' yourfile.txt

Close, but I'm still getting some whitespaces. Possibly an issue with the input file? Anyway I can view special, hidden chars?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To check Blank Lines, Blank Records and Junk Characters in a File

Hi All Need Help I have a file with the below format (ABC.TXT) : ®¿¿ABCDHEJJSJJ|XCBJSKK01|M|7348974982790 HDFLJDKJSKJ|KJALKSD02|M|7378439274898 KJHSAJKHHJJ|LJDSAJKK03|F|9898982039999 (cont......) I need to write a script where it will check for : blank lines (between rows,before... (6 Replies)
Discussion started by: chatwithsaurav
6 Replies

2. UNIX for Advanced & Expert Users

Delete blank spaces and blank lines in a file

Hi Gurus, Somebody can say me how to delete blank spaces and blank lines in a file unix, please. Thank you for advanced. (10 Replies)
Discussion started by: systemoper
10 Replies

3. Shell Programming and Scripting

Removing blank lines

Hi, my input file is like this I want to remove the blank line. "/home/rit/sandbox/garuda/data/test/woman/T_RITK_F0008_ML_100080039.lab" r a N e l a k sh a m . "/home/rit/sandbox/garuda/data/test/woman/T_RITK_F0008_ML_100070453.lab" a v a s (4 Replies)
Discussion started by: sreejithalokkan
4 Replies

4. Shell Programming and Scripting

Removing blank lines from a file

Hi All, How do i remove continuos blank lines from a file. I have a file with data: abc; def; ghi; jkl; mno; pqr; In the above file, there are two blank lines. I want to remove, one out of them. My output should look like: (2 Replies)
Discussion started by: raosr020
2 Replies

5. Shell Programming and Scripting

Delete blank lines, if blank lines are more than one using shell

Hi, Consider a file named "testfile" The contents of file are as below first line added for test second line added for test third line added for test fourth line added for test fifth line added for test (5 Replies)
Discussion started by: anil8103
5 Replies

6. UNIX for Dummies Questions & Answers

Removing blank lines in a file

Hi I have a text file that has blank lines at different places. How to remove all the blank lines in a file? Thanks Ashok (3 Replies)
Discussion started by: ashok.k
3 Replies

7. Shell Programming and Scripting

PERL: removing blank lines from multiple files

Hi Guru's , I have a whole bunch of files in /var/tmp that i need to strip any blank lines from, so ive written the following script to identify the lines (which works perfectly).. but i wanted to know, how can I actually strip the identified lines from the actual source files ?? my... (11 Replies)
Discussion started by: hcclnoodles
11 Replies

8. Shell Programming and Scripting

Removing blank lines from comma seperated and space seperated file.

Hi, I want to remove empty/blank lines from comma seperated and space seperated files Thanks all for help (11 Replies)
Discussion started by: pinnacle
11 Replies

9. Shell Programming and Scripting

removing duplicate blank lines

Hi, how to remove the blank lines from the file only If we have more than one blank line. thanks rameez (8 Replies)
Discussion started by: rameezrajas
8 Replies

10. Shell Programming and Scripting

Removing Blank Lines

Hi i have the below lines from a file 7538 PRGRP450800PERSONAL SOAP AND BATH ADDITIV 7036 PRGRP450800PERSONAL SOAP AND BATH ADDITIV 7036 PRGRP450800PERSONAL SOAP AND BATH ADDITIV 7036... (3 Replies)
Discussion started by: dhanamurthy
3 Replies
Login or Register to Ask a Question