blob: 0a8f5a34d20d247202e2b34a22c204b788f65893 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
find `pwd`/ \( -name _deadcode -a -prune \) -o \
-type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
find . -name 'CVS' -prune -o -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
done
|