summaryrefslogtreecommitdiff
path: root/bin/ksh/ksh.1tbl
AgeCommit message (Collapse)Author
2005-02-08Move sh.1tbl -> sh.1 and ksh.1tbl -> ksh.1Todd C. Miller
2005-02-05note that symlinks in test file are followed, except -h and -LJason McIntyre
(just like test(1) does); from paul de weerd;
2005-02-02Introduce POSIX hex and octal (0x... and 0...) constants in arithmeticOtto Moerbeek
expressions. Work by Matthias Kilian, based on an old diff by myself. Note: MAKEDEV should be updated. Tested by many, thanks. ok millert@ deraadt@
2005-01-19typo;Jason McIntyre
2005-01-19although the description for the `comment' bind was in the page,Jason McIntyre
the bind itself (^[#) was missing;
2005-01-17typo;Jason McIntyre
2005-01-10typo;Jason McIntyre
2004-12-22These man pages are not derived from UCB and are actually public domain.Todd C. Miller
Verified with aaron@ who did the conversion from man -> mdoc.
2004-12-22Our times(3) just calls getrusage(2) and gettimeofday(2), converting secondsTodd C. Miller
to ticks. Since ksh needs things in seconds it then converted them back. Avoid the silliness and use the getrusage(2) and gettimeofday(2) directly. With man page help from jmc@
2004-12-16- document IFS behavior changesJared Yanovich
- grammar, punctuation, xref, mdoc tweaks - sort keywords - indent example displays - minimize against diffing between sh.1tbl - document set -o sh - tweak the displays of some editing and builtin commands - rework some operator descriptions ok jmc
2004-12-12escape punctuation;Jason McIntyre
2004-12-12csh-style ! history completion, which can be activated by usingTheo de Raadt
set -o csh-history (off by default) this is not feature complete, and likely never will be. no ^ and ! has some oddities ... ksh's internal history stuff has got some very odd behaviours that are rather nasty ok various developers
2004-12-04minor tweaks; ok jmcJared Yanovich
2004-11-08add a more complex PS1 example, which does not use the new backslashJason McIntyre
sequences; from naddy@, via deraadt@
2004-11-06correct my description of \[ and \]Jason McIntyre
found by (and ok) deraadt@
2004-11-05document PS1 expansions;Jason McIntyre
2004-11-05incorrect markup was messing the description of IFS. i've rearranged itJason McIntyre
slightly so that no one (me, most likely) falls for it again. also, make sh(1)'s IFS description a little more consistent.
2004-11-03HISTSIZE cranked to 500Jared Yanovich
2004-10-28fix spacing after period at EOL. from ray@cyth.netJared Yanovich
2004-08-07Document ulimit -v; mickey@ OKTodd C. Miller
2004-08-04- mdoc and macro fixes and simplificationJared Yanovich
- punctuation and grammar fixes - show prompts for example shell commands help and ok jmc
2004-05-09Document new behavior of $RANDOM. ok deraadt@Otto Moerbeek
2004-04-30typo;Jason McIntyre
from ray at cyth dot net (PR 3762);
2004-03-15missing commas;Jason McIntyre
2004-03-15reversed word -> reserved word;Jason McIntyre
from Karl O. Pinc
2004-02-19escape full stops where necessary to kill erroneous double spaces;Jason McIntyre
softly, softly, catchy monkey...
2004-01-23`Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8))Jason McIntyre
discussed with todd@
2004-01-15escape full stops properly to avoid double spaces;Jason McIntyre
2003-12-27- revert a typo introduced when this page was mdoc'edJason McIntyre
- use .Sq rather than .Dq for single letters
2003-12-22note that `&&' and `||' are left-associative;Jason McIntyre
from vax at carolina dot rr com (NetBSD PR 23814); agreed (in principal) millert@ deraadt@
2003-12-12typo; ok jmc@Christian Weisgerber
2003-10-28standard section order;Jason McIntyre
2003-10-22macros with too many args;Jason McIntyre
2003-09-04escapes in the wrong place;Jason McIntyre
2003-09-02escape punctuation;Jason McIntyre
ok deraadt@
2003-09-01In emacs editing mode, ksh by default interprets a set 8th bit asChristian Weisgerber
meta prefix, i.e. all characters with the top bit set (>= 0x80) are taken as commands and cannot be entered literally. Introduce a new shell option, emacs-usemeta, that allows to toggle this behavior. The default is the traditional behavior; to enter 8-bit characters use "set +o emacs-usemeta". ok fgsch@, henning@
2003-07-19redrew -> redraw;Jason McIntyre
from Andrey Matveev.
2003-07-07- convert some lists to displaysJason McIntyre
- .Ql -> .Sq where necessary - remove some .Pp's before lists - add missing .El - remove some wrong macros
2003-06-06liternal -> literal;Jason McIntyre
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-04-28typos;Jason McIntyre
suggestions, corrections and ok millert@
2003-03-20typos;Jason McIntyre
from NetBSD (Soren Jacobsen) ok millert@
2003-03-14better document how getopts handles options;Jason McIntyre
plus typos; from J.A. Neitzel; Fixes PR 3141; ok millert@
2002-09-18fix Xr refs; frisco@blackant.netTheo de Raadt
2001-09-24The 'newgrp' alias is explicitly disabled in our ksh, so do not mentionCamiel Dobbelaar
it in the manpage. ok millert@
2001-09-02Typo; addresses pr/2038 from tim@robbins.dropbear.id.auAaron Campbell
2001-08-25OpenBSD doesn't have RLIMIT_VMEM or RLIMIT_SWAP, so we don'tHeikki Korpela
have ulimit -v or -w either. ok millert@
2001-08-23fix a typo; tim@robbins.dropbear.id.auPeter Valchev
2001-08-03Typo; heko@iki.fiAaron Campbell
2001-07-31Documentation fixes per PR 1979 by Kaspar Toomik.Hugh Graham