tail command in powershell code example
Example: windows tail command powershell
cat FILENAME -tail 200 // To show last 200 lines of a file
//Another Commmand
Get-Content FILENAME -tail 10 // To show last 10 lines of a file
cat FILENAME -tail 200 // To show last 200 lines of a file
//Another Commmand
Get-Content FILENAME -tail 10 // To show last 10 lines of a file