1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-29 13:56:47 +03:00

Improve readability of config location params by adding newline.

This commit is contained in:
Bruce Momjian 2005-06-04 18:13:59 +00:00
parent 3360bc1351
commit 00750f3f30
2 changed files with 4 additions and 2 deletions

View File

@ -31,6 +31,7 @@
# The default values of these variables are driven from the -D command line # The default values of these variables are driven from the -D command line
# switch or PGDATA environment variable, represented here as ConfigDir. # switch or PGDATA environment variable, represented here as ConfigDir.
# data_directory = 'ConfigDir' # use data in another directory # data_directory = 'ConfigDir' # use data in another directory
# hba_file = 'ConfigDir/pg_hba.conf' # the host-based authentication file # hba_file = 'ConfigDir/pg_hba.conf' # the host-based authentication file
# ident_file = 'ConfigDir/pg_ident.conf' # the IDENT configuration file # ident_file = 'ConfigDir/pg_ident.conf' # the IDENT configuration file

View File

@ -1,9 +1,10 @@
#!/bin/sh :
mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \ mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
-type f -name '*.[chyl]' -print|sed 's;//;/;g'` -type f -name '*.[chyl]' -print|sed 's;//;/;g'`
find . -name 'CVS' -prune -o -type d -print |while read DIR find . \( -name 'CVS' -prune -o -name '_xlk' -prune \) -o -type d -print |
while read DIR
do do
[ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
done done