[Winbash-checkins] CVS: winbash/documentation Makefile,1.2,1.3 bash.1,1.2,1.3
Brought to you by:
enricobrunetta,
xks
From: Enrico B. <enr...@us...> - 2002-03-09 16:05:46
|
Update of /cvsroot/winbash/winbash/documentation In directory usw-pr-cvs1:/tmp/cvs-serv14844/documentation Modified Files: Makefile bash.1 Log Message: Applied 1.14.3 diffs from GNU bash Index: Makefile =================================================================== RCS file: /cvsroot/winbash/winbash/documentation/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 9 Mar 2002 04:43:15 -0000 1.2 +++ Makefile 9 Mar 2002 16:05:42 -0000 1.3 @@ -106,12 +106,12 @@ realclean: clean install: all - [ -d $(mandir) ] || mkdir $(mandir) + -[ -d $(mandir) ] || mkdir $(mandir) $(INSTALL_DATA) bash.1 $(mandir) sed 's:so bash.1:so man1/bash.1:' < builtins.1 > $(mandir)/bash_builtins.1 - [ -d $(man3dir) ] || mkdir $(man3dir) + -[ -d $(man3dir) ] || mkdir $(man3dir) $(INSTALL_DATA) readline.3 $(man3dir) - [ -d $(infodir) ] || mkdir $(infodir) + -[ -d $(infodir) ] || mkdir $(infodir) $(INSTALL_DATA) features.info $(infodir)/bash.info uninstall: Index: bash.1 =================================================================== RCS file: /cvsroot/winbash/winbash/documentation/bash.1,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- bash.1 9 Mar 2002 04:43:15 -0000 1.2 +++ bash.1 9 Mar 2002 16:05:42 -0000 1.3 @@ -6,11 +6,11 @@ .\" Case Western Reserve University .\" ch...@in... .\" -.\" Last Change: Wed Jul 20 16:13:25 EDT 1994 +.\" Last Change: Tue Dec 6 12:15:11 EST 1994 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ -.TH BASH 1 "1994 July 26" GNU +.TH BASH 1 "1994 Dec 6" GNU .\" .\" There's some problem with having a `@' .\" in a tagged paragraph with the BSD man macros. @@ -4736,13 +4736,24 @@ The positional parameters from \fIn\fP+1 ... are renamed to .B $1 .B .... +Parameters represented by the numbers \fB$#\fP +down to \fB$#\fP\-\fIn\fP+1 are unset. +If +.I n +is 0, no parameters are changed. If .I n -is not given, it is assumed to be 1. The exit status is 1 if +is not given, it is assumed to be 1. +.I n +must be a non-negative number less than or equal to \fB$#\fP. +If +.I n +is greater than \fB$#\fP, the positional parameters are not changed. +The return status is greater than 0 if .I n is greater than -.BR $# ; -otherwise 0. +.B $# +or less than 0; otherwise 0. .TP \fBsuspend\fP [\fB\-f\fP] Suspend the execution of this shell until it receives a |