使用PowerShell实时查看日志文件的变化

时间:2022-01-07 21:33:06

开发过程中,会有好多的日志输出到日志文件中了,每次看日志都需要打开,log文件,觉得麻烦

找了个省事的方法

使用PowerShell

使用命令:Get-Content D:\www\webapp1\Logs\t20190116.log -wait

Get-Content 获取指定文件的内容

-wait:等待文件输出,每秒检查一次,ctrl+c退出

参考:https://docs.microsoft.com/zh-cn/powershell/module/Microsoft.PowerShell.Management/Get-Content?view=powershell-5.1