Skip to content

Instantly share code, notes, and snippets.

@serkanh
Created August 28, 2017 20:24
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 serkanh/70dacf2d7af00d35ced8ae2026ec730f to your computer and use it in GitHub Desktop.
Save serkanh/70dacf2d7af00d35ced8ae2026ec730f to your computer and use it in GitHub Desktop.
combine multiple log files to single file.
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