https://github.com/CGAL/cgal
Raw File
Tip revision: 0aa7820025eafecf268d1f3352a98110da5227f1 authored by Laurent Rineau on 16 October 2013, 16:33:59 UTC
Try to avoid that dump-crontab commit anything by my crontab
Tip revision: 0aa7820
clean_tree.csh
#! /usr/local/bin/zsh -f

find . -name "*.o" -exec rm {} \;
find . -name "*.exe" -exec rm {} \;
find . -name "*~" -exec rm {} \;
find . -name "\#*" -exec rm {} \;
find . -name "*.old" -exec rm {} \;
find . -name "*.bak" -exec rm {} \;
back to top