在 shell 中水平显示两个文件
文件 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
paste
命令用作:演示:
用作分隔符的默认字符是制表符。如果您想要其他字符(例如空格),可以使用
-d
选项:You can use the
paste
command as:Demo:
The default character used as delimiter is tab. If you want some other character say space, you can use the
-d
option as: