blob: 6827e5710c56cb1921c3b0ca31ae442562d0501c (
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 -
find . -name 'CVS' -prune -o -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
done
|