Skip to content

Instantly share code, notes, and snippets.

@halferty
Created May 28, 2015 22:16
Show Gist options
  • Save halferty/e93fbd4bc4784a2b7845 to your computer and use it in GitHub Desktop.
Save halferty/e93fbd4bc4784a2b7845 to your computer and use it in GitHub Desktop.
Trim logfiles
~ »wc -l test.txt
23759 test.txt
~ »function truncate() { echo "`tail -n100 $1`" > $1; }; truncate test.txt
~ »wc -l test.txt
100 test.txt
~ »
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment