Skip to content

Instantly share code, notes, and snippets.

@Adam-Langley
Last active July 8, 2020 04:57
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 Adam-Langley/54d7183bb36d406a4ba20253126ed004 to your computer and use it in GitHub Desktop.
Save Adam-Langley/54d7183bb36d406a4ba20253126ed004 to your computer and use it in GitHub Desktop.
Concatenate log files, sorted by modified date
# joins all files in a folder, sorted by modified date
# into a single file, output.txt
cat $(ls -tr *.log) > output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment