Delete blank spaces and blank lines in a file


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Delete blank spaces and blank lines in a file
# 1  
Old 02-10-2015
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.
# 2  
Old 02-10-2015
Well, that rather depends. There are several tools to do a variety of things, but can you show us some sample input & output wrapped in CODE tags for clarity.

It would be good to know the OS and version you are running so we don't suggest tools your won't have. The output from uname -a would be useful.



Regards,
Robin
# 3  
Old 02-10-2015
Please be more precise - do you want to eliminate ALL spaces even though they might be field separators? What about <TAB>s? Are lines that contain nothing but white space to be considered "blank" lines?
# 4  
Old 02-10-2015
Hi Gurus,
My file have spaces separators TAB and back spaces, I need one command for delete all spaces and all blank lines in this file.

Thank you for advanced.
# 5  
Old 02-10-2015
... and do you want back-spaces retained or removed?

Can you show us the input and output? If there are non-printable characters, perhaps send the files through od to give us the character codes:-
Code:
od -x file



Robin
# 6  
Old 02-10-2015
Hi Gurus,
I need to back-spaces removed, i am using operative system Solaris.

Thanks & Regards.
# 7  
Old 02-10-2015
Hi,
Many examples with sed:

Delete blank line:
Code:
sed -e '/^[[:space:]]*$/d' file

Delete blank space:
Code:
sed -e 's/[[:space:]]//g' file

Replace several blank spaces by only one blank space
Code:
sed -e 's/\([[:space:]]\)[[:space:]]*/\1/g' file

Regards.

Last edited by disedorgue; 02-11-2015 at 07:01 AM.. Reason: Previous unconstructive message.
This User Gave Thanks to disedorgue For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Tried many options but unable to delete blank lines from text file

Hi, I tried the following options but was unable to delete blank lines from file Input file = temp.hash.txt temp.hash.txt content 90 0 89.56 0 0 57575.4544 56.89 (9 Replies)
Discussion started by: uuuunnnn
9 Replies

2. 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

3. Shell Programming and Scripting

Reform Lines in File without blank lines and spaces

Hello All, I have a file with data as below. Each line consists of 21 fields. I am not able to load them back to the database. 50733339,"834","834 ","005010X279A1","N","Y","007977163","0001 ",30,"2110D ","EB ","EB007 ","2 ","Conditional Required Data Element Miss ing... (3 Replies)
Discussion started by: Praveenkulkarni
3 Replies

4. Shell Programming and Scripting

Delete blank lines in a file

Hi All, I have a file and I need to delete the lines that are blank and is starting with some characters below. Something like below: Regular Ascii File: Line1: AGODA1 BUSAN||SK Lord Beach 4/6/2012 4/7/2012 68060 Line2: AGODA2 BUSAN||SK Beach Hotel 4/6/2012 4/7/2012 610200 Line3: ... (4 Replies)
Discussion started by: rkumar28
4 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. Shell Programming and Scripting

Delete blank lines from a file

Hi, I want to use diff to compare two files in a Perl file. But one of the files has some blank lines at the end. So I want to delete the blank lines from the file firstly and then use diff to compare them. But I dont know how to delete the blank lines from the files. Meanwhile, the system is... (5 Replies)
Discussion started by: Damon_Qu
5 Replies

7. UNIX for Dummies Questions & Answers

delete blank lines from a file

can anyone show me how to delete blank lines from a file. thanks in advance (2 Replies)
Discussion started by: sachin.gangadha
2 Replies

8. Shell Programming and Scripting

Delete blank lines at the end of file

I am attempting to delete blank lines in my file and I've used this command: sed '/^$/d' $file > $file.fixed all this seems to do is copy the file and not delete the blank lines located at the end of the file. Any assistance would be greatly appreciated. (3 Replies)
Discussion started by: TL56
3 Replies

9. Shell Programming and Scripting

regex to delete multiple blank lines in a file?

can't figure out a way to delete multiple empty lines but keep single empty lines in a file, file is like this #cat file 1 2 3 4 5 6 - What I want is 1 2 (6 Replies)
Discussion started by: fedora
6 Replies

10. UNIX for Dummies Questions & Answers

delete blank lines or lines with spaces only

hi there i'm trying to delete blank lines and or lines with spaces only from a series of files in an directory. to do so, i'm using this: for files in `ls /users/myname/pesop* 2>/dev/null` do grep -v ^$ $files > newfile mv newfile $files done now, this works great for blank lines but... (3 Replies)
Discussion started by: vascobrito
3 Replies
Login or Register to Ask a Question