Linux Tail in windows.

When viewing large log files notepad (pre windows 10) is useless.  Usually it is only the last lines of a log file that is interesting or to continuously trace the file. The answer is as always PowerShell.

get-content <filename> -tail 1 -wait

 

Leave a Reply