How To Tail With PowerShell
How to replace tail in PowerShell
Printing the last or first, few lines of a file is a common operation in day to day operations. On Linux most people will, without thinking twice, use tail and it’s counterpart head to achieve this.
It’s man page1 describes tail simply like this
Print the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving the file name.
[Read More]