mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 03:37:33 +08:00
10 lines
267 B
Bash
Executable File
10 lines
267 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 `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
|
|
done
|