使用 sed 命令

发布于 2024-12-16 11:41:23 字数 371 浏览 0 评论 0原文

可能的重复:
根据模式连接线

我有以下文件:

test 
one 
My
two 
Hi
three

我需要一种使用 cat 的方法并 sed 给出以下输出:

testone
Mytwo
Hithree

How can i do I get this in a single command?

Possible Duplicate:
Join lines based on pattern

I have the following file:

test 
one 
My
two 
Hi
three

i need a way to use cat and sed to give the following output:

testone
Mytwo
Hithree

How can i achieve this in a single command?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁对谁错谁最难过 2024-12-23 11:41:23

其中文件“foo.txt”包含您的文本:

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

Where the file "foo.txt" contains your text:

cat foo.txt | sed -e 'N;s/\n//'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文