I have a text file containing some records. Each record is splitted in 4 rows (not always 4), like the example:

----
row1
row2
row3
row4
----
row1
etc...

Each row is ended with the Line Feed character (LF). Ok, I need to obtain the record in only one line, replacing the LF character with a Space, like in example:

---- row1 row2 row3 row4
---- row1 row2 ...etcetera

Any help or suggestion for the solution? Thanks in advance.

link|improve this question

50% accept rate
feedback

6 Answers

up vote 1 down vote accepted

maybe this can work ?

cat FILE | xargs | sed "s/ ---- /\n---- /g"
link|improve this answer
This is good, I think I'll use it with a redirect to file. – Possa Feb 21 '11 at 10:53
feedback
tr  "\n" " "  <file | awk '{gsub(/--+/,"\n&");print}'

or all in one awk

awk '/--/{print s;printf $0;s=""}!/--/{s=s" "$0}END{print s}' file
link|improve this answer
feedback

You need to know what exactly is the separator between the records. In your example it looks like it's '----', but you also said that there is a variable number of records.

Anyway, things like that are best done using code like this:

cat source | (
  acc=""
  while read -r line; do
  if test "$line" = "----" -a -n "$acc"; then
    echo "$acc"
    acc="$line"
  else
    test -n "$acc" && { acc="$acc "; }
    acc="${acc}$line"
  fi
  done
  test -n "$acc" && { echo "$acc"; }
)
link|improve this answer
The separator between the records is exactly "----". – Possa Feb 21 '11 at 10:47
feedback

And a much simpler approach would be this

cat text_file | tr '\n' ' ' | sed 's/ ---/\n---/g'
link|improve this answer
feedback

awk 'BEGIN {RS="----"; FS="\n"; OFS=" "} FNR==1 {next} {$1=RS $1; print}' input.file

link|improve this answer
feedback

Use awk for this rather than a shell script

Iterating through a text file and doing different things based on the line contents, is precisely what awk was designed to do.

In the 21st century shell scripts should be kept simple and other tools used for complex logic.

link|improve this answer
Why so complicated? awk is more complicated than sed, sed is more complicated than tr. – tombom Feb 18 '11 at 8:56
@tombom, on the contrary, awk is much simpler to use than sed. – kurumi Feb 18 '11 at 9:33
@kurumi I don't think so. What would be the solution for this with awk? Then consider how much you need to read and learn about awk, assuming you don't know anything about awk and compare the same with sed. sed wins this by far. – tombom Feb 18 '11 at 9:52
@tombom, there are many other things sed cannot do as easily as awk. consider doing maths, parsing fields in a csv file, table lookups, etc. Learning awk is more useful than learning sed. – kurumi Feb 18 '11 at 10:04
@kurumi That might be right, I'm not that familiar with awk. But it's about this particular problem here. And certainly this is solved with sed (and tr, see my answer) faster than with awk (again considering how much you have to learn). – tombom Feb 18 '11 at 10:42
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.