repo.or.cz
/
geda-gaf
/
cesar.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added some additional fixed bugs to the NEWS file
[geda-gaf/cesar.git]
/
docs
/
scripts
/
wikicommit.sh
blob
c9f81f940a4aa7145a82b3e65cdc70df7a90a217
1
#!/bin/sh
2
3
files
=
`find . -name \* -print | grep -v CVS | grep -v Makefile | sed "s%^\./%%" | sed "s%^\.%%"`
4
5
for
i
in
$files
6
do
7
image
=
`file
$i
| grep -i image`
8
9
if
[
"
$image
"
!=
""
]
10
then
11
echo
Adding image
:
$i
12
cvs add
-kb
$i
13
else
14
echo
Adding regular
file
:
$i
15
cvs add
$i
16
fi
17
done