- PowerShell 教程
- PowerShell - 首页
- PowerShell - 概述
- PowerShell - 环境设置
- PowerShell - 命令行小程序
- PowerShell - 文件和文件夹
- PowerShell - 日期和计时器
- PowerShell - 文件 I/O
- PowerShell - 高级命令行小程序
- PowerShell - 脚本
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 实用资源
- PowerShell - 快速指南
- PowerShell - 实用资源
- PowerShell - 讨论
PowerShell - 读取 HTML 文件
命令行小程序
Get-Content 命令行小程序用于读取 HTML 文件的内容。
在本例中,我们正在读取 test.html 的内容。
Get-Content D:\temp\test\test.html
输出
您可以在 PowerShell 控制台中查看以下输出。
<html>Welcome to TutorialsPoint</html>
powershell_files_io.htm
广告