postgresql/src/tools/make_mkid

10 lines
267 B
Text
Raw Normal View History

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