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