StackOverflow 文档 Bash 教程 用 cat 连接文件 连接文件 Created: November-22, 2018 这是 cat 的主要目的。 cat file1 file2 file3 > file_all cat 也可以类似地用于连接文件作为管道的一部分,例如 cat file1 file2 file3 | grep foo 打印文件的内容用 cat