我有两个文件:file1和file2。如何将file2的内容追加到file1,使file1的内容持久化进程?
当前回答
Cat可以是简单的解决方案,但当我们连接大文件时变得非常缓慢,find -print可以拯救你,尽管你必须使用Cat一次。
amey@xps ~/work/python/tmp $ ls -lhtr
total 969M
-rw-r--r-- 1 amey amey 485M May 24 23:54 bigFile2.txt
-rw-r--r-- 1 amey amey 485M May 24 23:55 bigFile1.txt
amey@xps ~/work/python/tmp $ time cat bigFile1.txt bigFile2.txt >> out.txt
real 0m3.084s
user 0m0.012s
sys 0m2.308s
amey@xps ~/work/python/tmp $ time find . -maxdepth 1 -type f -name 'bigFile*' -print0 | xargs -0 cat -- > outFile1
real 0m2.516s
user 0m0.028s
sys 0m2.204s
其他回答
Cat file2 >> file1
>>操作符将输出追加到命名文件,如果命名文件不存在,则创建该文件。
Cat file1 file2 > file3
这将两个或多个文件连接到一个文件。您可以拥有任意数量的源文件。例如,
Cat *.txt >> newfile.txt
Update 20130902 In the comments eumiro suggests "don't try cat file1 file2 > file1." The reason this might not result in the expected outcome is that the file receiving the redirect is prepared before the command to the left of the > is executed. In this case, first file1 is truncated to zero length and opened for output, then the cat command attempts to concatenate the now zero-length file plus the contents of file2 into file1. The result is that the original contents of file1 are lost and in its place is a copy of file2 which probably isn't what was expected.
更新20160919 在评论中,tpartee建议链接到支持信息/来源。为了获得权威的参考,我引导善良的读者去linuxcommand.org的sh手册页,上面写着:
在执行命令之前,命令的输入和输出可能会被重定向 使用shell解释的特殊符号。
虽然这确实告诉读者他们需要知道什么,但如果你没有逐字逐句地寻找和分析语句,就很容易错过。这里最重要的单词是before。执行命令前重定向已完成(或失败)。
在cat file1 file2 > file1的示例中,shell首先执行重定向,以便I/O句柄在执行命令之前位于执行命令的环境中。
在Ian Allen的网站上可以以Linux课件的形式找到一个更友好的版本,其中详细介绍了重定向优先级。他的I/O重定向笔记页面中有很多关于这个主题的内容,包括重定向即使没有命令也能工作。把这个传递给shell:
$ >out
...创建一个名为out的空文件。shell首先设置I/O重定向,然后查找命令,没有找到命令,然后完成操作。
试试这个命令:
cat file2 >> file1
注意:如果你需要使用sudo,请这样做:
Sudo bash -c 'cat file2 >> file1'
简单地将sudo放在命令前的通常方法将失败,因为特权升级不会延续到输出重定向中。
Zsh特定:你也可以在没有cat的情况下做到这一点,尽管老实说cat更可读:
>> file1 < file2
>>将STDIN附加到file1, < dumps file2附加到STDIN。
Cat可以是简单的解决方案,但当我们连接大文件时变得非常缓慢,find -print可以拯救你,尽管你必须使用Cat一次。
amey@xps ~/work/python/tmp $ ls -lhtr
total 969M
-rw-r--r-- 1 amey amey 485M May 24 23:54 bigFile2.txt
-rw-r--r-- 1 amey amey 485M May 24 23:55 bigFile1.txt
amey@xps ~/work/python/tmp $ time cat bigFile1.txt bigFile2.txt >> out.txt
real 0m3.084s
user 0m0.012s
sys 0m2.308s
amey@xps ~/work/python/tmp $ time find . -maxdepth 1 -type f -name 'bigFile*' -print0 | xargs -0 cat -- > outFile1
real 0m2.516s
user 0m0.028s
sys 0m2.204s
推荐文章
- 如何在Linux中循环目录?
- 在命令行中使用Firefox截取完整页面的截图
- 如何确定一个进程是否运行在lxc/Docker内部?
- 仅在文件不存在时才将行追加到文件中
- 文件中最长的一行
- 如何强制makefile重新构建目标?
- 如何在父进程退出后使子进程死亡?
- 如何完全卸载Ubuntu中的nodejs, npm和node
- 将列表的Python列表写入csv文件
- 从URL执行bash脚本
- [: shell编程中的意外操作符
- 如何在变量中存储标准错误
- 在Unix中,我可以在一个目录中运行'make'而不首先cd'到该目录吗?
- 如何从命令行重置Jenkins安全设置?
- 如何查看Linux共享库正在导出的函数列表?