postgresql/src/tools/make_mkid

9 lines
235 B
Plaintext
Raw Normal View History

1997-09-08 06:19:50 +02:00
#!/bin/sh
find `pwd`/ \( -name _deadcode -a -prune \) -o \
-type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -
1997-09-08 06:19:50 +02:00
2000-02-10 19:41:35 +01:00
find . -name 'CVS' -prune -o -type d -print |while read DIR
1997-09-08 06:19:50 +02:00
do
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
done