merge conflicts; fix what(1) stdin
This commit is contained in:
parent
cec4e70067
commit
546d0dc170
26
ksh.1tbl
26
ksh.1tbl
@ -1,5 +1,5 @@
|
|||||||
.\" $MirBSD: ksh.1tbl,v 1.2 2003/03/23 21:47:53 tg Exp $
|
.\" $MirBSD: ksh.1tbl,v 1.3 2003/05/07 20:53:03 tg Exp $
|
||||||
.\" $OpenBSD: ksh.1tbl,v 1.50 2003/03/20 07:30:37 jmc Exp $
|
.\" $OpenBSD: ksh.1tbl,v 1.51 2003/04/28 06:27:36 jmc Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 1980, 1990, 1993
|
.\" Copyright (c) 1980, 1990, 1993
|
||||||
.\" The Regents of the University of California. All rights reserved.
|
.\" The Regents of the University of California. All rights reserved.
|
||||||
@ -1367,7 +1367,7 @@ Not yet implemented.
|
|||||||
.It Ev EXECSHELL
|
.It Ev EXECSHELL
|
||||||
If set, this parameter is assumed to contain the shell that is to be used to
|
If set, this parameter is assumed to contain the shell that is to be used to
|
||||||
execute commands that
|
execute commands that
|
||||||
.Fn execve 2
|
.Xr execve 2
|
||||||
fails to execute and which do not start with a
|
fails to execute and which do not start with a
|
||||||
.Dq \&#\&! Ns Ar shell
|
.Dq \&#\&! Ns Ar shell
|
||||||
sequence.
|
sequence.
|
||||||
@ -1678,7 +1678,7 @@ characters or
|
|||||||
.Dq [..]
|
.Dq [..]
|
||||||
sequences.
|
sequences.
|
||||||
Once brace expansion has been performed, the shell replaces file
|
Once brace expansion has been performed, the shell replaces file
|
||||||
name patterns with the sorted named of all the files that match the pattern
|
name patterns with the sorted names of all the files that match the pattern
|
||||||
(if no files match, the word is left unchanged).
|
(if no files match, the word is left unchanged).
|
||||||
The pattern elements have the following meaning:
|
The pattern elements have the following meaning:
|
||||||
.Bl -tag -width Ds
|
.Bl -tag -width Ds
|
||||||
@ -1866,7 +1866,7 @@ except if
|
|||||||
exists it is appended to instead of being truncated.
|
exists it is appended to instead of being truncated.
|
||||||
Also, the file is opened
|
Also, the file is opened
|
||||||
in append mode, so writes always go to the end of the file (see
|
in append mode, so writes always go to the end of the file (see
|
||||||
.Fn open 2 ) .
|
.Xr open 2 ) .
|
||||||
.It Ic \&< Ar file
|
.It Ic \&< Ar file
|
||||||
Standard input is redirected from
|
Standard input is redirected from
|
||||||
.Ar file ,
|
.Ar file ,
|
||||||
@ -2614,7 +2614,7 @@ above).
|
|||||||
.Pp
|
.Pp
|
||||||
When listing aliases, one of two formats is used.
|
When listing aliases, one of two formats is used.
|
||||||
Normally, aliases are listed as
|
Normally, aliases are listed as
|
||||||
.Ar name Ns No = Ar value ,
|
.Ar name Ns No = Ns Ar value ,
|
||||||
where
|
where
|
||||||
.Ar value
|
.Ar value
|
||||||
is quoted.
|
is quoted.
|
||||||
@ -2829,7 +2829,7 @@ option suppresses the trailing newline,
|
|||||||
.Fl e
|
.Fl e
|
||||||
enables backslash interpretation (a no-op, since this is normally done), and
|
enables backslash interpretation (a no-op, since this is normally done), and
|
||||||
.Fl E
|
.Fl E
|
||||||
which suppresses backslash interpretation.
|
suppresses backslash interpretation.
|
||||||
.It Ic eval Ar command ...
|
.It Ic eval Ar command ...
|
||||||
The arguments are concatenated (with spaces between them) to form a single
|
The arguments are concatenated (with spaces between them) to form a single
|
||||||
string which the shell then parses and executes in the current environment.
|
string which the shell then parses and executes in the current environment.
|
||||||
@ -3356,7 +3356,7 @@ Background jobs are run with lower priority.
|
|||||||
Enable brace expansion (a.k.a., alternation).
|
Enable brace expansion (a.k.a., alternation).
|
||||||
.It Ic emacs
|
.It Ic emacs
|
||||||
Enable BRL emacs-like command-line editing (interactive shells only); see
|
Enable BRL emacs-like command-line editing (interactive shells only); see
|
||||||
.Sx Emacs editing mode.
|
.Sx Emacs editing mode .
|
||||||
.It Ic gmacs
|
.It Ic gmacs
|
||||||
Enable gmacs-like command-line editing (interactive shells only).
|
Enable gmacs-like command-line editing (interactive shells only).
|
||||||
Currently identical to emacs editing except that transpose (^T) acts slightly
|
Currently identical to emacs editing except that transpose (^T) acts slightly
|
||||||
@ -3476,7 +3476,7 @@ defaults to 1.
|
|||||||
.Ic test
|
.Ic test
|
||||||
evaluates the
|
evaluates the
|
||||||
.Ar expression
|
.Ar expression
|
||||||
and returns zero status if true, 1 status if false, or greater than 1 if there
|
and returns zero status if true, 1 if false, or greater than 1 if there
|
||||||
was an error.
|
was an error.
|
||||||
It is normally used as the condition command of
|
It is normally used as the condition command of
|
||||||
.Ic if
|
.Ic if
|
||||||
@ -3914,7 +3914,7 @@ option.)
|
|||||||
.It Fl p
|
.It Fl p
|
||||||
Print complete
|
Print complete
|
||||||
.Ic typeset
|
.Ic typeset
|
||||||
commands that can be used to re-create the attributes (but not the values) or
|
commands that can be used to re-create the attributes (but not the values) of
|
||||||
parameters.
|
parameters.
|
||||||
This is the default action (option exists for ksh93 compatibility).
|
This is the default action (option exists for ksh93 compatibility).
|
||||||
.It Fl r
|
.It Fl r
|
||||||
@ -4287,7 +4287,7 @@ interactive session, which is controlled by the
|
|||||||
.Ic gmacs ,
|
.Ic gmacs ,
|
||||||
and
|
and
|
||||||
.Ic vi
|
.Ic vi
|
||||||
options (at most one of these can be set an once).
|
options (at most one of these can be set at once).
|
||||||
If none of these options are enabled, the shell simply reads lines using the
|
If none of these options are enabled, the shell simply reads lines using the
|
||||||
normal tty driver.
|
normal tty driver.
|
||||||
If the
|
If the
|
||||||
@ -4542,7 +4542,7 @@ appended to them.
|
|||||||
Prints a sorted, columnated list of command names (if any) that can complete
|
Prints a sorted, columnated list of command names (if any) that can complete
|
||||||
the partial word containing the cursor.
|
the partial word containing the cursor.
|
||||||
.It Ic list-file ^X^Y
|
.It Ic list-file ^X^Y
|
||||||
Prints a sorted, comunated list of file names (if any) that can complete the
|
Prints a sorted, columnated list of file names (if any) that can complete the
|
||||||
partial word containing the cursor.
|
partial word containing the cursor.
|
||||||
File type indicators are appended as described under
|
File type indicators are appended as described under
|
||||||
.Ic list
|
.Ic list
|
||||||
@ -4792,7 +4792,7 @@ directories in the
|
|||||||
parameter.
|
parameter.
|
||||||
File name expansion matches the big-word against the files in the
|
File name expansion matches the big-word against the files in the
|
||||||
current directory.
|
current directory.
|
||||||
After expansion, the cursor is places just past the last
|
After expansion, the cursor is placed just past the last
|
||||||
word and the editor is in insert mode.
|
word and the editor is in insert mode.
|
||||||
.It n\e,\ n^F,\ n<tab>,\ and\ n<esc>
|
.It n\e,\ n^F,\ n<tab>,\ and\ n<esc>
|
||||||
Command/file name completion.
|
Command/file name completion.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user