在 shell 中水平显示两个文件

发布于 2024-10-07 00:36:50 字数 259 浏览 7 评论 0原文

文件 1:

dsf
sdfsd
dsfsdf

文件 2:

sdfsdfsd
sdfsdsdfsdf
dsfsdfsdfsdf

我想水平定位两个文件,所以结果是:

dsf        sdfsdfsd
sdfsd      sdfsdsdfsdf
dsfsdf     dsfsdfsdfsdf

谢谢

file 1:

dsf
sdfsd
dsfsdf

file 2:

sdfsdfsd
sdfsdsdfsdf
dsfsdfsdfsdf

I want to cat two files horizontally so the result is:

dsf        sdfsdfsd
sdfsd      sdfsdsdfsdf
dsfsdf     dsfsdfsdfsdf

thanks

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

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

发布评论

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

评论(1

酷遇一生 2024-10-14 00:36:50

您可以将 paste 命令用作:

paste file1 file2

演示:

$ cat file1
1
2
3
$ cat file2
3
4
5
$ paste file1 file2
1   3
2   4
3   5
$ 

用作分隔符的默认字符是制表符。如果您想要其他字符(例如空格),可以使用 -d 选项:

paste -d ' ' file1 file2

You can use the paste command as:

paste file1 file2

Demo:

$ cat file1
1
2
3
$ cat file2
3
4
5
$ paste file1 file2
1   3
2   4
3   5
$ 

The default character used as delimiter is tab. If you want some other character say space, you can use the -d option as:

paste -d ' ' file1 file2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文