diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-05-04 02:57:13 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-05-04 02:57:13 +0000 |
commit | 6b5497757fb3688287c59cdf2afc1a16ad1c957d (patch) | |
tree | c505fa67c7b5934496b67edeaa5722066920abd1 | |
parent | 228900972238eb7877dd98536d7d6b358855b276 (diff) | |
download | postgresql-6b5497757fb3688287c59cdf2afc1a16ad1c957d.tar.gz postgresql-6b5497757fb3688287c59cdf2afc1a16ad1c957d.zip |
Fix up examples of sh/ksh PATH environment variable definition.
-rw-r--r-- | doc/src/sgml/environ.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/runtime.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/start.sgml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/environ.sgml b/doc/src/sgml/environ.sgml index 862ccbdbdaa..13bdd3f8181 100644 --- a/doc/src/sgml/environ.sgml +++ b/doc/src/sgml/environ.sgml @@ -32,8 +32,8 @@ set path = ( /usr/local/pgsql/bin path ) a variant of the Bourne shell, such as <Application>sh</Application>, <Application>ksh</Application>, or <Application>bash</Application>, then you would add <ProgramListing> -PATH=/usr/local/pgsql/bin PATH -export PATH +$ PATH=/usr/local/pgsql/bin:$PATH +$ export PATH </ProgramListing> to the <FileName>.profile</FileName> file in your home directory. From now on, we will assume that you have added the diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 774c19cae75..af6b300455e 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -62,7 +62,7 @@ set path = ( /usr/local/pgsql/bin path ) a variant of the Bourne shell, such as sh, ksh, or bash, then you would add <ProgramListing> -PATH=/usr/local/pgsql/bin PATH +PATH=/usr/local/pgsql/bin:$PATH export PATH </ProgramListing> to the .profile file in your home directory. diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index 12390f04dbb..592b35f89fc 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -67,7 +67,7 @@ of a client application is the interactive monitor <Application>psql</Applicatio a variant of the Bourne shell, such as sh, ksh, or bash, then you would add <ProgramListing> -% PATH=/usr/local/pgsql/bin PATH +% PATH=/usr/local/pgsql/bin:$PATH % export PATH </ProgramListing> to the .profile file in your home directory. |