aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/bin/clean
blob: 2667461974ee20e43dd753e26b24fd3b65ed84e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
flist=`find . -name core -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi

flist=`find . -name "*~" -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi

flist=`find . -name "*.tar.gz" -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi

flist=`find . -name "config.c*" -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi