Skip to content

Instantly share code, notes, and snippets.

@stengland
Created January 8, 2013 17:14
Show Gist options
  • Select an option

  • Save stengland/4485721 to your computer and use it in GitHub Desktop.

Select an option

Save stengland/4485721 to your computer and use it in GitHub Desktop.
Truncate those pesky log files
for item in $(find . -type f -name '*.log' ) ;do cat /dev/null > $item ;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment