Created
August 28, 2017 20:24
-
-
Save serkanh/70dacf2d7af00d35ced8ae2026ec730f to your computer and use it in GitHub Desktop.
combine multiple log files to single file.
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
find . -name "*.log" -print0 | xargs -0 -I file cat file > ~/combined.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment