![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 pattern which is spread in multiple lines | sabyasm | Shell Programming and Scripting | 2 | 05-13-2008 06:19 AM |
| using tr to put multiple lines of output into one line | otes4 | Shell Programming and Scripting | 3 | 02-18-2008 11:30 AM |
| merge multiple lines from flat file | hnhegde | Shell Programming and Scripting | 4 | 12-05-2006 07:13 PM |
| Use sed to merge multiple lines | xb88 | Shell Programming and Scripting | 3 | 08-08-2006 02:54 PM |
| Removing user from multiple groups via command line | jquizon62 | SUN Solaris | 1 | 10-28-2004 01:56 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Removing end of line to merge multiple lines
I'm sure this will be an easy question for you experts out there, but I have been searching the forum and working on this for a couple hours now and can't get it right.
I have a very messy data file that I am trying to tidy up - one of the issues is some records are split into multiple lines: 999999000 "Name" "this is text for line one line two line three" And I've been trying all sorts of version of sed to get it to look like this: 999999000 "Name" "this is text for line one line two line three" and yes, I have tried things like sed 's/$/ /' file1 > file2... the problem is not every line has an issue, so I'm trying to figure out how to only remove line feeds for problematic lines, not all lines the problem lines will begin with alpha characters not numeric, so I've been trying to do something with that but to no avail thanks Last edited by tink; 10-14-2008 at 12:17 PM.. |
| Bookmarks |
| Tags |
| line endings, line terminators, replace, sed |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|