Change >& to > and 2>&1.
This commit is contained in:
parent
e69a997d02
commit
aa2cc6ebbe
@ -546,7 +546,7 @@ Compile the program. Type
|
|||||||
|
|
||||||
<ProgramListing>
|
<ProgramListing>
|
||||||
$ cd /usr/src/pgsql/src
|
$ cd /usr/src/pgsql/src
|
||||||
$ gmake all >& make.log &
|
$ gmake all > make.log 2>&1 &
|
||||||
$ tail -f make.log
|
$ tail -f make.log
|
||||||
</ProgramListing>
|
</ProgramListing>
|
||||||
</Para>
|
</Para>
|
||||||
@ -589,7 +589,7 @@ then recompile again.
|
|||||||
be specified on the command line using the COPT variable.
|
be specified on the command line using the COPT variable.
|
||||||
For example, typing
|
For example, typing
|
||||||
<ProgramListing>
|
<ProgramListing>
|
||||||
$ gmake COPT="-g" all >& make.log &
|
$ gmake COPT="-g" all > make.log 2>&1 &
|
||||||
</ProgramListing>
|
</ProgramListing>
|
||||||
would invoke your compiler's <option>-g</option> option in all steps of the
|
would invoke your compiler's <option>-g</option> option in all steps of the
|
||||||
build. See <filename>src/Makefile.global.in</filename> for further details.
|
build. See <filename>src/Makefile.global.in</filename> for further details.
|
||||||
@ -601,7 +601,7 @@ $ gmake COPT="-g" all >& make.log &
|
|||||||
Install the program. Type
|
Install the program. Type
|
||||||
<ProgramListing>
|
<ProgramListing>
|
||||||
$ cd /usr/src/pgsql/src
|
$ cd /usr/src/pgsql/src
|
||||||
$ gmake install >& make.install.log &
|
$ gmake install > make.install.log 2>&1 &
|
||||||
$ tail -f make.install.log
|
$ tail -f make.install.log
|
||||||
</ProgramListing>
|
</ProgramListing>
|
||||||
</Para>
|
</Para>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
the log file:
|
the log file:
|
||||||
|
|
||||||
<ProgramListing>
|
<ProgramListing>
|
||||||
% postmaster -d >& pm.log &
|
% postmaster -d > pm.log 2>&1 &
|
||||||
</ProgramListing>
|
</ProgramListing>
|
||||||
|
|
||||||
If you do not wish to see these messages, you can type
|
If you do not wish to see these messages, you can type
|
||||||
|
@ -148,7 +148,7 @@ FATAL 1: Database testdb does not exist in pg_database
|
|||||||
the log file:
|
the log file:
|
||||||
|
|
||||||
<ProgramListing>
|
<ProgramListing>
|
||||||
% postmaster -d >& pm.log &
|
% postmaster -d > pm.log 2>&1 &
|
||||||
</ProgramListing>
|
</ProgramListing>
|
||||||
|
|
||||||
If you do not wish to see these messages, you can type
|
If you do not wish to see these messages, you can type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user