mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-09 10:37:32 +08:00
8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
find `pwd`/ -type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
|
|
|
|
find . -type d -print |while read DIR
|
|
do
|
|
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
|
|
done
|