Skip to content

Instantly share code, notes, and snippets.

@olivertappin
Created June 10, 2016 08:07
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 olivertappin/12fce29715b8684ff12e465e2e15fe75 to your computer and use it in GitHub Desktop.
Save olivertappin/12fce29715b8684ff12e465e2e15fe75 to your computer and use it in GitHub Desktop.
Concats all error_log files into one file
for file in $(find public_html/ -name error_log); do cat $file >> ~/error_logs; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment