欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

使用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