Skip to content

Instantly share code, notes, and snippets.

@hiroyukim
Created April 18, 2011 02:09
Show Gist options
  • Save hiroyukim/924693 to your computer and use it in GitHub Desktop.
Save hiroyukim/924693 to your computer and use it in GitHub Desktop.
何日か前のログを消すとか
#!/bin/sh
log_file=`date --date '7 day ago' +"/path/to/%Y%m%d.log"`
if[ -e $log_file ]; then
rm -f $log_file
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment