Reputation: 1911
Is there a command similar to tail command in linux to view log files in windows. Linux Command: $ tail -f /var/log/syslog -f /var/log/myLog.log.
Upvotes: 1
Views: 34147
Reputation: 1360
This works in Powershell. Replace [filename] with file,
Get-Content [filename] -Wait
Upvotes: 2
Reputation: 5816
You can download UnxUtils from here which include tail command and other unix commands
Upvotes: 0