我有两个文件:file1和file2。如何将file2的内容追加到file1,使file1的内容持久化进程?


当前回答

试试这个命令:

cat file2 >> file1

其他回答

仅供参考,使用ddrescue提供了一种可中断的方式来完成任务,例如,如果你有大文件,需要暂停,然后在稍后的某个点继续执行:

ddrescue -o $(wc --bytes file1 | awk '{ print $1 }') file2 file1 logfile

日志文件是重要的位。您可以使用Ctrl-C中断该进程,并通过再次指定完全相同的命令来恢复它,ddrescue将读取日志文件并从它停止的地方恢复。-o A标志告诉ddrescue从输出文件(file1)中的字节A开始。所以wc——bytes file1 | awk '{print $1}'只是以字节为单位提取file1的大小(如果你喜欢,你可以直接从ls中粘贴输出)。

正如ngks在评论中指出的,缺点是ddrescue在默认情况下可能不会被安装,所以你必须手动安装它。另一个复杂的问题是,在你的存储库中可能有两个版本的ddrescue:查看这个askubuntu问题以获得更多信息。你想要的版本是GNU的ddrescue,在基于debian的系统上是名为gddrescue的包:

sudo apt install gddrescue

对于其他发行版,请检查您的包管理系统中GNU版本的ddrescue。

另一个解决方案:

tee < file1 -a file2

Tee的好处是,你可以添加到尽可能多的文件,例如:

tee < file1 -a file2 file3 file3

将file1的内容追加到file2、file3和fil4。

从手册页:

-a, --append
       append to the given FILEs, do not overwrite

Zsh特定:你也可以在没有cat的情况下做到这一点,尽管老实说cat更可读:

>> file1 < file2

>>将STDIN附加到file1, < dumps file2附加到STDIN。

使用bash内置重定向(tldp):

cat file2 >> 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