blob: 153a0176de94a96764493e296a5fe2e6322458c2 (
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 . -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
done
|