https://github.com/CGAL/cgal
Raw File
Tip revision: ce786f9edd55bbea6ed5c99938396154cbcf12d0 authored by Sébastien Loriot on 07 August 2015, 10:13:41 UTC
Merge branch 'CGAL-Qt5_support-GF'
Tip revision: ce786f9
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