aboutsummaryrefslogtreecommitdiff
path: root/share/man/man1/Makefile
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>1999-09-08 15:40:46 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>1999-09-08 15:40:46 +0000
commitc644db6aa2307baa08e3b3e7143b20cf12d7aaa1 (patch)
tree450c1984c59205f991b47c9161042ddd5e9ae260 /share/man/man1/Makefile
parent518dee7dbbc81ff945a452d9710e98c4e2d600e4 (diff)
downloadsrc-c644db6aa2307baa08e3b3e7143b20cf12d7aaa1.tar.gz
src-c644db6aa2307baa08e3b3e7143b20cf12d7aaa1.zip
Improve shell documentation:
* 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
Notes
Notes: svn path=/head/; revision=51090
Diffstat (limited to 'share/man/man1/Makefile')
-rw-r--r--share/man/man1/Makefile29
1 files changed, 28 insertions, 1 deletions
diff --git a/share/man/man1/Makefile b/share/man/man1/Makefile
index 6fc2d4df290d..6c7e4bc67e60 100644
--- a/share/man/man1/Makefile
+++ b/share/man/man1/Makefile
@@ -1,7 +1,34 @@
# @(#)Makefile 8.1 (Berkeley) 6/5/93
# $FreeBSD$
-MAN1= cd.1 intro.1 wait.1
+MAN1= builtin.1 intro.1 wait.1
MLINKS= intro.1 introduction.1
+# Create MLINKS for Shell built in commands for which there are no userland
+# utilities of the same name:
+MLINKS= builtin.1 alias.1 builtin.1 alloc.1 builtin.1 bg.1 \
+ builtin.1 break.1 builtin.1 breaksw.1 builtin.1 case.1 \
+ builtin.1 cd.1 builtin.1 chdir.1 builtin.1 command.1 \
+ builtin.1 continue.1 builtin.1 cwd.1 builtin.1 do.1 \
+ builtin.1 done.1 builtin.1 default.1 \
+ builtin.1 dirs.1 builtin.1 elif.1 builtin.1 else.1 \
+ builtin.1 end.1 builtin.1 endif.1 builtin.1 endsw.1 \
+ builtin.1 esac.1 builtin.1 eval.1 builtin.1 exec.1 \
+ builtin.1 exit.1 builtin.1 export.1 builtin.1 fc.1 \
+ builtin.1 fg.1 builtin.1 fi.1 builtin.1 for.1 \
+ builtin.1 foreach.1 builtin.1 getopts.1 builtin.1 glob.1 \
+ builtin.1 goto.1 builtin.1 hash.1 builtin.1 hashstat.1 \
+ builtin.1 history.1 builtin.1 if.1 builtin.1 jobid.1 \
+ builtin.1 jobs.1 builtin.1 limit.1 builtin.1 logout.1 \
+ builtin.1 notify.1 builtin.1 onintr.1 builtin.1 popd.1 \
+ builtin.1 pushd.1 builtin.1 readonly.1 builtin.1 rehash.1 \
+ builtin.1 repeat.1 builtin.1 set.1 builtin.1 setenv.1 \
+ builtin.1 setvar.1 builtin.1 shift.1 builtin.1 source.1 \
+ builtin.1 stop.1 builtin.1 suspend.1 builtin.1 switch.1 \
+ builtin.1 then.1 builtin.1 trap.1 builtin.1 type.1 \
+ builtin.1 ulimit.1 builtin.1 umask.1 builtin.1 unalias.1 \
+ builtin.1 unhash.1 builtin.1 unlimit.1 builtin.1 unset.1 \
+ builtin.1 unsetenv.1 builtin.1 until.1 builtin.1 wait.1 \
+ builtin.1 while.1
+
.include <bsd.prog.mk>