标签: bash sed solaris
可能重复: Join lines based on pattern
我有以下文件:
test one My two Hi three
我需要一种方法来使用cat和sed来提供以下输出:
testone Mytwo Hithree
如何在单个命令中实现此目的?
答案 0 :(得分:2)
文件“foo.txt”包含您的文字:
cat foo.txt | sed -e 'N;s/\n//'