Skip to content

Instantly share code, notes, and snippets.

@waynew
Created September 8, 2014 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waynew/f6285ea48fc4f15f0a47 to your computer and use it in GitHub Desktop.
Save waynew/f6285ea48fc4f15f0a47 to your computer and use it in GitHub Desktop.
Naive tail for saltstack
def tail(filename, n=10):
with open(filename, 'r') as f:
return ''.join(f.readlines()[-n:])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment