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