博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux追加所有文件到新的文件(cat)
阅读量:6259 次
发布时间:2019-06-22

本文共 343 字,大约阅读时间需要 1 分钟。

例子如下,存在test1.txt, test2.txt, test3.txt,现在准备把这三个文件的内容都追加到testall.txt 中

test1.txt

1 2 3

4 5 6

test2.txt

a b c

e f g

test3.txt

59 9 6

z c b

则可以使用命令:cat test1.txt test2.txt test3.txt > testall.txt, 生成如下文件:

testall.txt

1 2 3
4 5 6
a b c
e f g
59 9 6
z c b

当然,还有更骚的操作,那就是cat test* > testall.txt

转载于:https://www.cnblogs.com/chenwenyan/p/11007463.html

你可能感兴趣的文章
杭电1029--Ignatius and the Princess IV(哈希)
查看>>
Cesium中级教程3 - Camera - 相机(摄像机)
查看>>
redis面试题
查看>>
windows主机mysql忘记密码如何重置
查看>>
Learn Python 010: Dictionary - Cinema Simulator
查看>>
转载——c++中冒号(:)和双冒号(::)的用法
查看>>
使用CSS3改变文本选中的默认颜色
查看>>
【leetcode】560. Subarray Sum Equals K
查看>>
使printf打印信息带有颜色
查看>>
Linux中磁盘分区——理论篇
查看>>
看博客学学Android(七)
查看>>
19.05.02--存储二进制数据
查看>>
linux输出与查看的几种方式
查看>>
HDU - 3516 Tree Construction
查看>>
Bind安装配置及应用
查看>>
滚动数组+离线 优化
查看>>
合并两个有序数组的golang实现
查看>>
单元测试 模块接口测试
查看>>
洛谷P3371【模板】单源最短路径
查看>>
dedecms---一个简单酷站的构建及解析
查看>>