mirror of
https://github.com/postgres/postgres.git
synced 2025-12-24 06:01:07 +03:00
9 lines
235 B
Bash
Executable File
9 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
find `pwd`/ \( -name _deadcode -a -prune \) -o \
|
|
-type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -
|
|
|
|
find . -name 'CVS' -prune -o -type d -print |while read DIR
|
|
do
|
|
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
|
|
done
|