使用sed命令

时间:2011-11-16 18:05:49

标签: bash sed solaris

  

可能重复:
  Join lines based on pattern

我有以下文件:

test 
one 
My
two 
Hi
three

我需要一种方法来使用cat和sed来提供以下输出:

testone
Mytwo
Hithree

如何在单个命令中实现此目的?

1 个答案:

答案 0 :(得分:2)

文件“foo.txt”包含您的文字:

cat foo.txt | sed -e 'N;s/\n//'