Powershell - 创建 HTML 文件



Cmdlet

New-Item cmdlet 用于创建一个 html 文件,Set-Content cmdlet 用于在其中放置内容。

步骤 1

在此示例中,我们正在创建一个名为 test.html 的新 html 文件

在 PowerShell ISE 控制台中键入以下命令

New-Item D:\temp\test\test.html -ItemType File

你可以在 D:\temp\test 目录中看到创建的 test.html。

步骤 2

在此示例中,我们正在将内容添加到 test.html。

在 PowerShell ISE 控制台中键入以下命令

Set-Content D:\temp\test\test.html '<html>Welcome to TutorialsPoint</html>'

步骤 3

在此示例中,我们正在读取 test.html 的内容。

Get-Content D:\temp\test\test.html

输出

你可以在 PowerShell 控制台中看到以下输出。

<html>Welcome to TutorialsPoint</html>
powershell_files_io.htm
广告