Changeset 3237 for trunk/essentials/app-shells/bash/doc
- Timestamp:
- Apr 30, 2007, 1:12:39 AM (18 years ago)
- Location:
- trunk/essentials/app-shells/bash/doc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/app-shells/bash/doc/bash.1
-
Property svn:eol-style
set to
native
r3228 r3237 7 7 .\" chet@po.cwru.edu 8 8 .\" 9 .\" Last Change: Sat Aug 27 13:28:44 EDT 20059 .\" Last Change: Wed Dec 28 19:58:45 EST 2005 10 10 .\" 11 11 .\" bash_builtins, strip all but Built-Ins section 12 12 .if \n(zZ=1 .ig zZ 13 13 .if \n(zY=1 .ig zY 14 .TH BASH 1 "2005 Aug 27" "GNU Bash-3.1-beta1"14 .TH BASH 1 "2005 Dec 28" "GNU Bash-3.1" 15 15 .\" 16 16 .\" There's some problem with having a `@' … … 678 678 is enabled, the match is performed without regard to the case 679 679 of alphabetic characters. 680 The return value is 0 if the string matches or does not match681 the pattern, respectively, and 1 otherwise.680 The return value is 0 if the string matches (\fB==\fP) or does not match 681 (\fB!=\fP) the pattern, and 1 otherwise. 682 682 Any part of the pattern may be quoted to force it to be matched as a 683 683 string. … … 808 808 .B Pathname Expansion 809 809 below). 810 The \fIword\fP is expanded using tilde 811 expansion, parameter and variable expansion, arithmetic substituion, 812 command substitution, process substitution and quote removal. 813 Each \fIpattern\fP examined is expanded using tilde 814 expansion, parameter and variable expansion, arithmetic substituion, 815 command substitution, and process substitution. 810 816 If the shell option 811 817 .B nocasematch … … 8485 8491 none are found. 8486 8492 .TP 8487 \fBulimit\fP [\fB\-SHacdf lmnpstuv\fP [\fIlimit\fP]]8493 \fBulimit\fP [\fB\-SHacdfilmnpqstuvx\fP [\fIlimit\fP]] 8488 8494 Provides control over the resources available to the shell and to 8489 8495 processes started by it, on systems that allow such control. … … 8524 8530 The maximum size of files created by the shell 8525 8531 .TP 8532 .B \-i 8533 The maximum number of pending signals 8534 .TP 8526 8535 .B \-l 8527 8536 The maximum size that may be locked into memory … … 8537 8546 The pipe size in 512-byte blocks (this may not be set) 8538 8547 .TP 8548 .B \-q 8549 The maximum number of bytes in POSIX message queues 8550 .TP 8539 8551 .B \-s 8540 8552 The maximum stack size … … 8548 8560 .B \-v 8549 8561 The maximum amount of virtual memory available to the shell 8562 .TP 8563 .B \-x 8564 The maximum number of file locks 8550 8565 .PD 8551 8566 .PP -
Property svn:eol-style
set to
-
trunk/essentials/app-shells/bash/doc/bashref.texi
-
Property svn:eol-style
set to
native
r3228 r3237 962 962 is enabled, the match is performed without regard to the case 963 963 of alphabetic characters. 964 The return value is 0 if the string matches or does not match965 the pattern, respectively, and 1 otherwise.964 The return value is 0 if the string matches (@samp{==}) or does not 965 match (@samp{!=})the pattern, and 1 otherwise. 966 966 Any part of the pattern may be quoted to force it to be matched as a 967 967 string. … … 2599 2599 or inconvenient to obtain with separate utilities. 2600 2600 2601 This section briefly the builtins which Bash inherits from2601 This section briefly describes the builtins which Bash inherits from 2602 2602 the Bourne Shell, as well as the builtin commands which are unique 2603 2603 to or have been extended in Bash. … … 3834 3834 @btindex ulimit 3835 3835 @example 3836 ulimit [-acdf lmnpstuvSH] [@var{limit}]3836 ulimit [-acdfilmnpqstuvxSH] [@var{limit}] 3837 3837 @end example 3838 3838 @code{ulimit} provides control over the resources available to processes … … 3858 3858 The maximum size of files created by the shell. 3859 3859 3860 @item -i 3861 The maximum number of pending signals. 3862 3860 3863 @item -l 3861 3864 The maximum size that may be locked into memory. … … 3870 3873 The pipe buffer size. 3871 3874 3875 @item -q 3876 The maximum number of bytes in POSIX message queues. 3877 3872 3878 @item -s 3873 3879 The maximum stack size. … … 3881 3887 @item -v 3882 3888 The maximum amount of virtual memory available to the process. 3889 3890 @item -x 3891 The maximum number of file locks. 3883 3892 3884 3893 @end table … … 4090 4099 4091 4100 @item -x 4092 Print a trace of simple commands, \fBfor\fP commands, \fBcase\fP4093 commands, \fBselect\fP commands, and arithmetic \fBfor\fPcommands4101 Print a trace of simple commands, @code{for} commands, @code{case} 4102 commands, @code{select} commands, and arithmetic @code{for} commands 4094 4103 and their arguments or associated word lists after they are 4095 4104 expanded and before they are executed. The value of the @env{PS4} -
Property svn:eol-style
set to
-
trunk/essentials/app-shells/bash/doc/version.texi
-
Property svn:eol-style
set to
native
r3228 r3237 3 3 @end ignore 4 4 5 @set LASTCHANGE Mon Sep 5 11:47:04 EDT 20055 @set LASTCHANGE Fri Dec 30 10:50:51 EST 2005 6 6 7 @set EDITION 3.1 -beta18 @set VERSION 3.1 -beta19 @set UPDATED 5 September 200510 @set UPDATED-MONTH September 20057 @set EDITION 3.1 8 @set VERSION 3.1 9 @set UPDATED 30 December 2005 10 @set UPDATED-MONTH December 2005 -
Property svn:eol-style
set to
Note:
See TracChangeset
for help on using the changeset viewer.