https://github.com/CGAL/cgal
Raw File
Tip revision: 492c8442eb9ddd696566187fade6be3a3aa58647 authored by Laurent Rineau on 09 April 2013, 15:37:00 UTC
Fix a typo in a comment
Tip revision: 492c844
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