1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
|
.TH "ZSHPARAM" "1" "March 7, 2006" "zsh 4\&.3\&.2-dev-1"
.SH "NAME"
zshparam \- zsh parameters
.\" Yodl file: Zsh/params.yo
.SH "DESCRIPTION"
A parameter has a name, a value, and a number of attributes\&.
A name may be any sequence of alphanumeric
characters and underscores, or the single characters
`\fB*\fP\&', `\fB@\fP', `\fB#\fP', `\fB?\fP', `\fB\-\fP', `\fB$\fP', or `\fB!\fP'\&.
The value may be a \fIscalar\fP (a string),
an integer, an array (indexed numerically), or an \fIassociative\fP
array (an unordered set of name\-value pairs, indexed by name)\&. To declare
the type of a parameter, or to assign a scalar or integer value to a
parameter, use the \fBtypeset\fP builtin\&.
.PP
The value of a scalar or integer parameter may also be assigned by
writing:
.PP
.RS
.nf
\fIname\fP\fB=\fP\fIvalue\fP
.fi
.RE
.PP
If the integer attribute, \fB\-i\fP, is set for \fIname\fP, the \fIvalue\fP
is subject to arithmetic evaluation\&. Furthermore, by replacing `\fB=\fP\&'
with `\fB+=\fP\&', a parameter can be added or appended to\&. See
the section `Array Parameters\&' for additional forms of assignment\&.
.PP
To refer to the value of a parameter, write `\fB$\fP\fIname\fP\&' or
`\fB${\fP\fIname\fP\fB}\fP\&'\&. See
\fIParameter Expansion\fP in \fIzshexpn\fP(1)
for complete details\&.
.PP
In the parameter lists that follow, the mark `<S>\&' indicates that the
parameter is special\&.
Special parameters cannot have their type changed or their
readonly attribute turned off, and if a special parameter is unset, then
later recreated, the special properties will be retained\&. `<Z>\&' indicates
that the parameter does not exist when the shell initializes in \fBsh\fP or
\fBksh\fP emulation mode\&.
.SH "ARRAY PARAMETERS"
To assign an array value, write one of:
.PP
.RS
.nf
\fBset \-A\fP \fIname\fP \fIvalue\fP \&.\&.\&.
.fi
.RE
.RS
.nf
\fIname\fP\fB=(\fP\fIvalue\fP \&.\&.\&.\fB)\fP
.fi
.RE
.PP
If no parameter \fIname\fP exists, an ordinary array parameter is created\&.
If the parameter \fIname\fP exists and is a scalar, it is replaced by a new
array\&. Ordinary array parameters may also be explicitly declared with:
.PP
.RS
.nf
\fBtypeset \-a\fP \fIname\fP
.fi
.RE
.PP
Associative arrays \fImust\fP be declared before assignment, by using:
.PP
.RS
.nf
\fBtypeset \-A\fP \fIname\fP
.fi
.RE
.PP
When \fIname\fP refers to an associative array, the list in an assignment
is interpreted as alternating keys and values:
.PP
.RS
.nf
set \-A \fIname\fP \fIkey\fP \fIvalue\fP \&.\&.\&.
.fi
.RE
.RS
.nf
\fIname\fP\fB=(\fP\fIkey\fP \fIvalue\fP \&.\&.\&.\fB)\fP
.fi
.RE
.PP
Every \fIkey\fP must have a \fIvalue\fP in this case\&. Note that this
assigns to the entire array, deleting any elements that do not appear
in the list\&.
.PP
To create an empty array (including associative arrays), use one of:
.PP
.RS
.nf
\fBset \-A\fP \fIname\fP
.fi
.RE
.RS
.nf
\fIname\fP\fB=()\fP
.fi
.RE
.PP
.SS "Array Subscripts"
.PP
Individual elements of an array may be selected using a subscript\&. A
subscript of the form `\fB[\fP\fIexp\fP\fB]\fP\&' selects the single element
\fIexp\fP, where \fIexp\fP is an arithmetic expression which will be subject
to arithmetic expansion as if it were surrounded by
`\fB$((\fP\&.\&.\&.\fB))\fP\&'\&. The elements are numbered
beginning with 1, unless the \fBKSH_ARRAYS\fP option is set in which case
they are numbered from zero\&.
.PP
Subscripts may be used inside braces used to delimit a parameter name, thus
`\fB${foo[2]}\fP\&' is equivalent to `\fB$foo[2]\fP'\&. If the \fBKSH_ARRAYS\fP
option is set, the braced form is the only one that works, as bracketed
expressions otherwise are not treated as subscripts\&.
.PP
The same subscripting syntax is used for associative arrays, except that
no arithmetic expansion is applied to \fIexp\fP\&. However, the parsing
rules for arithmetic expressions still apply, which affects the way that
certain special characters must be protected from interpretation\&. See
\fISubscript Parsing\fP below for details\&.
.PP
A subscript of the form `\fB[*]\fP\&' or `\fB[@]\fP' evaluates to all elements
of an array; there is no difference between the two except when they
appear within double quotes\&.
`\fB"$foo[*]"\fP\&' evaluates to `\fB"$foo[1] $foo[2] \fP\&.\&.\&.\fB"\fP', whereas
`\fB"$foo[@]"\fP\&' evaluates to `\fB"$foo[1]" "$foo[2]" \fP\&.\&.\&.'\&. For
associative arrays, `\fB[*]\fP\&' or `\fB[@]\fP' evaluate to all the values,
in no particular order\&. Note that this does not substitute
the keys; see the documentation for the `\fBk\fP\&' flag under
\fIParameter Expansion Flags\fP in \fIzshexpn\fP(1)
for complete details\&.
When an array parameter is referenced as `\fB$\fP\fIname\fP\&' (with no
subscript) it evaluates to `\fB$\fP\fIname\fP\fB[*]\fP\&', unless the \fBKSH_ARRAYS\fP
option is set in which case it evaluates to `\fB${\fP\fIname\fP\fB[0]}\fP\&' (for
an associative array, this means the value of the key `\fB0\fP\&', which may
not exist even if there are values for other keys)\&.
.PP
A subscript of the form `\fB[\fP\fIexp1\fP\fB,\fP\fIexp2\fP\fB]\fP\&'
selects all elements in the range \fIexp1\fP to \fIexp2\fP,
inclusive\&. (Associative arrays are unordered, and so do not support
ranges\&.) If one of the subscripts evaluates to a negative number,
say \fB\-\fP\fIn\fP, then the \fIn\fPth element from the end
of the array is used\&. Thus `\fB$foo[\-3]\fP\&' is the third element
from the end of the array \fBfoo\fP, and
`\fB$foo[1,\-1]\fP\&' is the same as `\fB$foo[*]\fP'\&.
.PP
Subscripting may also be performed on non\-array values, in which
case the subscripts specify a substring to be extracted\&.
For example, if \fBFOO\fP is set to `\fBfoobar\fP\&', then
`\fBecho $FOO[2,5]\fP\&' prints `\fBooba\fP'\&.
.PP
.SS "Array Element Assignment"
.PP
A subscript may be used on the left side of an assignment like so:
.PP
.RS
.nf
\fIname\fP\fB[\fP\fIexp\fP\fB]=\fP\fIvalue\fP
.fi
.RE
.PP
In this form of assignment the element or range specified by \fIexp\fP
is replaced by the expression on the right side\&. An array (but not an
associative array) may be created by assignment to a range or element\&.
Arrays do not nest, so assigning a parenthesized list of values to an
element or range changes the number of elements in the array, shifting the
other elements to accommodate the new values\&. (This is not supported for
associative arrays\&.)
.PP
This syntax also works as an argument to the \fBtypeset\fP command:
.PP
.RS
.nf
\fBtypeset\fP \fB"\fP\fIname\fP\fB[\fP\fIexp\fP\fB]"=\fP\fIvalue\fP
.fi
.RE
.PP
The \fIvalue\fP may \fInot\fP be a parenthesized list in this case; only
single\-element assignments may be made with \fBtypeset\fP\&. Note that quotes
are necessary in this case to prevent the brackets from being interpreted
as filename generation operators\&. The \fBnoglob\fP precommand modifier
could be used instead\&.
.PP
To delete an element of an ordinary array, assign `\fB()\fP\&' to
that element\&. To delete an element of an associative array, use the
\fBunset\fP command:
.PP
.RS
.nf
\fBunset\fP \fB"\fP\fIname\fP\fB[\fP\fIexp\fP\fB]"\fP
.fi
.RE
.PP
.SS "Subscript Flags"
.PP
If the opening bracket, or the comma in a range, in any subscript
expression is directly followed by an opening parenthesis, the string up
to the matching closing one is considered to be a list of flags, as in
`\fIname\fP\fB[(\fP\fIflags\fP\fB)\fP\fIexp\fP\fB]\fP\&'\&.
.PP
The flags \fBs\fP, \fBn\fP and \fBb\fP take an argument; the delimiter
is shown below as `\fB:\fP\&', but any character, or the matching pairs
`\fB(\fP\&.\&.\&.\fB)\fP\&', `\fB{\fP\&.\&.\&.\fB}\fP', `\fB[\fP\&.\&.\&.\fB]\fP', or
`\fB<\fP\&.\&.\&.\fB>\fP\&', may be used\&.
.PP
The flags currently understood are:
.PP
.PD 0
.TP
.PD
\fBw\fP
If the parameter subscripted is a scalar then this flag makes
subscripting work on words instead of characters\&. The default word
separator is whitespace\&.
.TP
\fBs:\fP\fIstring\fP\fB:\fP
This gives the \fIstring\fP that separates words (for use with the
\fBw\fP flag)\&. The delimiter character \fB:\fP is arbitrary; see above\&.
.TP
\fBp\fP
Recognize the same escape sequences as the \fBprint\fP builtin in
the string argument of a subsequent `\fBs\fP\&' flag\&.
.TP
\fBf\fP
If the parameter subscripted is a scalar then this flag makes
subscripting work on lines instead of characters, i\&.e\&. with elements
separated by newlines\&. This is a shorthand for `\fBpws:\en:\fP\&'\&.
.TP
\fBr\fP
Reverse subscripting: if this flag is given, the \fIexp\fP is taken as a
pattern and the result is the first matching array element, substring or
word (if the parameter is an array, if it is a scalar, or if it is a
scalar and the `\fBw\fP\&' flag is given, respectively)\&. The subscript used
is the number of the matching element, so that pairs of subscripts such as
`\fB$foo[(r)\fP\fI??\fP\fB,3]\fP\&' and `\fB$foo[(r)\fP\fI??\fP\fB,(r)f*]\fP' are
possible if the parameter is not an associative array\&. If the
parameter is an associative array, only the value part of each pair is
compared to the pattern, and the result is that value\&.
.RS
.PP
If a search through an ordinary array failed, the search sets the
subscript to one past the end of the array, and hence
\fB${array[(r)pattern]}\fP will substitute the empty string\&. Thus the
success of a search can be tested by using the \fB(i)\fP flag, for
example (assuming the option \fBKSH_ARRAYS\fP is not in effect):
.PP
.RS
.nf
\fB[[ ${array[(i)pattern]} \-le ${#array} ]]\fP
.fi
.RE
.PP
If \fBKSH_ARRAYS\fP is in effect, the \fB\-le\fP should be replaced by \fB\-lt\fP\&.
.PP
Note that in subscripts with both `\fBr\fP\&' and `\fBR\fP' pattern characters
are active even if they were substituted for a parameter (regardless
of the setting of \fBGLOB_SUBST\fP which controls this feature in normal
pattern matching)\&. It is therefore necessary to quote pattern characters
for an exact string match\&. Given a string in \fB$key\fP, and assuming
the \fBEXTENDED_GLOB\fP option is set, the following is sufficient to
match an element of an array \fB$array\fP containing exactly the value of
\fB$key\fP:
.PP
.RS
.nf
\fBkey2=${key//(#m)[\e][()\e\e*?#<>~^]/\e\e$MATCH}
print ${array[(R)$key2]}\fP
.fi
.RE
.RE
.TP
\fBR\fP
Like `\fBr\fP\&', but gives the last match\&. For associative arrays, gives
all possible matches\&. May be used for assigning to ordinary array
elements, but not for assigning to associative arrays\&.
.RS
.PP
Note that this flag can give odd results on failure\&. For an ordinary array
the item substituted is that corresponding to subscript 0\&. If the option
\fBKSH_ARRAYS\fP is not in effect, this is the same as the element
corresponding to subscript 1, although the form \fB${array[(I)pattern]}\fP
will evaluate to 0 for a failed match\&. If the option \fBKSH_ARRAYS\fP is in
effect, the subscript is still 0 for a failed match; this cannot be
distinguished from a successful match without testing \fB${array[0]}\fP
against the pattern\&.
.RE
.TP
\fBi\fP
Like `\fBr\fP\&', but gives the index of the match instead; this may not be
combined with a second argument\&. On the left side of an assignment,
behaves like `\fBr\fP\&'\&. For associative arrays, the key part of each pair
is compared to the pattern, and the first matching key found is the
result\&.
.RS
.PP
See `\fBr\fP\&' for discussion of subscripts of failed matches\&.
.RE
.TP
\fBI\fP
Like `\fBi\fP\&', but gives the index of the last match, or all possible
matching keys in an associative array\&.
.RS
.PP
See `\fBR\fP\&' for discussion of subscripts of failed matches\&.
.RE
.TP
\fBk\fP
If used in a subscript on an associative array, this flag causes the keys
to be interpreted as patterns, and returns the value for the first key
found where \fIexp\fP is matched by the key\&. This flag does not work on
the left side of an assignment to an associative array element\&. If used
on another type of parameter, this behaves like `\fBr\fP\&'\&.
.TP
\fBK\fP
On an associative array this is like `\fBk\fP\&' but returns all values where
\fIexp\fP is matched by the keys\&. On other types of parameters this has
the same effect as `\fBR\fP\&'\&.
.TP
\fBn:\fP\fIexpr\fP\fB:\fP
If combined with `\fBr\fP\&', `\fBR\fP', `\fBi\fP' or `\fBI\fP', makes them give
the \fIn\fPth or \fIn\fPth last match (if \fIexpr\fP evaluates to
\fIn\fP)\&. This flag is ignored when the array is associative\&.
The delimiter character \fB:\fP is arbitrary; see above\&.
.TP
\fBb:\fP\fIexpr\fP\fB:\fP
If combined with `\fBr\fP\&', `\fBR\fP', `\fBi\fP' or `\fBI\fP', makes them begin
at the \fIn\fPth or \fIn\fPth last element, word, or character (if \fIexpr\fP
evaluates to \fIn\fP)\&. This flag is ignored when the array is associative\&.
The delimiter character \fB:\fP is arbitrary; see above\&.
.TP
\fBe\fP
This flag has no effect and for ordinary arrays is retained for backward
compatibility only\&. For associative arrays, this flag can be used to
force \fB*\fP or \fB@\fP to be interpreted as a single key rather than as a
reference to all values\&. This flag may be used on the left side of an
assignment\&.
.PP
See \fIParameter Expansion Flags\fP (\fIzshexpn\fP(1)) for additional ways to manipulate the results of array subscripting\&.
.PP
.SS "Subscript Parsing"
.PP
This discussion applies mainly to associative array key strings and to
patterns used for reverse subscripting (the `\fBr\fP\&', `\fBR\fP', `\fBi\fP',
etc\&. flags), but it may also affect parameter substitutions that appear
as part of an arithmetic expression in an ordinary subscript\&.
.PP
It is possible to avoid the use of subscripts in assignments to associative
array elements by using the syntax:
.PP
.RS
.nf
\fB
aa+=(\&'key with "*strange*" characters' 'value string')
\fP
.fi
.RE
.PP
This adds a new key/value pair if the key is not already present, and
replaces the value for the existing key if it is\&.
.PP
The basic rule to remember when writing a subscript expression is that all
text between the opening `\fB[\fP\&' and the closing `\fB]\fP' is interpreted
\fIas if\fP it were in double quotes (see \fIzshmisc\fP(1))\&. However, unlike double quotes which normally cannot nest, subscript
expressions may appear inside double\-quoted strings or inside other
subscript expressions (or both!), so the rules have two important
differences\&.
.PP
The first difference is that brackets (`\fB[\fP\&' and `\fB]\fP') must appear as
balanced pairs in a subscript expression unless they are preceded by a
backslash (`\fB\e\fP\&')\&. Therefore, within a subscript expression (and unlike
true double\-quoting) the sequence `\fB\e[\fP\&' becomes `\fB[\fP', and similarly
`\fB\e]\fP\&' becomes `\fB]\fP'\&. This applies even in cases where a backslash is
not normally required; for example, the pattern `\fB[^[]\fP\&' (to match any
character other than an open bracket) should be written `\fB[^\e[]\fP\&' in a
reverse\-subscript pattern\&. However, note that `\fB\e[^\e[\e]\fP\&' and even
`\fB\e[^[]\fP\&' mean the \fIsame\fP thing, because backslashes are always
stripped when they appear before brackets!
.PP
The same rule applies to parentheses (`\fB(\fP\&' and `\fB)\fP') and
braces (`\fB{\fP\&' and `\fB}\fP'): they must appear either in balanced pairs or
preceded by a backslash, and backslashes that protect parentheses or
braces are removed during parsing\&. This is because parameter expansions
may be surrounded balanced braces, and subscript flags are introduced by
balanced parenthesis\&.
.PP
The second difference is that a double\-quote (`\fB"\fP\&') may appear as part
of a subscript expression without being preceded by a backslash, and
therefore that the two characters `\fB\e"\fP\&' remain as two characters in the
subscript (in true double\-quoting, `\fB\e"\fP\&' becomes `\fB"\fP')\&. However,
because of the standard shell quoting rules, any double\-quotes that appear
must occur in balanced pairs unless preceded by a backslash\&. This makes
it more difficult to write a subscript expression that contains an odd
number of double\-quote characters, but the reason for this difference is
so that when a subscript expression appears inside true double\-quotes, one
can still write `\fB\e"\fP\&' (rather than `\fB\e\e\e"\fP') for `\fB"\fP'\&.
.PP
To use an odd number of double quotes as a key in an assignment, use the
\fBtypeset\fP builtin and an enclosing pair of double quotes; to refer to
the value of that key, again use double quotes:
.PP
.RS
.nf
\fBtypeset \-A aa
typeset "aa[one\e"two\e"three\e"quotes]"=QQQ
print "$aa[one\e"two\e"three\e"quotes]"\fP
.fi
.RE
.PP
It is important to note that the quoting rules do not change when a
parameter expansion with a subscript is nested inside another subscript
expression\&. That is, it is not necessary to use additional backslashes
within the inner subscript expression; they are removed only once, from
the innermost subscript outwards\&. Parameters are also expanded from the
innermost subscript first, as each expansion is encountered left to right
in the outer expression\&.
.PP
A further complication arises from a way in which subscript parsing is
\fInot\fP different from double quote parsing\&. As in true double\-quoting,
the sequences `\fB\e*\fP\&', and `\fB\e@\fP' remain as two characters when they
appear in a subscript expression\&. To use a literal `\fB*\fP\&' or `\fB@\fP' as
an associative array key, the `\fBe\fP\&' flag must be used:
.PP
.RS
.nf
\fBtypeset \-A aa
aa[(e)*]=star
print $aa[(e)*]\fP
.fi
.RE
.PP
A last detail must be considered when reverse subscripting is performed\&.
Parameters appearing in the subscript expression are first expanded and
then the complete expression is interpreted as a pattern\&. This has two
effects: first, parameters behave as if \fBGLOB_SUBST\fP were on (and it
cannot be turned off); second, backslashes are interpreted twice, once
when parsing the array subscript and again when parsing the pattern\&. In a
reverse subscript, it\&'s necessary to use \fIfour\fP backslashes to cause a
single backslash to match literally in the pattern\&. For complex patterns,
it is often easiest to assign the desired pattern to a parameter and then
refer to that parameter in the subscript, because then the backslashes,
brackets, parentheses, etc\&., are seen only when the complete expression is
converted to a pattern\&. To match the value of a parameter literally in a
reverse subscript, rather than as a pattern,
use `\fB${(q\fP\fB)\fP\fIname\fP\fB}\fP\&' (see \fIzshexpn\fP(1)) to quote the expanded value\&.
.PP
Note that the `\fBk\fP\&' and `\fBK\fP' flags are reverse subscripting for an
ordinary array, but are \fInot\fP reverse subscripting for an associative
array! (For an associative array, the keys in the array itself are
interpreted as patterns by those flags; the subscript is a plain string
in that case\&.)
.PP
One final note, not directly related to subscripting: the numeric names
of positional parameters (described below) are parsed specially, so for example `\fB$2foo\fP\&' is equivalent to
`\fB${2}foo\fP\&'\&. Therefore, to use subscript syntax to extract a substring
from a positional parameter, the expansion must be surrounded by braces;
for example, `\fB${2[3,5]}\fP\&' evaluates to the third through fifth
characters of the second positional parameter, but `\fB$2[3,5]\fP\&' is the
entire second parameter concatenated with the filename generation pattern
`\fB[3,5]\fP\&'\&.
.PP
.SH "POSITIONAL PARAMETERS"
The positional parameters provide access to the command\-line arguments
of a shell function, shell script, or the shell itself; see
the section `Invocation\&', and also the section `Functions'\&.
The parameter \fIn\fP, where \fIn\fP is a number,
is the \fIn\fPth positional parameter\&.
The parameters \fB*\fP, \fB@\fP and \fBargv\fP are
arrays containing all the positional parameters;
thus `\fB$argv[\fP\fIn\fP\fB]\fP\&', etc\&., is equivalent to simply `\fB$\fP\fIn\fP'\&.
.PP
Positional parameters may be changed after the shell or function starts by
using the \fBset\fP builtin, by assigning to the \fBargv\fP array, or by direct
assignment of the form `\fIn\fP\fB=\fP\fIvalue\fP\&' where \fIn\fP is the number of
the positional parameter to be changed\&. This also creates (with empty
values) any of the positions from 1 to \fIn\fP that do not already have
values\&. Note that, because the positional parameters form an array, an
array assignment of the form `\fIn\fP\fB=(\fP\fIvalue\fP \&.\&.\&.\fB)\fP\&' is
allowed, and has the effect of shifting all the values at positions greater
than \fIn\fP by as many positions as necessary to accommodate the new values\&.
.PP
.SH "LOCAL PARAMETERS"
Shell function executions delimit scopes for shell parameters\&.
(Parameters are dynamically scoped\&.) The \fBtypeset\fP builtin, and its
alternative forms \fBdeclare\fP, \fBinteger\fP, \fBlocal\fP and \fBreadonly\fP
(but not \fBexport\fP), can be used to declare a parameter as being local
to the innermost scope\&.
.PP
When a parameter is read or assigned to, the
innermost existing parameter of that name is used\&. (That is, the
local parameter hides any less\-local parameter\&.) However, assigning
to a non\-existent parameter, or declaring a new parameter with \fBexport\fP,
causes it to be created in the \fIouter\fPmost scope\&.
.PP
Local parameters disappear when their scope ends\&.
\fBunset\fP can be used to delete a parameter while it is still in scope;
any outer parameter of the same name remains hidden\&.
.PP
Special parameters may also be made local; they retain their special
attributes unless either the existing or the newly\-created parameter
has the \fB\-h\fP (hide) attribute\&. This may have unexpected effects:
there is no default value, so if there is no assignment at the
point the variable is made local, it will be set to an empty value (or zero
in the case of integers)\&.
The following:
.PP
.RS
.nf
\fBtypeset PATH=/new/directory:$PATH\fP
.fi
.RE
.PP
is valid for temporarily allowing the shell or programmes called from it to
find the programs in \fB/new/directory\fP inside a function\&.
.PP
Note that the restriction in older versions of zsh that local parameters
were never exported has been removed\&.
.PP
.SH "PARAMETERS SET BY THE SHELL"
The following parameters are automatically set by the shell:
.PP
.PD 0
.TP
.PD
\fB!\fP <S>
The process ID of the last command started in the background with \fB&\fP,
or put into the background with the \fBbg\fP builtin\&.
.TP
\fB#\fP <S>
The number of positional parameters in decimal\&. Note that some confusion
may occur with the syntax \fB$#\fP\fIparam\fP which substitutes the length of
\fIparam\fP\&. Use \fB${#}\fP to resolve ambiguities\&. In particular, the
sequence `\fB$#\-\fP\fI\&.\&.\&.\fP\&' in an arithmetic expression is interpreted as
the length of the parameter \fB\-\fP, q\&.v\&.
.TP
\fBARGC\fP <S> <Z>
Same as \fB#\fP\&.
.TP
\fB$\fP <S>
The process ID of this shell\&. Note that this indicates the original
shell started by invoking \fBzsh\fP; all processes forked from the shells
without executing a new program, such as subshells started by
\fB(\fP\fI\&.\&.\&.\fP\fB)\fP, substitute the same value\&.
.TP
\fB\-\fP <S>
Flags supplied to the shell on invocation or by the \fBset\fP
or \fBsetopt\fP commands\&.
.TP
\fB*\fP <S>
An array containing the positional parameters\&.
.TP
\fBargv\fP <S> <Z>
Same as \fB*\fP\&. Assigning to \fBargv\fP changes the local positional
parameters, but \fBargv\fP is \fInot\fP itself a local parameter\&.
Deleting \fBargv\fP with \fBunset\fP in any function deletes it everywhere,
although only the innermost positional parameter array is deleted (so
\fB*\fP and \fB@\fP in other scopes are not affected)\&.
.TP
\fB@\fP <S>
Same as \fBargv[@]\fP, even when \fBargv\fP is not set\&.
.TP
\fB?\fP <S>
The exit status returned by the last command\&.
.TP
\fB0\fP <S>
The name used to invoke the current shell\&. If the \fBFUNCTION_ARGZERO\fP option
is set, this is set temporarily within a shell function to the name of the
function, and within a sourced script to the name of the script\&.
.TP
\fBstatus\fP <S> <Z>
Same as \fB?\fP\&.
.TP
\fBpipestatus\fP <S> <Z>
An array containing the exit statuses returned by all commands in the
last pipeline\&.
.TP
\fB_\fP <S>
The last argument of the previous command\&.
Also, this parameter is set in the environment of every command
executed to the full pathname of the command\&.
.TP
\fBCPUTYPE\fP
The machine type (microprocessor class or machine model),
as determined at run time\&.
.TP
\fBEGID\fP <S>
The effective group ID of the shell process\&. If you have sufficient
privileges, you may change the effective group ID of the shell
process by assigning to this parameter\&. Also (assuming sufficient
privileges), you may start a single command with a different
effective group ID by `\fB(EGID=\fP\fIgid\fP\fB; command)\fP\&'
.TP
\fBEUID\fP <S>
The effective user ID of the shell process\&. If you have sufficient
privileges, you may change the effective user ID of the shell process
by assigning to this parameter\&. Also (assuming sufficient privileges),
you may start a single command with a different
effective user ID by `\fB(EUID=\fP\fIuid\fP\fB; command)\fP\&'
.TP
\fBERRNO\fP <S>
The value of errno (see \fIerrno\fP(3))
as set by the most recently failed system call\&.
This value is system dependent and is intended for debugging
purposes\&. It is also useful with the \fBzsh/system\fP module which
allows the number to be turned into a name or message\&.
.TP
\fBGID\fP <S>
The real group ID of the shell process\&. If you have sufficient privileges,
you may change the group ID of the shell process by assigning to this
parameter\&. Also (assuming sufficient privileges), you may start a single
command under a different
group ID by `\fB(GID=\fP\fIgid\fP\fB; command)\fP\&'
.TP
\fBHISTCMD\fP
The current history line number in an interactive shell, in other
words the line number for the command that caused \fB$HISTCMD\fP
to be read\&.
.TP
\fBHOST\fP
The current hostname\&.
.TP
\fBLINENO\fP <S>
The line number of the current line within the current script, sourced
file, or shell function being executed, whichever was started most
recently\&. Note that in the case of shell functions the line
number refers to the function as it appeared in the original definition,
not necessarily as displayed by the \fBfunctions\fP builtin\&.
.TP
\fBLOGNAME\fP
If the corresponding variable is not set in the environment of the
shell, it is initialized to the login name corresponding to the
current login session\&. This parameter is exported by default but
this can be disabled using the \fBtypeset\fP builtin\&.
.TP
\fBMACHTYPE\fP
The machine type (microprocessor class or machine model),
as determined at compile time\&.
.TP
\fBOLDPWD\fP
The previous working directory\&. This is set when the shell initializes
and whenever the directory changes\&.
.TP
\fBOPTARG\fP <S>
The value of the last option argument processed by the \fBgetopts\fP
command\&.
.TP
\fBOPTIND\fP <S>
The index of the last option argument processed by the \fBgetopts\fP
command\&.
.TP
\fBOSTYPE\fP
The operating system, as determined at compile time\&.
.TP
\fBPPID\fP <S>
The process ID of the parent of the shell\&. As for \fB$$\fP, the
value indicates the parent of the original shell and does not
change in subshells\&.
.TP
\fBPWD\fP
The present working directory\&. This is set when the shell initializes
and whenever the directory changes\&.
.TP
\fBRANDOM\fP <S>
A pseudo\-random integer from 0 to 32767, newly generated each time
this parameter is referenced\&. The random number generator
can be seeded by assigning a numeric value to \fBRANDOM\fP\&.
.RS
.PP
The values of \fBRANDOM\fP form an intentionally\-repeatable pseudo\-random
sequence; subshells that reference \fBRANDOM\fP will result
in identical pseudo\-random values unless the value of \fBRANDOM\fP is
referenced or seeded in the parent shell in between subshell invocations\&.
.RE
.TP
\fBSECONDS\fP <S>
The number of seconds since shell invocation\&. If this parameter
is assigned a value, then the value returned upon reference
will be the value that was assigned plus the number of seconds
since the assignment\&.
.RS
.PP
Unlike other special parameters, the type of the \fBSECONDS\fP parameter can
be changed using the \fBtypeset\fP command\&. Only integer and one of the
floating point types are allowed\&. For example, `\fBtypeset \-F SECONDS\fP\&'
causes the value to be reported as a floating point number\&. The precision
is six decimal places, although not all places may be useful\&.
.RE
.TP
\fBSHLVL\fP <S>
Incremented by one each time a new shell is started\&.
.TP
\fBsignals\fP
An array containing the names of the signals\&.
.TP
\fBTRY_BLOCK_ERROR\fP <S>
In an \fBalways\fP block, indicates whether the preceding list of code
caused an error\&. The value is 1 to indicate an error, 0 otherwise\&.
It may be reset, clearing the error condition\&. See
\fIComplex Commands\fP in \fIzshmisc\fP(1)
.TP
\fBTTY\fP
The name of the tty associated with the shell, if any\&.
.TP
\fBTTYIDLE\fP <S>
The idle time of the tty associated with the shell in seconds or \-1 if there
is no such tty\&.
.TP
\fBUID\fP <S>
The real user ID of the shell process\&. If you have sufficient privileges,
you may change the user ID of the shell by assigning to this parameter\&.
Also (assuming sufficient privileges), you may start a single command
under a different
user ID by `\fB(UID=\fP\fIuid\fP\fB; command)\fP\&'
.TP
\fBUSERNAME\fP <S>
The username corresponding to the real user ID of the shell process\&. If you
have sufficient privileges, you may change the username (and also the
user ID and group ID) of the shell by assigning to this parameter\&.
Also (assuming sufficient privileges), you may start a single command
under a different username (and user ID and group ID)
by `\fB(USERNAME=\fP\fIusername\fP\fB; command)\fP\&'
.TP
\fBVENDOR\fP
The vendor, as determined at compile time\&.
.TP
\fBZSH_NAME\fP
Expands to the basename of the command used to invoke this instance
of zsh\&.
.TP
\fBZSH_VERSION\fP
The version number of this zsh\&.
.SH "PARAMETERS USED BY THE SHELL"
The following parameters are used by the shell\&.
.PP
In cases where there are two parameters with an upper\- and lowercase
form of the same name, such as \fBpath\fP and \fBPATH\fP, the lowercase form
is an array and the uppercase form is a scalar with the elements of the
array joined together by colons\&. These are similar to tied parameters
created via `\fBtypeset \-T\fP\&'\&. The normal use for the colon\-separated
form is for exporting to the environment, while the array form is easier
to manipulate within the shell\&. Note that unsetting either of the pair
will unset the other; they retain their special properties when
recreated, and recreating one of the pair will recreate the other\&.
.PP
.PD 0
.TP
.PD
\fBARGV0\fP
If exported, its value is used as the \fBargv[0]\fP of external commands\&.
Usually used in constructs like `\fBARGV0=emacs nethack\fP\&'\&.
.TP
\fBBAUD\fP
The baud rate of the current connection\&. Used by the line editor
update mechanism to compensate for a slow terminal by delaying
updates until necessary\&. This may be profitably set to a lower value
in some circumstances, e\&.g\&.
for slow modems dialing into a communications server which is connected
to a host via a fast link; in this case, this variable
would be set by default to the speed of the fast link, and not
the modem\&.
This parameter should be set to the baud
rate of the slowest part of the link for best performance\&. The compensation
mechanism can be turned off by setting the variable to zero\&.
.TP
\fBcdpath\fP <S> <Z> (\fBCDPATH\fP <S>)
An array (colon\-separated list)
of directories specifying the search path for the \fBcd\fP command\&.
.TP
\fBCOLUMNS\fP <S>
The number of columns for this terminal session\&.
Used for printing select lists and for the line editor\&.
.TP
\fBDIRSTACKSIZE\fP
The maximum size of the directory stack\&. If the
stack gets larger than this, it will be truncated automatically\&.
This is useful with the \fBAUTO_PUSHD\fP option\&.
.TP
\fBENV\fP
If the \fBENV\fP environment variable is set when zsh is invoked as \fBsh\fP
or \fBksh\fP, \fB$ENV\fP is sourced after the profile scripts\&. The value of
\fBENV\fP is subjected to parameter expansion, command substitution, and
arithmetic expansion before being interpreted as a pathname\&. Note that
\fBENV\fP is \fInot\fP used unless zsh is emulating \fBsh\fP or \fBksh\fP\&.
.TP
\fBFCEDIT\fP
The default editor for the \fBfc\fP builtin\&. If \fBFCEDIT\fP is not set,
the parameter \fBEDITOR\fP is used; if that is not set either, a builtin
default, usually \fBvi\fP, is used\&.
.TP
\fBfignore\fP <S> <Z> (\fBFIGNORE\fP <S>)
An array (colon separated list)
containing the suffixes of files to be ignored
during filename completion\&. However, if completion only generates files
with suffixes in this list, then these files are completed anyway\&.
.TP
\fBfpath\fP <S> <Z> (\fBFPATH\fP <S>)
An array (colon separated list)
of directories specifying the search path for
function definitions\&. This path is searched when a function
with the \fB\-u\fP attribute is referenced\&. If an executable
file is found, then it is read and executed in the current environment\&.
.TP
\fBhistchars\fP <S>
Three characters used by the shell\&'s history and lexical analysis
mechanism\&. The first character signals the start of a history
expansion (default `\fB!\fP\&')\&. The second character signals the
start of a quick history substitution (default `\fB^\fP\&')\&. The third
character is the comment character (default `\fB#\fP\&')\&.
.RS
.PP
The characters must be in the ASCII character set; any attempt to set
\fBhistchars\fP to characters with a locale\-dependent meaning will be
rejected with an error message\&.
.RE
.TP
\fBHISTCHARS\fP <S> <Z>
Same as \fBhistchars\fP\&. (Deprecated\&.)
.TP
\fBHISTFILE\fP
The file to save the history in when an interactive shell exits\&.
If unset, the history is not saved\&.
.TP
\fBHISTSIZE\fP <S>
The maximum number of events stored in the internal history list\&.
If you use the \fBHIST_EXPIRE_DUPS_FIRST\fP option, setting this value
larger than the \fBSAVEHIST\fP size will give you the difference as a
cushion for saving duplicated history events\&.
.TP
\fBHOME\fP <S>
The default argument for the \fBcd\fP command\&. This is not set automatically
by the shell in \fBsh\fP, \fBksh\fP or \fBcsh\fP emulation, but it is typically
present in the environment anyway, and if it becomes set it has its usual
special behaviour\&.
.TP
\fBIFS\fP <S>
Internal field separators (by default space, tab, newline and NUL), that
are used to separate words which result from
command or parameter expansion and words read by
the \fBread\fP builtin\&. Any characters from the set space, tab and
newline that appear in the IFS are called \fIIFS white space\fP\&.
One or more IFS white space characters or one non\-IFS white space
character together with any adjacent IFS white space character delimit
a field\&. If an IFS white space character appears twice consecutively
in the IFS, this character is treated as if it were not an IFS white
space character\&.
.TP
\fBKEYTIMEOUT\fP
The time the shell waits, in hundredths of seconds, for another key to
be pressed when reading bound multi\-character sequences\&.
.TP
\fBLANG\fP <S>
This variable determines the locale category for any category not
specifically selected via a variable starting with `\fBLC_\fP\&'\&.
.TP
\fBLC_ALL\fP <S>
This variable overrides the value of the `\fBLANG\fP\&' variable and the value
of any of the other variables starting with `\fBLC_\fP\&'\&.
.TP
\fBLC_COLLATE\fP <S>
This variable determines the locale category for character collation
information within ranges in glob brackets and for sorting\&.
.TP
\fBLC_CTYPE\fP <S>
This variable determines the locale category for character handling
functions\&.
.TP
\fBLC_MESSAGES\fP <S>
This variable determines the language in which messages should be
written\&. Note that zsh does not use message catalogs\&.
.TP
\fBLC_NUMERIC\fP <S>
This variable affects the decimal point character and thousands
separator character for the formatted input/output functions
and string conversion functions\&. Note that zsh ignores this
setting when parsing floating point mathematical expressions\&.
.TP
\fBLC_TIME\fP <S>
This variable determines the locale category for date and time
formatting in prompt escape sequences\&.
.TP
\fBLINES\fP <S>
The number of lines for this terminal session\&.
Used for printing select lists and for the line editor\&.
.TP
\fBLISTMAX\fP
In the line editor, the number of matches to list without asking
first\&. If the value is negative, the list will be shown if it spans at
most as many lines as given by the absolute value\&.
If set to zero, the shell asks only if the top of the listing would scroll
off the screen\&.
.TP
\fBLOGCHECK\fP
The interval in seconds between checks for login/logout activity
using the \fBwatch\fP parameter\&.
.TP
\fBMAIL\fP
If this parameter is set and \fBmailpath\fP is not set,
the shell looks for mail in the specified file\&.
.TP
\fBMAILCHECK\fP
The interval in seconds between checks for new mail\&.
.TP
\fBmailpath\fP <S> <Z> (\fBMAILPATH\fP <S>)
An array (colon\-separated list) of filenames to check for
new mail\&. Each filename can be followed by a `\fB?\fP\&' and a
message that will be printed\&. The message will undergo
parameter expansion, command substitution and arithmetic
expansion with the variable \fB$_\fP defined as the name
of the file that has changed\&. The default message is
`\fBYou have new mail\fP\&'\&. If an element is a directory
instead of a file the shell will recursively check every
file in every subdirectory of the element\&.
.TP
\fBmanpath\fP <S> <Z> (\fBMANPATH\fP <S> <Z>)
An array (colon\-separated list)
whose value is not used by the shell\&. The \fBmanpath\fP
array can be useful, however, since setting it also sets
\fBMANPATH\fP, and vice versa\&.
.TP
\fBmodule_path\fP <S> <Z> (\fBMODULE_PATH\fP <S>)
An array (colon\-separated list)
of directories that \fBzmodload\fP
searches for dynamically loadable modules\&.
This is initialized to a standard pathname,
usually `\fB/usr/local/lib/zsh/$ZSH_VERSION\fP\&'\&.
(The `\fB/usr/local/lib\fP\&' part varies from installation to installation\&.)
For security reasons, any value set in the environment when the shell
is started will be ignored\&.
.RS
.PP
These parameters only exist if the installation supports dynamic
module loading\&.
.RE
.TP
\fBNULLCMD\fP <S>
The command name to assume if a redirection is specified
with no command\&. Defaults to \fBcat\fP\&. For \fBsh\fP/\fBksh\fP
behavior, change this to \fB:\fP\&. For \fBcsh\fP\-like
behavior, unset this parameter; the shell will print an
error message if null commands are entered\&.
.TP
\fBpath\fP <S> <Z> (\fBPATH\fP <S>)
An array (colon\-separated list)
of directories to search for commands\&.
When this parameter is set, each directory is scanned
and all files found are put in a hash table\&.
.TP
\fBPOSTEDIT\fP <S>
This string is output whenever the line editor exits\&.
It usually contains termcap strings to reset the terminal\&.
.TP
.PD 0
\fBPROMPT\fP <S> <Z>
.TP
.PD 0
\fBPROMPT2\fP <S> <Z>
.TP
.PD 0
\fBPROMPT3\fP <S> <Z>
.TP
.PD
\fBPROMPT4\fP <S> <Z>
Same as \fBPS1\fP, \fBPS2\fP, \fBPS3\fP and \fBPS4\fP,
respectively\&.
.TP
\fBprompt\fP <S> <Z>
Same as \fBPS1\fP\&.
.TP
\fBPS1\fP <S>
The primary prompt string, printed before a command is read\&.
the default is `\fB%m%# \fP\&'\&. It undergoes a special form of expansion
before being displayed; see the section `Prompt Expansion\&'\&.
.TP
\fBPS2\fP <S>
The secondary prompt, printed when the shell needs more information
to complete a command\&.
It is expanded in the same way as \fBPS1\fP\&.
The default is `\fB%_> \fP\&', which displays any shell constructs or quotation
marks which are currently being processed\&.
.TP
\fBPS3\fP <S>
Selection prompt used within a \fBselect\fP loop\&.
It is expanded in the same way as \fBPS1\fP\&.
The default is `\fB?# \fP\&'\&.
.TP
\fBPS4\fP <S>
The execution trace prompt\&. Default is `\fB+%N:%i> \fP\&', which displays
the name of the current shell structure and the line number within it\&.
In sh or ksh emulation, the default is `\fB+ \fP\&'\&.
.TP
\fBpsvar\fP <S> <Z> (\fBPSVAR\fP <S>)
An array (colon\-separated list) whose first nine values can be used in
\fBPROMPT\fP strings\&. Setting \fBpsvar\fP also sets \fBPSVAR\fP, and
vice versa\&.
.TP
\fBREADNULLCMD\fP <S>
The command name to assume if a single input redirection
is specified with no command\&. Defaults to \fBmore\fP\&.
.TP
\fBREPORTTIME\fP
If nonnegative, commands whose combined user and system execution times
(measured in seconds) are greater than this value have timing
statistics printed for them\&.
.TP
\fBREPLY\fP
This parameter is reserved by convention to pass string values between
shell scripts and shell builtins in situations where a function call or
redirection are impossible or undesirable\&. The \fBread\fP builtin and the
\fBselect\fP complex command may set \fBREPLY\fP, and filename generation both
sets and examines its value when evaluating certain expressions\&. Some
modules also employ \fBREPLY\fP for similar purposes\&.
.TP
\fBreply\fP
As \fBREPLY\fP, but for array values rather than strings\&.
.TP
.PD 0
\fBRPROMPT\fP <S>
.TP
.PD
\fBRPS1\fP <S>
This prompt is displayed on the right\-hand side of the screen
when the primary prompt is being displayed on the left\&.
This does not work if the \fBSINGLELINEZLE\fP option is set\&.
It is expanded in the same way as \fBPS1\fP\&.
.TP
.PD 0
\fBRPROMPT2\fP <S>
.TP
.PD
\fBRPS2\fP <S>
This prompt is displayed on the right\-hand side of the screen
when the secondary prompt is being displayed on the left\&.
This does not work if the \fBSINGLELINEZLE\fP option is set\&.
It is expanded in the same way as \fBPS2\fP\&.
.TP
\fBSAVEHIST\fP
The maximum number of history events to save in the history file\&.
.TP
\fBSPROMPT\fP <S>
The prompt used for spelling correction\&. The sequence
`\fB%R\fP\&' expands to the string which presumably needs spelling
correction, and `\fB%r\fP\&' expands to the proposed correction\&.
All other prompt escapes are also allowed\&.
.TP
\fBSTTY\fP
If this parameter is set in a command\&'s environment, the shell runs the
\fBstty\fP command with the value of this parameter as arguments in order to
set up the terminal before executing the command\&. The modes apply only to the
command, and are reset when it finishes or is suspended\&. If the command is
suspended and continued later with the \fBfg\fP or \fBwait\fP builtins it will
see the modes specified by \fBSTTY\fP, as if it were not suspended\&. This
(intentionally) does not apply if the command is continued via `\fBkill
\-CONT\fP\&'\&. \fBSTTY\fP is ignored if the command is run in the background, or
if it is in the environment of the shell but not explicitly assigned to in
the input line\&. This avoids running stty at every external command by
accidentally exporting it\&. Also note that \fBSTTY\fP should not be used for
window size specifications; these will not be local to the command\&.
.TP
\fBTERM\fP <S>
The type of terminal in use\&. This is used when looking up termcap
sequences\&. An assignment to \fBTERM\fP causes zsh to re\-initialize the
terminal, even if the value does not change (e\&.g\&., `\fBTERM=$TERM\fP\&')\&. It
is necessary to make such an assignment upon any change to the terminal
definition database or terminal type in order for the new settings to
take effect\&.
.TP
\fBTIMEFMT\fP
The format of process time reports with the \fBtime\fP keyword\&.
The default is `\fB%E real %U user %S system %P %J\fP\&'\&.
Recognizes the following escape sequences, although not all
may be available on all systems, and some that are available
may not be useful:
.RS
.PP
.PD 0
.TP
\fB%%\fP
A `\fB%\fP\&'\&.
.TP
\fB%U\fP
CPU seconds spent in user mode\&.
.TP
\fB%S\fP
CPU seconds spent in kernel mode\&.
.TP
\fB%E\fP
Elapsed time in seconds\&.
.TP
\fB%P\fP
The CPU percentage, computed as
(100*\fB%U\fP+\fB%S\fP)/\fB%E\fP\&.
.TP
\fB%W\fP
Number of times the process was swapped\&.
.TP
\fB%X\fP
The average amount in (shared) text space used in Kbytes\&.
.TP
\fB%D\fP
The average amount in (unshared) data/stack space used in
Kbytes\&.
.TP
\fB%K\fP
The total space used (%X+%D) in Kbytes\&.
.TP
\fB%M\fP
The maximum memory the process had in use at any time in
Kbytes\&.
.TP
\fB%F\fP
The number of major page faults (page needed to be brought
from disk)\&.
.TP
\fB%R\fP
The number of minor page faults\&.
.TP
\fB%I\fP
The number of input operations\&.
.TP
\fB%O\fP
The number of output operations\&.
.TP
\fB%r\fP
The number of socket messages received\&.
.TP
\fB%s\fP
The number of socket messages sent\&.
.TP
\fB%k\fP
The number of signals received\&.
.TP
\fB%w\fP
Number of voluntary context switches (waits)\&.
.TP
\fB%c\fP
Number of involuntary context switches\&.
.TP
\fB%J\fP
The name of this job\&.
.PD
.PP
A star may be inserted between the percent sign and flags printing time\&.
This cause the time to be printed in
`\fIhh\fP\fB:\fP\fImm\fP\fB:\fP\fIss\fP\fB\&.\fP\fIttt\fP\&'
format (hours and minutes are only printed if they are not zero)\&.
.RE
.TP
\fBTMOUT\fP
If this parameter is nonzero, the shell will receive an \fBALRM\fP
signal if a command is not entered within the specified number of
seconds after issuing a prompt\&. If there is a trap on \fBSIGALRM\fP, it
will be executed and a new alarm is scheduled using the value of the
\fBTMOUT\fP parameter after executing the trap\&. If no trap is set, and
the idle time of the terminal is not less than the value of the
\fBTMOUT\fP parameter, zsh terminates\&. Otherwise a new alarm is
scheduled to \fBTMOUT\fP seconds after the last keypress\&.
.TP
\fBTMPPREFIX\fP
A pathname prefix which the shell will use for all temporary files\&.
Note that this should include an initial part for the file name as
well as any directory names\&. The default is `\fB/tmp/zsh\fP\&'\&.
.TP
\fBwatch\fP <S> <Z> (\fBWATCH\fP <S>)
An array (colon\-separated list) of login/logout events to report\&.
If it contains the single word `\fBall\fP\&', then all login/logout events
are reported\&. If it contains the single word `\fBnotme\fP\&', then all
events are reported as with `\fBall\fP\&' except \fB$USERNAME\fP\&.
An entry in this list may consist of a username,
an `\fB@\fP\&' followed by a remote hostname,
and a `\fB%\fP\&' followed by a line (tty)\&.
Any or all of these components may be present in an entry;
if a login/logout event matches all of them,
it is reported\&.
.TP
\fBWATCHFMT\fP
The format of login/logout reports if the \fBwatch\fP parameter is set\&.
Default is `\fB%n has %a %l from %m\fP\&'\&.
Recognizes the following escape sequences:
.RS
.PP
.PD 0
.TP
.PD
\fB%n\fP
The name of the user that logged in/out\&.
.TP
\fB%a\fP
The observed action, i\&.e\&. "logged on" or "logged off"\&.
.TP
\fB%l\fP
The line (tty) the user is logged in on\&.
.TP
\fB%M\fP
The full hostname of the remote host\&.
.TP
\fB%m\fP
The hostname up to the first `\fB\&.\fP\&'\&. If only the
IP address is available or the utmp field contains
the name of an X\-windows display, the whole name is printed\&.
.RS
.PP
\fINOTE:\fP
The `\fB%m\fP\&' and `\fB%M\fP' escapes will work only if there is a host name
field in the utmp on your machine\&. Otherwise they are
treated as ordinary strings\&.
.RE
.TP
\fB%S\fP (\fB%s\fP)
Start (stop) standout mode\&.
.TP
\fB%U\fP (\fB%u\fP)
Start (stop) underline mode\&.
.TP
\fB%B\fP (\fB%b\fP)
Start (stop) boldface mode\&.
.TP
.PD 0
\fB%t\fP
.TP
.PD
\fB%@\fP
The time, in 12\-hour, am/pm format\&.
.TP
\fB%T\fP
The time, in 24\-hour format\&.
.TP
\fB%w\fP
The date in `\fIday\fP\fB\-\fP\fIdd\fP\&' format\&.
.TP
\fB%W\fP
The date in `\fImm\fP\fB/\fP\fIdd\fP\fB/\fP\fIyy\fP\&' format\&.
.TP
\fB%D\fP
The date in `\fIyy\fP\fB\-\fP\fImm\fP\fB\-\fP\fIdd\fP\&' format\&.
.TP
\fB%(\fP\fIx\fP\fB:\fP\fItrue\-text\fP\fB:\fP\fIfalse\-text\fP\fB)\fP
Specifies a ternary expression\&.
The character following the \fIx\fP is
arbitrary; the same character is used to separate the text
for the "true" result from that for the "false" result\&.
Both the separator and the right parenthesis may be escaped
with a backslash\&.
Ternary expressions may be nested\&.
.RS
.PP
The test character \fIx\fP may be any one of `\fBl\fP\&', `\fBn\fP', `\fBm\fP'
or `\fBM\fP\&', which indicate a `true' result if the corresponding
escape sequence would return a non\-empty value; or it may be `\fBa\fP\&',
which indicates a `true\&' result if the watched user has logged in,
or `false\&' if he has logged out\&.
Other characters evaluate to neither true nor false; the entire
expression is omitted in this case\&.
.PP
If the result is `true\&', then the \fItrue\-text\fP
is formatted according to the rules above and printed,
and the \fIfalse\-text\fP is skipped\&.
If `false\&', the \fItrue\-text\fP is skipped and the \fIfalse\-text\fP
is formatted and printed\&.
Either or both of the branches may be empty, but
both separators must be present in any case\&.
.RE
.RE
.RE
.TP
\fBWORDCHARS\fP <S>
A list of non\-alphanumeric characters considered part of a word
by the line editor\&.
.TP
\fBZBEEP\fP
If set, this gives a string of characters, which can use all the same codes
as the \fBbindkey\fP command as described in
the zsh/zle module entry in \fIzshmodules\fP(1), that will be output to the terminal
instead of beeping\&. This may have a visible instead of an audible effect;
for example, the string `\fB\ee[?5h\ee[?5l\fP\&' on a vt100 or xterm will have
the effect of flashing reverse video on and off (if you usually use reverse
video, you should use the string `\fB\ee[?5l\ee[?5h\fP\&' instead)\&. This takes
precedence over the \fBNOBEEP\fP option\&.
.TP
\fBZDOTDIR\fP
The directory to search for shell startup files (\&.zshrc, etc),
if not \fB$HOME\fP\&.
|