From 6b5497757fb3688287c59cdf2afc1a16ad1c957d Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Tue, 4 May 1999 02:57:13 +0000 Subject: [PATCH] Fix up examples of sh/ksh PATH environment variable definition. --- doc/src/sgml/environ.sgml | 4 ++-- doc/src/sgml/runtime.sgml | 2 +- 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 862ccbdbda..13bdd3f818 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 sh, ksh, or bash, then you would add -PATH=/usr/local/pgsql/bin PATH -export PATH +$ PATH=/usr/local/pgsql/bin:$PATH +$ export PATH to the .profile 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 774c19cae7..af6b300455 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 -PATH=/usr/local/pgsql/bin PATH +PATH=/usr/local/pgsql/bin:$PATH export PATH to the .profile file in your home directory. diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index 12390f04db..592b35f89f 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 psql -% PATH=/usr/local/pgsql/bin PATH +% PATH=/usr/local/pgsql/bin:$PATH % export PATH to the .profile file in your home directory. -- 2.40.0