使用PowerShell实时查看日志文件的变化
程序员文章站
2022-08-31 12:26:14
开发过程中,会有好多的日志输出到日志文件中了,每次看日志都需要打开,log文件,觉得麻烦 找了个省事的方法 使用PowerShell 使用命令:Get-Content D:\www\webapp1\Logs\t20190116.log -wait Get-Content 获取指定文件的内容 -wai ......
开发过程中,会有好多的日志输出到日志文件中了,每次看日志都需要打开,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