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 Tastones</html>'
第 3 步
在这个例子中,我们来读取 test.html 的内容。
Get-Content D:\temp\test\test.html
输出
你可以在 PowerShell 控制台中看到以下输出。
<html>Welcome to Tastones</html>