Skip to content

Instantly share code, notes, and snippets.

@appleshan
Forked from baepiff/gist:3431336
Created February 8, 2018 02:40
Show Gist options
  • Select an option

  • Save appleshan/24f30cfeff8cccc1b26cb45c372949c2 to your computer and use it in GitHub Desktop.

Select an option

Save appleshan/24f30cfeff8cccc1b26cb45c372949c2 to your computer and use it in GitHub Desktop.
Remove log file script
#!/bin/bash
LOG_DIR="/usr/local/app/*/logs"
#old log erase
find ${LOG_DIR} -type f -name "myAllipcation*" -mtime +31 | xargs rm -f
find ${LOG_DIR} -type f -name "gc.log*" -mtime +31 | xargs rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment