Skip to content

Instantly share code, notes, and snippets.

@k-popov
Created January 23, 2014 09:37
Show Gist options
  • Select an option

  • Save k-popov/8575670 to your computer and use it in GitHub Desktop.

Select an option

Save k-popov/8575670 to your computer and use it in GitHub Desktop.
find /opt/jenkins_home/workspace/ -mindepth 1 -maxdepth 1 -type d -mtime +180 | while read WS; do [[ -z `find $WS -mtime -180` ]] && { echo $WS; echo $WS 1>&2; }; done | xargs -L 1 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment