Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaa2cc6e

Browse files
committed
Change >& to > and 2>&1.
1 parente69a997 commitaa2cc6e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

‎doc/src/sgml/install.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ Compile the program. Type
546546

547547
<ProgramListing>
548548
$ cd /usr/src/pgsql/src
549-
$ gmake all >& make.log &
549+
$ gmake all > make.log 2>&1 &
550550
$ tail -f make.log
551551
</ProgramListing>
552552
</Para>
@@ -589,7 +589,7 @@ then recompile again.
589589
be specified on the command line using the COPT variable.
590590
For example, typing
591591
<ProgramListing>
592-
$ gmake COPT="-g" all >& make.log &
592+
$ gmake COPT="-g" all > make.log 2>&1 &
593593
</ProgramListing>
594594
would invoke your compiler's <option>-g</option> option in all steps of the
595595
build. See <filename>src/Makefile.global.in</filename> for further details.
@@ -601,7 +601,7 @@ $ gmake COPT="-g" all >& make.log &
601601
Install the program. Type
602602
<ProgramListing>
603603
$ cd /usr/src/pgsql/src
604-
$ gmake install >& make.install.log &
604+
$ gmake install > make.install.log 2>&1 &
605605
$ tail -f make.install.log
606606
</ProgramListing>
607607
</Para>

‎doc/src/sgml/runtime.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
the log file:
6363

6464
<ProgramListing>
65-
% postmaster -d >& pm.log &
65+
% postmaster -d > pm.log 2>&1 &
6666
</ProgramListing>
6767

6868
If you do not wish to see these messages, you can type

‎doc/src/sgml/trouble.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ FATAL 1: Database testdb does not exist in pg_database
148148
the log file:
149149

150150
<ProgramListing>
151-
% postmaster -d >& pm.log &
151+
% postmaster -d > pm.log 2>&1 &
152152
</ProgramListing>
153153

154154
If you do not wish to see these messages, you can type

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp