Oracle Technology Blog

OraTech Blog provides tips,tricks,scripts and how-to type answers for Oracle related technologies. I use these commands very often, so I thought it would be useful to share with everybody. Please feel free to include your comments/corrections/questions.

Tuesday, May 30, 2006

HOW-TO remove space between lines

$cat space_between_lines.txt
first line

second

third



$sed /^$/d space_between_lines.txt
first line
second
third
$

0 Comments:

Post a Comment

<< Home