Powershell
File Handling

Tail

To "tail" a file...

Get-Content .\myfile.txt -Tail 100

To do the equivalent of a "tail -f" to view more lines as they are added...

Get-Content .\myfile.txt -Tail 100 -Wait

Older versions of Powershell may need this instead...

Get-Content myfile.txt | Select-Object -last 100

Windows vs Linux

UNIX-Windows-Cribsheet

Bibliography