mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
Fix a large number of typos and other problems (#110)
Most of these fixes are for typos and extra whitespace at the end of lines. These are the notable changes: - Fixed a compatibility issue with how asterisks are displayed using certain fonts. Bug report: https://github.com/att/ast/issues/764 - Fixed a bug in the man page that caused searches for the '|' character to fail. Bug report: https://github.com/att/ast/issues/871 - Removed a duplicate description of 'set -B' from the man page. Bug report: https://github.com/att/ast/issues/789 - Added documentation for options missing from the ksh man page (applies to 'hist -N', 'sleep -s', 'whence -q' and many of ulimit's options). Bug reports: https://github.com/att/ast/issues/948 https://github.com/att/ast/issues/503#issuecomment-386649715 https://github.com/att/ast/issues/507#issuecomment-507924608 - Applied the following ksh2020 documentation fixes: https://github.com/att/ast/pull/351 https://github.com/att/ast/pull/352 - Fixed a minor GCC -Wformat warning in procopen.c by changing a sentinel to NULL.
This commit is contained in:
parent
338586896d
commit
f9fdbfc9e9
66 changed files with 487 additions and 432 deletions
|
@ -72,12 +72,12 @@ and flags in
|
|||
.IR flags .
|
||||
.PP
|
||||
.I command
|
||||
is searched for using the
|
||||
is searched for using the
|
||||
.L PATH
|
||||
environment variable from the calling environment.
|
||||
If
|
||||
.I command
|
||||
is
|
||||
is
|
||||
.L 0
|
||||
then the current shell is used (see
|
||||
.IR pathshell (3)).
|
||||
|
@ -85,7 +85,7 @@ If
|
|||
.I envv
|
||||
is not
|
||||
.L 0
|
||||
then it is a
|
||||
then it is a
|
||||
.L 0
|
||||
terminated vector of
|
||||
\fIname\fP[=\fIvalue\fP]
|
||||
|
@ -110,9 +110,9 @@ and will appear at the top of the child environment.
|
|||
.PP
|
||||
If
|
||||
.I opv
|
||||
is not
|
||||
is not
|
||||
.L 0
|
||||
then it is a 0 terminaled vector of operations to perform.
|
||||
then it is a zero-terminated vector of operations to perform.
|
||||
In the following
|
||||
.I context
|
||||
is a combination of
|
||||
|
@ -131,7 +131,7 @@ is closed in
|
|||
\f5PROC_FD_DUP(\fIfrom\fP,\fIto\fP,\fIcontext\fP)\fR
|
||||
The file descriptor
|
||||
.I from
|
||||
is
|
||||
is
|
||||
.IR dup (2)'d
|
||||
into the file descriptor
|
||||
.I to
|
||||
|
@ -155,7 +155,7 @@ in the child context.
|
|||
\f5PROC_SYS_PGRP(\fIpgid\fP)\fR
|
||||
The child process group is set to
|
||||
.IR pgid .
|
||||
.I pgid
|
||||
.I pgid
|
||||
may have the following values:
|
||||
.TP
|
||||
.L <0
|
||||
|
@ -190,7 +190,7 @@ when
|
|||
is a shell script.
|
||||
.TP
|
||||
.L PROC_BACKGROUND
|
||||
Standard shell
|
||||
Standard shell
|
||||
.L &
|
||||
setup is done for the child process.
|
||||
.TP
|
||||
|
@ -241,7 +241,7 @@ if it is a shell script.
|
|||
.L PROC_PRIVELEGED
|
||||
If the effective user id is
|
||||
.L 0
|
||||
then the child real user id is set to
|
||||
then the child real user id is set to
|
||||
.L 0
|
||||
and the child real group id is set to the effective group id.
|
||||
.TP
|
||||
|
@ -274,7 +274,7 @@ The child process id.
|
|||
.TP
|
||||
.L "pid_t \fIpgrp\fP"
|
||||
The child process group.
|
||||
.TP
|
||||
.TP
|
||||
.L "int \fIrfd\fP"
|
||||
A read file descriptor connected to
|
||||
.IR command 's
|
||||
|
@ -308,9 +308,9 @@ Presumably some other mechanism will be used to wait for
|
|||
.IR proc.pid .
|
||||
.PP
|
||||
.L procrun
|
||||
combines
|
||||
combines
|
||||
.L procopen
|
||||
and
|
||||
and
|
||||
.L procclose
|
||||
with the flags
|
||||
.L PROC_GID|PROC_UID
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue