在Linux中,cat
命令用于连接(concatenate)文件并打印到标准输出设备(通常是屏幕)
cat file1 file2 > output_file
在这个例子中,file1
和file2
是要合并的文件,>
符号表示将合并后的内容输出到output_file
。如果output_file
不存在,它将被创建;如果已经存在,它的内容将被覆盖。
如果你想将多个文件的内容按顺序合并到一个文件中,可以使用以下方法:
cat file1 file2 file3 > output_file
这将把file1
、file2
和file3
的内容按顺序合并到output_file
中。