summaryrefslogtreecommitdiffstats
path: root/share/man/man1
Commit message (Collapse)AuthorAgeFilesLines
* Update list of utilitys which are implemented externally, Xref info.1,trhodes2005-02-231-16/+25
| | | | | | | clean up some text, bump doc date. PR: 47690 Submitted by: Gary W. Swearingen <swear@attbi.com> (original version)
* Fixed the misplaced $FreeBSD$.ru2005-02-091-1/+1
|
* Use a single style for share/man/ makefiles:ru2004-01-201-25/+77
| | | | | | | | - Sort MAN and MLINKS in "dictionary" order ignoring case. - For multi-value MAN and multi-pair MLINKS, put each value/pair on its own line, for easier sorting and so that further diffs are easier to see.
* Mention the new bind(1) sh builtin.tjr2002-07-232-0/+3
|
* One external utility was ommitted in the previous delta:sheldonh2002-07-171-1/+1
| | | | alias
* The following builtins are now available as external commands as well:sheldonh2002-07-171-11/+11
| | | | | | | | | | | | | | bg cd command fc fg getopts jobs read umask unalias wait
* Remove the printf builtin command from sh(1), which command is notknu2001-11-201-3/+0
| | | | | | | | | | | | used so often that it's worth keeping it as a builtin. Now that all the printf invocations from within the system startup scripts, we can safely remove it. Urged by: sheldonh :) No MFC is planned so far because it may break compatibility and violate POLA.
* Add false(1), test(1) and true(1) cross-references.knu2001-11-201-0/+3
| | | | Pointed out by: sheldonh
* Make test(1) a builtin command of our sh(1) for efficiency. Theknu2001-11-171-0/+6
| | | | | | | | | | | binary size increase is 3,784 bytes (about 0.6%). I don't drop the printf builtin while I'm here because some /etc/rc.* scripts seem to use it before mounting /usr where printf(1) resides. Reviewed by: arch (sheldonh) Inspired by: NetBSD, ksh Clued by: ume (on how the printf builtin is used)
* Explain a little about sysexits(3) so that regular users can takedd2001-10-231-4/+8
| | | | | | | advantage of the fact that some programs care to explain why they failed. PR: 31415
* mdoc(7) police: expand plain text xrefs.ru2001-08-081-1/+1
|
* Removed whitespace at end-of-line; no content changes. I simply didschweikh2001-07-141-1/+1
| | | | | | | | | | cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//' BTW, what editors are the culprits? I'm using vim and it shows me whitespace at EOL in troff files with a thick blue block... Reviewed by: Silence from cvs diff -b MFC after: 7 days
* "break", "chdir", "continue", "else", and "while" are sh(1) builtins;dd2001-04-251-5/+5
| | | | | | mark them as such. PR: 26702
* Indicate that sh(1) has an 'if' builtin command.dd2001-04-011-1/+1
| | | | PR: 26193
* MAN[1-9] -> MAN.ru2001-03-271-1/+1
|
* Prepare for mdoc(7)NG.ru2001-01-221-2/+2
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* Update the builtin(1) manpage to reflect changes since the csh(1)sheldonh2000-05-092-10/+46
| | | | | | | | | | | | | | | | | | | | | | to tcsh(1) upgrade. The following commands were added as builtins: bindkey builtins complete echotc filetest hup log ls-F printenv sched settc setty telltc uncomplete where The printf builtin was removed.
* Remove the MLINKS entry for cwd, since it's no longer listed in thesheldonh2000-05-081-1/+1
| | | | builtin.1 page.
* Remove the bogusly inserted ``cwd'' which isn't a builtin commandsheldonh2000-05-081-10/+3
| | | | | | | to sh, csh nor tcsh. Fix the header line of the table to use cross-references and emphasis.
* I didn't expect this to be merged to STABLE. It was, so correct thesheldonh2000-03-031-1/+1
| | | | HISTORY section.
* Add missing entry for read(1) to the builtin(1) manual page andsheldonh2000-03-012-1/+4
| | | | add an MLINKS entry for it. I can't imagine how I missed this one.
* Fix the availability table, which incorrectly indicated that sh(1)sheldonh1999-12-201-1/+1
| | | | does not have a builtin set command.
* Remove the wait.1 manpage. There is no userland wait(1) utility, and thesheldonh1999-09-202-102/+1
| | | | | | manpage does not describe the builtin wait command provided by either of the standard shells. There is already an entry for wait.1 in the builtins.1 MLINKS list.
* Correct some hard sentence breaks. Only those surrounding the previoussheldonh1999-09-141-3/+4
| | | | | | | | commit and those which cause ugly nroff output have been fixed, since the purpose of the style guideline which they contravene is to reduce the sizes of deltas. Reported by: bde
* Fixed breakage of intro.1 -> introduction.1 link and minor disordering inbde1999-09-111-4/+5
| | | | previous commit.
* Improve shell documentation:sheldonh1999-09-083-99/+287
| | | | | | | | | | | | | | | | | | | | | | | | | * Consistently misspell built-in as builtin. * Add a builtin(1) manpage and create builtin(1) MLINKS for all shell builtin commands for which no standalone utility exists. These MLINKS replace those that were created for csh(1). * Add appropriate xrefs for builtin(1) to the csh(1) and sh(1) manpages, as well as to the manpages of standalone utilities which are supported as shell builtin commands in at least one of the shells. In such manpages, explain that similar functionality may be provided as a shell builtin command. * Improve sh(1)'s description of the cd builtin command. Csh(1) already describes it adequately. Replace the cd(1) manpage with a builtin(1) MLINKS link. * Clean up some mdoc problems: use Xr instead of literal "foo(n)"; use Ic instead of Xr for shell builtin commands. * Undo English contractions. Reviewed by: mpp, rgrimes
* $Id$ -> $FreeBSD$peter1999-08-284-4/+4
|
* Various man page cleanup:mpp1999-08-151-2/+2
| | | | | | | | | | - Sort xrefs - FreeBSD.ORG -> FreeBSD.org - Be consistent with section names as outlined in mdoc(7). - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexey M. Zelkin <phantom@cris.net>
* security(1) doesn't exist, but security(7) does.billf1999-03-201-2/+2
| | | | | PR: docs/10478 Submitted by: Oliver Fromme <oliver.fromme@heim3.tu-clausthal.de>
* Moving security page to section 7dillon1998-12-202-476/+2
|
* Add quick overview of basic firewalling practicesdillon1998-12-201-1/+25
|
* Add information on how to deal with DOS attacksdillon1998-12-201-3/+97
|
* FIxed unsorting of cross references in previous commit.bde1998-12-201-2/+2
|
* Fixed unsorting of MAN1 in previous commit.bde1998-12-201-3/+2
|
* Commit initial man page for 'security'... an introduction to securitydillon1998-12-193-3/+360
| | | | | | | mechanisms. It is a little light on detail but still a pretty good overview. I suggest that for specific detail (such as, for example, how to setup kerberos), that additional security-DETAILNAME man pages be written and refered to.
* Typo fix.max1997-06-131-2/+2
| | | | | PR: 3828 Submitted by: Josh Gilliam <josh@quick.net>
* fix a bugon of last commitjmg1997-04-221-2/+2
|
* Add manpage link introduction.1 -> intro.1wosch1997-04-141-1/+2
|
* slight rewording of HISTORY sectionjmg1997-04-141-4/+4
| | | | Closes PR#3261
* add missing cvs Id lines.jmg1997-03-073-0/+3
|
* Revert $FreeBSD$ back to $Id$peter1997-02-221-1/+1
|
* Add cross references to apropos(1), intro(5), intro(6).wosch1997-02-161-0/+3
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* add missing comma(s) in .Xr macroswosch1996-09-231-6/+7
|
* Add a reference to intro(9).mpp1996-03-111-0/+1
| | | | Submitted by: Philippe Charnier <charnier@lirmm.fr>
* Delete one of the two references to intro(3) in the SEE ALSO sectionats1995-02-281-1/+1
| | | | and add an intro(7) instead.
* Make man page installation work for ``unattached'' and kernel pages.wollman1994-08-091-1/+1
|
* BSD 4.4 Lite Share Sourcesrgrimes1994-05-304-0/+277
OpenPOWER on IntegriCloud