Repositories
/
olsrd.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
* changed the version to 0.5.1pre
[olsrd.git]
/
list-excludes.sh
1
#!/bin/sh
2
#
3
# $Id: list-excludes.sh,v 1.1 2007/02/05 21:17:26 bernd67 Exp $
4
#
5
# LĂ–ist the to be excluded files
6
#
7
8
find -name ".cvsignore" -print | while read f
9
do
10
d=${f%.cvsignore}
11
d=${d#./}
12
while read l
13
do
14
echo "$d$l"
15
done < $f
16
done
17
echo 'CVS'
18
echo '*~'
19
echo '#*#'
20
echo '.#*'
21
echo '*.o'