https://github.com/CGAL/cgal
Raw File
Tip revision: 3704837596d0ee0aefc9dd0790a729d2da590ae3 authored by Laurent Rineau on 01 March 2010, 13:03:46 UTC
Release tag for CGAL-3.6-beta1
Tip revision: 3704837
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