The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Removing Blank Lines dhanamurthy Shell Programming and Scripting 3 05-08-2008 02:52 AM
How to count lines - ignoring blank lines and commented lines kthatch UNIX for Dummies Questions & Answers 6 05-25-2007 02:21 AM
Remove blank lines osymad UNIX for Dummies Questions & Answers 4 08-27-2005 07:41 AM
delete blank lines or lines with spaces only vascobrito UNIX for Dummies Questions & Answers 3 01-13-2004 07:36 AM
Blank Lines - End of file saabir Shell Programming and Scripting 4 07-15-2003 12:55 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 07-16-2008
alrinno alrinno is offline
Registered User
  
 

Join Date: Jun 2008
Posts: 18
sed and blank lines

hello,

i have tried to remove blank lines from a file using korn shell script file.. it doesn't seem to work!

i tried sed '/^\s*$/d' infile > outfile but that didn't work
i tried sed 's/ *$//;/^$/d' infile > outfile and that didn't work
i tried sed '/^s./d' infile > outfile and that didn't work

what can i do? this is a huge file and some blank lines might be spaces? or tabs? how can i know?

thank you
  #2 (permalink)  
Old 07-16-2008
Annihilannic Annihilannic is offline Forum Advisor  
  
 

Join Date: May 2008
Location: Sydney, Australia
Posts: 1,009
Does it have to be sed?


Code:
grep -v '^[[:space:]]*$' infile > outfile

You could use a similar regexp in sed of course if you wished...
  #3 (permalink)  
Old 07-16-2008
alrinno alrinno is offline
Registered User
  
 

Join Date: Jun 2008
Posts: 18
thank you Annihilannic, that worked beautifully on the command line. Use the same thing inside of a script file?

thank you
  #4 (permalink)  
Old 07-16-2008
Annihilannic Annihilannic is offline Forum Advisor  
  
 

Join Date: May 2008
Location: Sydney, Australia
Posts: 1,009
Yes. Virtually anything you can do on a command-line will be fine in a script. Just keep in mind that the script may not necessarily be running from the same directory.
  #5 (permalink)  
Old 07-16-2008
fpmurphy's Avatar
fpmurphy fpmurphy is offline Forum Staff  
Moderator
  
 

Join Date: Dec 2003
Location: Florida
Posts: 1,934

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

  #6 (permalink)  
Old 07-17-2008
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,554

Code:
awk '!/^$/' file

  #7 (permalink)  
Old 07-17-2008
alrinno alrinno is offline
Registered User
  
 

Join Date: Jun 2008
Posts: 18
Thanks to everyone who helped! much appreciated..
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 05:37 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0