mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 15:53:13 -05:00
9 lines
236 B
Bash
Executable file
9 lines
236 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|