Skip to content

Instantly share code, notes, and snippets.

@vinaysshenoy
Created May 27, 2021 05:21
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 vinaysshenoy/23fb016e3dcec075eff61a4a5086eea7 to your computer and use it in GitHub Desktop.
Save vinaysshenoy/23fb016e3dcec075eff61a4a5086eea7 to your computer and use it in GitHub Desktop.
Delete gradle log files older than 7 days on login
export GRADLE_USER_HOME="$HOME/Dev/.gradle"
# Delete all gradle log files older than 7 days
find $GRADLE_USER_HOME/daemon -type f -mtime +7 -iregex '.*\.\(dmp\|log\)$' -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment