使用 PowerShell 连接文件

Rohan Timalsina 2023年1月30日
  1. 在 PowerShell 中使用 Out-File 连接文件
  2. 在 PowerShell 中使用 Set-Content 连接文件
使用 PowerShell 连接文件

PowerShell 允许你执行不同的文件操作,例如创建、复制、移动、删除、查看和重命名文件。另一个重要功能允许你将多个文件连接到一个文件中。

你可以轻松地将多个文件的内容合并到一个文件中。本教程将介绍使用 PowerShell 连接文件的不同方法。

在 PowerShell 中使用 Out-File 连接文件

Out-File cmdlet 将输出发送到文件。如果文件不存在,它将在指定路径中创建一个新文件。

要将文件与 Out-File 连接,你需要使用 Get-Content cmdlet 来获取文件的内容。通常,Get-Content 在控制台中显示输出。

你必须将其输出通过管道传输到 Out-File,因此它将输出发送到指定的文件。下面的示例将两个文件的内容合并到一个 test3.txt 中。

Get-Content test1.txt, test2.txt | Out-File test3.txt

运行以下命令来验证 test3.txt 文件的内容。

Get-Content test3.txt

输出:

This is a test1 file.
This is a test2 file.

如你所见,test1.txttest2.txt 的内容都被复制到 test3.txt。如果要连接目录中的所有 .txt 文件,可以使用*.txt 选择所有文件。

Get-Content *.txt | Out-File new.txt

在 PowerShell 中使用 Set-Content 连接文件

你也可以使用 Set-Content 而不是 Out-FileSet-Content 是 PowerShell 中的字符串处理 cmdlet。

它写入新内容或替换文件中的内容。

Get-Content test1.txt, test2.txt | Set-Content new.txt

使用 Get-Content 检查 new.txt 文件的内容。

Get-Content new.txt

输出:

This is a test1 file.
This is a test2 file.

通过这种方式,你可以使用 PowerShell 轻松连接多个文件。

作者: Rohan Timalsina
Rohan Timalsina avatar Rohan Timalsina avatar

Rohan is a learner, problem solver, and web developer. He loves to write and share his understanding.

LinkedIn Website

相关文章 - PowerShell File