Skip to content

Instantly share code, notes, and snippets.

@aburok
Created March 25, 2015 09:53
Show Gist options
  • Save aburok/26fe3e13766d06337ca7 to your computer and use it in GitHub Desktop.
Save aburok/26fe3e13766d06337ca7 to your computer and use it in GitHub Desktop.
Get last n lines of file , powershell, tail
Get-Content "path/to/file" | Select-Object -Last 10
OR
gc "path/to/file" | select -Last 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment