Created
May 28, 2015 22:16
-
-
Save halferty/e93fbd4bc4784a2b7845 to your computer and use it in GitHub Desktop.
Trim logfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ »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