File: zh_TW.gmo

package info (click to toggle)
bash 5.3-2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 44,432 kB
  • sloc: ansic: 134,747; sh: 8,866; yacc: 5,966; makefile: 4,697; perl: 4,105; asm: 48; awk: 23; sed: 16
file content (1880 lines) | stat: -rw-r--r-- 118,863 bytes parent folder | download | duplicates (2)
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
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
|!,*,,<,$4-
Y-d-s-z----	---.%.D.[.n.. ...(.//;F/$/:///(0'50"]0000301&1&=1/d1/11.1+	252/G2w222"2223-$3R3h3333333)4=4\4w44444 4!5.5D5,^55 55
505.60D6u66666667(7A7
\7j77&777/838I8)_8883889$999&E9l9p99
999#99:%:1:H>`ApAAFABBBB	C	CC
3CMmMfOvO]QRTVY+7]c_
`?cQfVf_fofdgQmzz{|g}uVv.|*
ɉ?73 No|		΋؋Nߋ.J,=(ff͕Dܕ!Pxw)ԫ1޴FtFLO>1psUZD$iy	]go*
	"5;OqBBEG
};XO*


Q`J
 +<N%m$'%3.M|!'50]9$"G[
lz&'39@6R6.T3	!
3
>=]'&*
*5)`)%% #!1E&w&&5."Q`!}!: 081i#A(e$$#'	1S9.)
HVt,,.!?P+#@
`n-,').D,s&*06#PZ( )0"J?mT
)87Vp&'4Kk(	"B5OO		5"Xx

+9;$8]d{$$0<U sH.KX"k+4
'D2?w,2!B"d"0	f1y/)-33g&25,
>
I1TI4.>4)sN	 "#F`m&z='<S,p$6
A]Q{*%,.R-7621Q*,,;#Dhp#67*F"q6	--##Q'u'$@"(K`sy
#+Oh$ &)92c%? %1 W x8(1%Z..+)I,[!"$&8_"t	",	O	i					 		
*
?
Z
w
 


'
'
+%Ql.K]u#/
+
@
 `

4



7;K]1x#	80#B*m	
~	a qh !!#r%Wu(**.014	7
7-7C78
-=J^K^LNMC1NuP\\QRoV	X"XXYZ#Z3ZNZiZ@{ZZ[[[[[\
\
\	(\2\?\L\S\h`\J\_b+ds>ee>emnYnn	s,s8wOz{}tj߃քHaNYS	(26N	bO ӓ	”ɔܔ

,ELd~KlENBBח+8eE[/8hz8yş?O%/Uh
~%Ԧ(%#I4f"#ا40)e
ը8+9Jʩ	16K1<66>u. 2O	!)ج0@24s8/$$6![!})(ɮ1.D*s"*3- N[t"5"0.=_%N*t"Ȳ'	1T83()'QWm,)ݴ*<D,
ŵԵ!SZl>.ڶ:	D0[-*+45F4| (Ҹ,(8!QBs]':*IQt&ƺ!4Ddz-Ի3#W<dv.F
LZ6mĽ
̽׽-99L&dǾ!,N
k
y(&׿!!1cA
)!$?dqD?</P1/	-)1W	s280k-.71,J2w71	
4)I^<.>&SLz	""!DQ'^=/#6Ro&>!3!URw* 5/>e=880T0',,88*q!#*1'#Y}9$!.	H-R-#'(#B{r7Z!C^+p\B0"i,j:=PIfq `8w_iT:ja
fzh;75k/~bH2u)3%{>pm%Ld*F#
'|	C2#o^L@SH99-4Qey-adAs]E4t 8PG$<w><?g1"\B6
DJM&?
6xI31h
;A.)|TVoX,uRekJF`(WGg=vlclb+RKz	U0&q[_QMN[/Y	*(Onv}Kc}x~ZNWXO'@V.$YUym5EtD]
S!rnstimed out waiting for input: auto-logout
	-%s or -o option
	-ilrsD or -c command or -O shopt_option		(invocation only)

malloc: %s:%d: assertion botched
  (wd: %s) (core dumped) line $%s: cannot assign in this way%c%c: invalid option%s can be invoked via %s has null exportstr%s is %s
%s is a function
%s is a shell builtin
%s is a shell keyword
%s is a special shell builtin
%s is aliased to `%s'
%s is hashed (%s)
%s is not bound to any keys.
%s out of range%s%s%s: %s (error token is "%s")%s: %s out of range%s: %s: cannot open as FILE%s: %s: compatibility value out of range%s: %s: invalid value for trace file descriptor%s: %s: must use subscript when assigning associative array%s: %s:%d: cannot allocate %lu bytes%s: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)%s: Is a directory%s: ambiguous job spec%s: arguments must be process or job IDs%s: assigning integer to name reference%s: bad network path specification%s: bad substitution%s: binary operator expected%s: cannot allocate %lu bytes%s: cannot allocate %lu bytes (%lu bytes allocated)%s: cannot assign%s: cannot assign list to array member%s: cannot assign to non-numeric index%s: cannot convert associative to indexed array%s: cannot convert indexed to associative array%s: cannot delete: %s%s: cannot destroy array variables in this way%s: cannot execute: required file not found%s: cannot export%s: cannot inherit value from incompatible type%s: cannot unset%s: cannot unset: readonly %s%s: circular name reference%s: dynamic builtin already loaded%s: expression error
%s: file is too large%s: file not found%s: first non-whitespace character is not `"'%s: hash table empty
%s: history expansion failed%s: host unknown%s: illegal option -- %c
%s: invalid action name%s: invalid argument%s: invalid array origin%s: invalid callback quantum%s: invalid file descriptor specification%s: invalid indirect expansion%s: invalid limit argument%s: invalid line count%s: invalid option%s: invalid option name%s: invalid service%s: invalid shell option name%s: invalid signal specification%s: invalid timeout specification%s: invalid timestamp%s: invalid variable name%s: invalid variable name for name reference%s: is a directory%s: job %d already in background%s: job has terminated%s: line %d: %s: maximum function nesting level exceeded (%d)%s: maximum source nesting level exceeded (%d)%s: nameref variable self references not allowed%s: no completion specification%s: no current jobs%s: no job control%s: no such job%s: not a function%s: not a regular file%s: not a shell builtin%s: not an array variable%s: not an indexed array%s: not dynamically loaded%s: not found%s: numeric argument required%s: option requires an argument%s: option requires an argument -- %c
%s: parameter not set%s: parameter null or not set%s: quoted compound array assignment deprecated%s: readonly function%s: readonly variable%s: reference variable cannot be an array%s: removing nameref attribute%s: restricted%s: restricted: cannot specify `/' in command names%s: substring expression < 0%s: unary operator expected%s: unbound variable%s: usage: %s: variable may not be assigned value'

(( expression ))(core dumped) (wd now: %s)
/dev/(tcp|udp)/host/port not supported without networking/tmp must be a valid directory name<no current directory>ABORT instructionAborting...Add directories to stack.
    
    Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    		directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    		from the left of the list shown by `dirs', starting with
    		zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    		from the right of the list shown by `dirs', starting with
    		zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    		new current working directory.
    
    The `dirs' builtin displays the directory stack.
    
    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    	directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    	from the left of the list shown by `dirs', starting with
    	zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    	from the right of the list shown by `dirs', starting with
    	zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    	new current working directory.
    
    The `dirs' builtin displays the directory stack.Alarm (profile)Alarm (virtual)Alarm clockArithmetic for loop.
    
    Equivalent to
    	(( EXP1 ))
    	while (( EXP2 )); do
    		COMMANDS
    		(( EXP3 ))
    	done
    EXP1, EXP2, and EXP3 are arithmetic expressions.  If any expression is
    omitted, it behaves as if it evaluates to 1.
    
    Exit Status:
    Returns the status of the last command executed.BPT trace/trapBad system callBogus signalBroken pipeBus errorCPU limitChild death or stopCommon shell variable names and usage.
    
    BASH_VERSION	Version information for this Bash.
    CDPATH	A colon-separated list of directories to search
    		for directories given as arguments to `cd'.
    GLOBIGNORE	A colon-separated list of patterns describing filenames to
    		be ignored by pathname expansion.
    HISTFILE	The name of the file where your command history is stored.
    HISTFILESIZE	The maximum number of lines this file can contain.
    HISTSIZE	The maximum number of history lines that a running
    		shell can access.
    HOME	The complete pathname to your login directory.
    HOSTNAME	The name of the current host.
    HOSTTYPE	The type of CPU this version of Bash is running under.
    IGNOREEOF	Controls the action of the shell on receipt of an EOF
    		character as the sole input.  If set, then the value
    		of it is the number of EOF characters that can be seen
    		in a row on an empty line before the shell will exit
    		(default 10).  When unset, EOF signifies the end of input.
    MACHTYPE	A string describing the current system Bash is running on.
    MAILCHECK	How often, in seconds, Bash checks for new mail.
    MAILPATH	A colon-separated list of filenames which Bash checks
    		for new mail.
    OSTYPE	The version of Unix this version of Bash is running on.
    PATH	A colon-separated list of directories to search when
    		looking for commands.
    PROMPT_COMMAND	A command to be executed before the printing of each
    		primary prompt.
    PS1		The primary prompt string.
    PS2		The secondary prompt string.
    PWD		The full pathname of the current directory.
    SHELLOPTS	A colon-separated list of enabled shell options.
    TERM	The name of the current terminal type.
    TIMEFORMAT	The output format for timing statistics displayed by the
    		`time' reserved word.
    auto_resume	Non-null means a command word appearing on a line by
    		itself is first looked for in the list of currently
    		stopped jobs.  If found there, that job is foregrounded.
    		A value of `exact' means that the command word must
    		exactly match a command in the list of stopped jobs.  A
    		value of `substring' means that the command word must
    		match a substring of the job.  Any other value means that
    		the command must be a prefix of a stopped job.
    histchars	Characters controlling history expansion and quick
    		substitution.  The first character is the history
    		substitution character, usually `!'.  The second is
    		the `quick substitution' character, usually `^'.  The
    		third is the `history comment' character, usually `#'.
    HISTIGNORE	A colon-separated list of patterns used to decide which
    		commands should be saved on the history list.
ContinueCreate a coprocess named NAME.
    
    Execute COMMAND asynchronously, with the standard output and standard
    input of the command connected via a pipe to file descriptors assigned
    to indices 0 and 1 of an array variable NAME in the executing shell.
    The default NAME is "COPROC".
    
    Exit Status:
    The coproc command returns an exit status of 0.DEBUG warning: Define or display aliases.
    
    Without arguments, `alias' prints the list of aliases in the reusable
    form `alias NAME=VALUE' on standard output.
    
    Otherwise, an alias is defined for each NAME whose VALUE is given.
    A trailing space in VALUE causes the next word to be checked for
    alias substitution when the alias is expanded.
    
    Options:
      -p	print all defined aliases in a reusable format
    
    Exit Status:
    alias returns true unless a NAME is supplied for which no alias has been
    defined.Define shell function.
    
    Create a shell function named NAME.  When invoked as a simple command,
    NAME runs COMMANDs in the calling shell's context.  When NAME is invoked,
    the arguments are passed to the function as $1...$n, and the function's
    name is in $FUNCNAME.
    
    Exit Status:
    Returns success unless NAME is readonly.Display directory stack.
    
    Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    		to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    		with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list
    		shown by dirs when invoked without options, starting with
    		zero.
    
      -N	Displays the Nth entry counting from the right of the list
    		shown by dirs when invoked without options, starting with
    		zero.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Display information about builtin commands.
    
    Displays brief summaries of builtin commands.  If PATTERN is
    specified, gives detailed help on all commands matching PATTERN,
    otherwise the list of help topics is printed.
    
    Options:
      -d	output short description for each topic
      -m	display usage in pseudo-manpage format
      -s	output only a short usage synopsis for each topic matching
    		PATTERN
    
    Arguments:
      PATTERN	Pattern specifying a help topic
    
    Exit Status:
    Returns success unless PATTERN is not found or an invalid option is given.Display information about command type.
    
    For each NAME, indicate how it would be interpreted if used as a
    command name.
    
    Options:
      -a	display all locations containing an executable named NAME;
    		includes aliases, builtins, and functions, if and only if
    		the `-p' option is not also used
      -f	suppress shell function lookup
      -P	force a PATH search for each NAME, even if it is an alias,
    		builtin, or function, and returns the name of the disk file
    		that would be executed
      -p	returns either the name of the disk file that would be executed,
    		or nothing if `type -t NAME' would not return `file'
      -t	output a single word which is one of `alias', `keyword',
    		`function', `builtin', `file' or `', if NAME is an alias,
    		shell reserved word, shell function, shell builtin, disk file,
    		or not found, respectively
    
    Arguments:
      NAME	Command name to be interpreted.
    
    Exit Status:
    Returns success if all of the NAMEs are found; fails if any are not found.Display or set file mode mask.
    
    Sets the user file-creation mask to MODE.  If MODE is omitted, prints
    the current value of the mask.
    
    If MODE begins with a digit, it is interpreted as an octal number;
    otherwise it is a symbolic mode string like that accepted by chmod(1).
    
    Options:
      -p	if MODE is omitted, output in a form that may be reused as input
      -S	makes the output symbolic; otherwise an octal number is output
    
    Exit Status:
    Returns success unless MODE is invalid or an invalid option is given.Display process times.
    
    Prints the accumulated user and system times for the shell and all of its
    child processes.
    
    Exit Status:
    Always succeeds.Display status of jobs.
    
    Lists the active jobs.  JOBSPEC restricts output to that job.
    Without options, the status of all active jobs is displayed.
    
    Options:
      -l	lists process IDs in addition to the normal information
      -n	lists only processes that have changed status since the last
    		notification
      -p	lists process IDs only
      -r	restrict output to running jobs
      -s	restrict output to stopped jobs
    
    If -x is supplied, COMMAND is run after all job specifications that
    appear in ARGS have been replaced with the process ID of that job's
    process group leader.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.
    If -x is used, returns the exit status of COMMAND.Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    	to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    	with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list shown by
    	dirs when invoked without options, starting with zero.
    
      -N	Displays the Nth entry counting from the right of the list shown by
	dirs when invoked without options, starting with zero.DoneDone(%d)EMT instructionEvaluate arithmetic expression.
    
    The EXPRESSION is evaluated according to the rules for arithmetic
    evaluation.  Equivalent to `let "EXPRESSION"'.
    
    Exit Status:
    Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise.Evaluate arithmetic expressions.
    
    Evaluate each ARG as an arithmetic expression.  Evaluation is done in
    fixed-width integers with no check for overflow, though division by 0
    is trapped and flagged as an error.  The following list of operators is
    grouped into levels of equal-precedence operators.  The levels are listed
    in order of decreasing precedence.
    
    	id++, id--	variable post-increment, post-decrement
    	++id, --id	variable pre-increment, pre-decrement
    	-, +		unary minus, plus
    	!, ~		logical and bitwise negation
    	**		exponentiation
    	*, /, %		multiplication, division, remainder
    	+, -		addition, subtraction
    	<<, >>		left and right bitwise shifts
    	<=, >=, <, >	comparison
    	==, !=		equality, inequality
    	&		bitwise AND
    	^		bitwise XOR
    	|		bitwise OR
    	&&		logical AND
    	||		logical OR
    	expr ? expr : expr
    			conditional operator
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	assignment
    
    Shell variables are allowed as operands.  The name of the variable
    is replaced by its value (coerced to a fixed-width integer) within
    an expression.  The variable need not have its integer attribute
    turned on to be used in an expression.
    
    Operators are evaluated in order of precedence.  Sub-expressions in
    parentheses are evaluated first and may override the precedence
    rules above.
    
    Exit Status:
    If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.Evaluate conditional expression.
    
    Exits with a status of 0 (true) or 1 (false) depending on
    the evaluation of EXPR.  Expressions may be unary or binary.  Unary
    expressions are often used to examine the status of a file.  There
    are string operators and numeric comparison operators as well.
    
    The behavior of test depends on the number of arguments.  Read the
    bash manual page for the complete specification.
    
    File operators:
    
      -a FILE        True if file exists.
      -b FILE        True if file is block special.
      -c FILE        True if file is character special.
      -d FILE        True if file is a directory.
      -e FILE        True if file exists.
      -f FILE        True if file exists and is a regular file.
      -g FILE        True if file is set-group-id.
      -h FILE        True if file is a symbolic link.
      -L FILE        True if file is a symbolic link.
      -k FILE        True if file has its `sticky' bit set.
      -p FILE        True if file is a named pipe.
      -r FILE        True if file is readable by you.
      -s FILE        True if file exists and is not empty.
      -S FILE        True if file is a socket.
      -t FD          True if FD is opened on a terminal.
      -u FILE        True if the file is set-user-id.
      -w FILE        True if the file is writable by you.
      -x FILE        True if the file is executable by you.
      -O FILE        True if the file is effectively owned by you.
      -G FILE        True if the file is effectively owned by your group.
      -N FILE        True if the file has been modified since it was last read.
    
      FILE1 -nt FILE2  True if file1 is newer than file2 (according to
                       modification date).
    
      FILE1 -ot FILE2  True if file1 is older than file2.
    
      FILE1 -ef FILE2  True if file1 is a hard link to file2.
    
    String operators:
    
      -z STRING      True if string is empty.
    
      -n STRING
         STRING      True if string is not empty.
    
      STRING1 = STRING2
                     True if the strings are equal.
      STRING1 != STRING2
                     True if the strings are not equal.
      STRING1 < STRING2
                     True if STRING1 sorts before STRING2 lexicographically.
      STRING1 > STRING2
                     True if STRING1 sorts after STRING2 lexicographically.
    
    Other operators:
    
      -o OPTION      True if the shell option OPTION is enabled.
      -v VAR         True if the shell variable VAR is set.
      -R VAR         True if the shell variable VAR is set and is a name
                     reference.
      ! EXPR         True if expr is false.
      EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.
      EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.
    
      arg1 OP arg2   Arithmetic tests.  OP is one of -eq, -ne,
                     -lt, -le, -gt, or -ge.
    
    Arithmetic binary operators return true if ARG1 is equal, not-equal,
    less-than, less-than-or-equal, greater-than, or greater-than-or-equal
    than ARG2.
    
    Exit Status:
    Returns success if EXPR evaluates to true; fails if EXPR evaluates to
    false or an invalid argument is given.Evaluate conditional expression.
    
    This is a synonym for the "test" builtin, but the last argument must
    be a literal `]', to match the opening `['.Execute arguments as a shell command.
    
    Combine ARGs into a single string, use the result as input to the shell,
    and execute the resulting commands.
    
    Exit Status:
    Returns exit status of command or success if command is null.Execute commands as long as a test does not succeed.
    
    Expand and execute COMMANDS-2 as long as the final command in COMMANDS has
    an exit status which is not zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands as long as a test succeeds.
    
    Expand and execute COMMANDS-2 as long as the final command in COMMANDS has
    an exit status of zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on conditional.
    
    The `if COMMANDS' list is executed.  If its exit status is zero, then the
    `then COMMANDS' list is executed.  Otherwise, each `elif COMMANDS' list is
    executed in turn, and if its exit status is zero, the corresponding
    `then COMMANDS' list is executed and the if command completes.  Otherwise,
    the `else COMMANDS' list is executed, if present.  The exit status of the
    entire construct is the exit status of the last command executed, or zero
    if no condition tested true.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on pattern matching.
    
    Selectively execute COMMANDS based upon WORD matching PATTERN.  The
    `|' is used to separate multiple patterns.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands for each member in a list.
    
    The `for' loop executes a sequence of commands for each member in a
    list of items.  If `in WORDS ...;' is not present, then `in "$@"' is
    assumed.  For each element in WORDS, NAME is set to that element, and
    the COMMANDS are executed.
    
    Exit Status:
    Returns the status of the last command executed.Execute conditional command.
    
    Returns a status of 0 or 1 depending on the evaluation of the conditional
    expression EXPRESSION.  Expressions are composed of the same primaries used
    by the `test' builtin, and may be combined using the following operators:
    
      ( EXPRESSION )	Returns the value of EXPRESSION
      ! EXPRESSION		True if EXPRESSION is false; else false
      EXPR1 && EXPR2	True if both EXPR1 and EXPR2 are true; else false
      EXPR1 || EXPR2	True if either EXPR1 or EXPR2 is true; else false
    
    When the `==' and `!=' operators are used, the string to the right of
    the operator is used as a pattern and pattern matching is performed.
    When the `=~' operator is used, the string to the right of the operator
    is matched as a regular expression.
    
    The && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to
    determine the expression's value.
    
    Exit Status:
    0 or 1 depending on value of EXPRESSION.Execute shell builtins.
    
    Execute SHELL-BUILTIN with arguments ARGs without performing command
    lookup.  This is useful when you wish to reimplement a shell builtin
    as a shell function, but need to execute the builtin within the function.
    
    Exit Status:
    Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is
    not a shell builtin.Exit %dExit a login shell.
    
    Exits a login shell with exit status N.  Returns an error if not executed
    in a login shell.Exit for, while, or until loops.
    
    Exit a FOR, WHILE or UNTIL loop.  If N is specified, break N enclosing
    loops.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Exit the shell.
    
    Exits the shell with a status of N.  If N is omitted, the exit status
    is that of the last command executed.File limitFloating point exceptionGNU bash, version %s (%s)
GNU bash, version %s-(%s)
GNU long options:
General help using GNU software: <http://www.gnu.org/gethelp/>
Group commands as a unit.
    
    Run a set of commands in a group.  This is one way to redirect an
    entire set of commands.
    
    Exit Status:
    Returns the status of the last command executed.HFT input data pendingHFT monitor mode grantedHFT monitor mode retractedHFT sound sequence has completedHOME not setHangupI have no name!I/O readyINFORM: Illegal instructionInformation requestInterruptKilledLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
Mark shell variables as unchangeable.
    
    Mark each NAME as read-only; the values of these NAMEs may not be
    changed by subsequent assignment.  If VALUE is supplied, assign VALUE
    before marking as read-only.
    
    Options:
      -a	refer to indexed array variables
      -A	refer to associative array variables
      -f	refer to shell functions
      -p	display a list of all readonly variables or functions,
    		depending on whether or not the -f option is given
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Modify or display completion options.
    
    Modify the completion options for each NAME, or, if no NAMEs are supplied,
    the completion currently being executed.  If no OPTIONs are given, print
    the completion options for each NAME or the current completion specification.
    
    Options:
    	-o option	Set completion option OPTION for each NAME
    	-D		Change options for the "default" command completion
    	-E		Change options for the "empty" command completion
    	-I		Change options for completion on the initial word
    
    Using `+o' instead of `-o' turns off the specified option.
    
    Arguments:
    
    Each NAME refers to a command for which a completion specification must
    have previously been defined using the `complete' builtin.  If no NAMEs
    are supplied, compopt must be called by a function currently generating
    completions, and the options for that currently-executing completion
    generator are modified.
    
    Exit Status:
    Returns success unless an invalid option is supplied or NAME does not
    have a completion specification defined.Move job to the foreground.
    
    Place the job identified by JOB_SPEC in the foreground, making it the
    current job.  If JOB_SPEC is not present, the shell's notion of the
    current job is used.
    
    Exit Status:
    Status of command placed in foreground, or failure if an error occurs.Move jobs to the background.
    
    Place the jobs identified by each JOB_SPEC in the background, as if they
    had been started with `&'.  If JOB_SPEC is not present, the shell's notion
    of the current job is used.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.Null command.
    
    No effect; the command does nothing.
    
    Exit Status:
    Always succeeds.OLDPWD not setParse option arguments.
    
    Getopts is used by shell procedures to parse positional parameters
    as options.
    
    OPTSTRING contains the option letters to be recognized; if a letter
    is followed by a colon, the option is expected to have an argument,
    which should be separated from it by white space.
    
    Each time it is invoked, getopts will place the next option in the
    shell variable $name, initializing name if it does not exist, and
    the index of the next argument to be processed into the shell
    variable OPTIND.  OPTIND is initialized to 1 each time the shell or
    a shell script is invoked.  When an option requires an argument,
    getopts places that argument into the shell variable OPTARG.
    
    getopts reports errors in one of two ways.  If the first character
    of OPTSTRING is a colon, getopts uses silent error reporting.  In
    this mode, no error messages are printed.  If an invalid option is
    seen, getopts places the option character found into OPTARG.  If a
    required argument is not found, getopts places a ':' into NAME and
    sets OPTARG to the option character found.  If getopts is not in
    silent mode, and an invalid option is seen, getopts places '?' into
    NAME and unsets OPTARG.  If a required argument is not found, a '?'
    is placed in NAME, OPTARG is unset, and a diagnostic message is
    printed.
    
    If the shell variable OPTERR has the value 0, getopts disables the
    printing of error messages, even if the first character of
    OPTSTRING is not a colon.  OPTERR has the value 1 by default.
    
    Getopts normally parses the positional parameters, but if arguments
    are supplied as ARG values, they are parsed instead.
    
    Exit Status:
    Returns success if an option is found; fails if the end of options is
    encountered or an error occurs.Print the name of the current working directory.
    
    Options:
      -L	print the value of $PWD if it names the current working
    		directory
      -P	print the physical directory, without any symbolic links
    
    By default, `pwd' behaves as if `-L' were specified.
    
    Exit Status:
    Returns 0 unless an invalid option is given or the current directory
    cannot be read.QuitRead lines from a file into an array variable.
    
    A synonym for `mapfile'.Read lines from the standard input into an indexed array variable.
    
    Read lines from the standard input into the indexed array variable ARRAY, or
    from file descriptor FD if the -u option is supplied.  The variable MAPFILE
    is the default ARRAY.
    
    Options:
      -d delim	Use DELIM to terminate lines, instead of newline
      -n count	Copy at most COUNT lines.  If COUNT is 0, all lines are copied
      -O origin	Begin assigning to ARRAY at index ORIGIN.  The default index is 0
      -s count	Discard the first COUNT lines read
      -t	Remove a trailing DELIM from each line read (default newline)
      -u fd	Read lines from file descriptor FD instead of the standard input
      -C callback	Evaluate CALLBACK each time QUANTUM lines are read
      -c quantum	Specify the number of lines read between each call to
    			CALLBACK
    
    Arguments:
      ARRAY	Array variable name to use for file data
    
    If -C is supplied without -c, the default quantum is 5000.  When
    CALLBACK is evaluated, it is supplied the index of the next array
    element to be assigned and the line to be assigned to that element
    as additional arguments.
    
    If not supplied with an explicit origin, mapfile will clear ARRAY before
    assigning to it.
    
    Exit Status:
    Returns success unless an invalid option is given or ARRAY is readonly or
    not an indexed array.Record lockRemember or display program locations.
    
    Determine and remember the full pathname of each command NAME.  If
    no arguments are given, information about remembered commands is displayed.
    
    Options:
      -d	forget the remembered location of each NAME
      -l	display in a format that may be reused as input
      -p pathname	use PATHNAME as the full pathname of NAME
      -r	forget all remembered locations
      -t	print the remembered location of each NAME, preceding
    		each location with the corresponding NAME if multiple
    		NAMEs are given
    Arguments:
      NAME	Each NAME is searched for in $PATH and added to the list
    		of remembered commands.
    
    Exit Status:
    Returns success unless NAME is not found or an invalid option is given.Remove directories from stack.
    
    Removes entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    		directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    		shown by `dirs', starting with zero.  For example: `popd +0'
    		removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    		shown by `dirs', starting with zero.  For example: `popd -0'
    		removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.
    
    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.Remove each NAME from the list of defined aliases.
    
    Options:
      -a	remove all alias definitions
    
    Return success unless a NAME is not an existing alias.Remove jobs from current shell.
    
    Removes each JOBSPEC argument from the table of active jobs.  Without
    any JOBSPECs, the shell uses its notion of the current job.
    
    Options:
      -a	remove all jobs if JOBSPEC is not supplied
      -h	mark each JOBSPEC so that SIGHUP is not sent to the job if the
    		shell receives a SIGHUP
      -r	remove only running jobs
    
    Exit Status:
    Returns success unless an invalid option or JOBSPEC is given.Removes entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    	directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    	shown by `dirs', starting with zero.  For example: `popd +0'
    	removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    	shown by `dirs', starting with zero.  For example: `popd -0'
    	removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.Replace the shell with the given command.
    
    Execute COMMAND, replacing this shell with the specified program.
    ARGUMENTS become the arguments to COMMAND.  If COMMAND is not specified,
    any redirections take effect in the current shell.
    
    Options:
      -a name	pass NAME as the zeroth argument to COMMAND
      -c	execute COMMAND with an empty environment
      -l	place a dash in the zeroth argument to COMMAND
    
    If the command cannot be executed, a non-interactive shell exits, unless
    the shell option `execfail' is set.
    
    Exit Status:
    Returns success unless COMMAND is not found or a redirection error occurs.Report time consumed by pipeline's execution.
    
    Execute PIPELINE and print a summary of the real time, user CPU time,
    and system CPU time spent executing PIPELINE when it terminates.
    
    Options:
      -p	print the timing summary in the portable Posix format
    
    The value of the TIMEFORMAT variable is used as the output format.
    
    Exit Status:
    The return status is the return status of PIPELINE.Resume for, while, or until loops.
    
    Resumes the next iteration of the enclosing FOR, WHILE or UNTIL loop.
    If N is specified, resumes the Nth enclosing loop.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Resume job in foreground.
    
    Equivalent to the JOB_SPEC argument to the `fg' command.  Resume a
    stopped or background job.  JOB_SPEC can specify either a job name
    or a job number.  Following JOB_SPEC with a `&' places the job in
    the background, as if the job specification had been supplied as an
    argument to `bg'.
    
    Exit Status:
    Returns the status of the resumed job.Return a successful result.
    
    Exit Status:
    Always succeeds.Return an unsuccessful result.
    
    Exit Status:
    Always fails.Return from a shell function.
    
    Causes a function or sourced script to exit with the return value
    specified by N.  If N is omitted, the return status is that of the
    last command executed within the function or script.
    
    Exit Status:
    Returns N, or failure if the shell is not executing a function or script.Return the context of the current subroutine call.
    
    Without EXPR, returns "$line $filename".  With EXPR, returns
    "$line $subroutine $filename"; this extra information can be used to
    provide a stack trace.
    
    The value of EXPR indicates how many call frames to go back before the
    current one; the top frame is frame 0.
    
    Exit Status:
    Returns 0 unless the shell is not executing a shell function or EXPR
    is invalid.RunningSegmentation faultSelect words from a list and execute commands.
    
    The WORDS are expanded, generating a list of words.  The
    set of expanded words is printed on the standard error, each
    preceded by a number.  If `in WORDS' is not present, `in "$@"'
    is assumed.  The PS3 prompt is then displayed and a line read
    from the standard input.  If the line consists of the number
    corresponding to one of the displayed words, then NAME is set
    to that word.  If the line is empty, WORDS and the prompt are
    redisplayed.  If EOF is read, the command completes.  Any other
    value read causes NAME to be set to null.  The line read is saved
    in the variable REPLY.  COMMANDS are executed after each selection
    until a break command is executed.
    
    Exit Status:
    Returns the status of the last command executed.Send a signal to a job.
    
    Send the processes identified by PID or JOBSPEC the signal named by
    SIGSPEC or SIGNUM.  If neither SIGSPEC nor SIGNUM is present, then
    SIGTERM is assumed.
    
    Options:
      -s sig	SIG is a signal name
      -n sig	SIG is a signal number
      -l	list the signal names; if arguments follow `-l' they are
    		assumed to be signal numbers for which names should be listed
      -L	synonym for -l
    
    Kill is a shell builtin for two reasons: it allows job IDs to be used
    instead of process IDs, and allows processes to be killed if the limit
    on processes that you can create is reached.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.Set and unset shell options.
    
    Change the setting of each shell option OPTNAME.  Without any option
    arguments, list each supplied OPTNAME, or all shell options if no
    OPTNAMEs are given, with an indication of whether or not each is set.
    
    Options:
      -o	restrict OPTNAMEs to those defined for use with `set -o'
      -p	print each shell option with an indication of its status
      -q	suppress output
      -s	enable (set) each OPTNAME
      -u	disable (unset) each OPTNAME
    
    Exit Status:
    Returns success if OPTNAME is enabled; fails if an invalid option is
    given or OPTNAME is disabled.Set variable values and attributes.
    
    A synonym for `declare'.  See `help declare'.Shell commands matching keyword `Shell commands matching keywords `Shell options:
Shift positional parameters.
    
    Rename the positional parameters $N+1,$N+2 ... to $1,$2 ...  If N is
    not given, it is assumed to be 1.
    
    Exit Status:
    Returns success unless N is negative or greater than $#.Signal %dStoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stopped(%s)TIMEFORMAT: `%c': invalid format characterTerminatedThe mail in %s has been read
There are running jobs.
There are stopped jobs.
There is NO WARRANTY, to the extent permitted by law.These shell commands are defined internally.  Type `help' to see this list.
Type `help name' to find out more about the function `name'.
Use `info bash' to find out more about the shell in general.
Use `man -k' or `info' to find out more about commands not in this list.

A star (*) next to a name means that the command is disabled.

This is free software; you are free to change and redistribute it.Type `%s -c "help set"' for more information about shell options.
Type `%s -c help' for more information about shell builtin commands.
Unknown Signal #%dUnknown errorUnknown statusUnset values and attributes of shell variables and functions.
    
    For each NAME, remove the corresponding variable or function.
    
    Options:
      -f	treat each NAME as a shell function
      -v	treat each NAME as a shell variable
      -n	treat each NAME as a name reference and unset the variable itself
    		rather than the variable it references
    
    Without options, unset first tries to unset a variable, and if that fails,
    tries to unset a function.
    
    Some variables cannot be unset; also see `readonly'.
    
    Exit Status:
    Returns success unless an invalid option is given or a NAME is read-only.Urgent IO conditionUsage:	%s [GNU long option] [option] ...
	%s [GNU long option] [option] script-file ...
Use "%s" to leave the shell.
Use the `bashbug' command to report bugs.
User signal 1User signal 2Wait for job completion and return exit status.
    
    Waits for each process identified by an ID, which may be a process ID or a
    job specification, and reports its termination status.  If ID is not
    given, waits for all currently active child processes, and the return
    status is zero.  If ID is a job specification, waits for all processes
    in that job's pipeline.
    
    If the -n option is supplied, waits for a single job from the list of IDs,
    or, if no IDs are supplied, for the next job to complete and returns its
    exit status.
    
    If the -p option is supplied, the process or job identifier of the job
    for which the exit status is returned is assigned to the variable VAR
    named by the option argument. The variable will be unset initially, before
    any assignment. This is useful only when the -n option is supplied.
    
    If the -f option is supplied, and job control is enabled, waits for the
    specified ID to terminate, instead of waiting for it to change status.
    
    Exit Status:
    Returns the status of the last ID; fails if ID is invalid or an invalid
    option is given, or if -n is supplied and the shell has no unwaited-for
    children.Wait for process completion and return exit status.
    
    Waits for each process specified by a PID and reports its termination status.
    If PID is not given, waits for all currently active child processes,
    and the return status is zero.  PID must be a process ID.
    
    Exit Status:
    Returns the status of the last PID; fails if PID is invalid or an invalid
    option is given.Window changedWrite arguments to the standard output.
    
    Display the ARGs on the standard output followed by a newline.
    
    Options:
      -n	do not append a newline
    
    Exit Status:
    Returns success unless a write error occurs.Write arguments to the standard output.
    
    Display the ARGs, separated by a single space character and followed by a
    newline, on the standard output.
    
    Options:
      -n	do not append a newline
      -e	enable interpretation of the following backslash escapes
      -E	explicitly suppress interpretation of backslash escapes
    
    `echo' interprets the following backslash-escaped characters:
      \a	alert (bell)
      \b	backspace
      \c	suppress further output
      \e	escape character
      \E	escape character
      \f	form feed
      \n	new line
      \r	carriage return
      \t	horizontal tab
      \v	vertical tab
      \\	backslash
      \0nnn	the character whose ASCII code is NNN (octal).  NNN can be
    		0 to 3 octal digits
      \xHH	the eight-bit character whose value is HH (hexadecimal).  HH
    		can be one or two hex digits
      \uHHHH	the Unicode character whose value is the hexadecimal value HHHH.
    		HHHH can be one to four hex digits.
      \UHHHHHHHH the Unicode character whose value is the hexadecimal value
    		HHHHHHHH. HHHHHHHH can be one to eight hex digits.
    
    Exit Status:
    Returns success unless a write error occurs.You have mail in $_You have new mail in $_[ arg... ][[ expression ]]`%c': bad command`%c': invalid format character`%c': invalid symbolic mode character`%c': invalid symbolic mode operator`%c': invalid time format specification`%s': cannot unbind`%s': cannot unbind in command keymap`%s': invalid alias name`%s': invalid keymap name`%s': invalid variable name for name reference`%s': is a special builtin`%s': missing format character`%s': not a pid or valid job spec`%s': not a valid identifier`%s': unknown function name`)' expected`)' expected, found %s`:' expected for conditional expressionadd_process: pid %5ld (%s) marked as still alivealias [-p] [name[=value] ... ]all_local_variables: no function context at current scopeargumentargument expectedarray variable support requiredattempted assignment to non-variablebad array subscriptbad command typebad connectorbad jumpbad substitution: no closing "`" in %sbad substitution: no closing `%s' in %sbash home page: <http://www.gnu.org/software/bash>
bash_execute_unix_command: cannot find keymap for commandbg [job_spec ...]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]brace expansion: cannot allocate memory for %sbrace expansion: failed to allocate memory for `%s'break [n]bug: bad expassign tokenbuiltin [shell-builtin [arg ...]]caller [expr]can only `return' from a function or sourced scriptcan only be used in a functioncannot allocate new file descriptor for bash input from fd %dcannot duplicate fd %d to fd %dcannot duplicate named pipe %s as fd %dcannot find %s in shared object %s: %scannot make child for command substitutioncannot make child for process substitutioncannot make pipe for command substitutioncannot make pipe for process substitutioncannot open named pipe %s for readingcannot open named pipe %s for writingcannot open shared object %s: %scannot reset nodelay mode for fd %dcannot set and unset shell options simultaneouslycannot set gid to %d: effective gid %dcannot set terminal process group (%d)cannot set uid to %d: effective uid %dcannot simultaneously unset a function and a variablecannot start debugger; debugging mode disabledcannot suspendcannot suspend a login shellcannot use `-f' to make functionscannot use more than one of -anrwcase WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esacchild setpgid (%ld to %ld)command [-pVv] command [arg ...]command substitution: ignored null byte in inputcommand_substitute: cannot duplicate pipe as fd 1complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: function `%s' not foundcompopt [-o|+o option] [-DEI] [name ...]conditional binary operator expectedcontinue [n]coproc [NAME] command [redirections]could not find /tmp, please create!cprintf: `%c': invalid format charactercurrentdeclare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]deleting stopped job %d with process group %lddescribe_pid: %ld: no such piddirectory stack emptydirectory stack indexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]division by 0dynamic loading not availableecho [-n] [arg ...]echo [-neE] [arg ...]empty array variable nameenable [-a] [-dnps] [-f filename] [name ...]error importing function definition for `%s'eval [arg ...]eval: maximum eval nesting level exceeded (%d)exec [-cl] [-a name] [command [argument ...]] [redirection ...]execute_coproc: coproc [%d:%s] still existsexit [n]expected `)'exponent less than 0expression expectedexpression recursion level exceededfc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]fg [job_spec]file descriptor out of rangefilename argument requiredfor (( exp1; exp2; exp3 )); do COMMANDS; donefor NAME [in WORDS ... ] ; do COMMANDS; doneforked pid %d appears in running job %dformat parsing problem: %sfree: called with already freed block argumentfree: called with unallocated block argumentfree: start and end chunk sizes differfree: underflow detected; magic8 corruptedfree: underflow detected; mh_nbytes out of rangefunction name { COMMANDS ; } or name () { COMMANDS ; }future versions of the shell will force evaluation as an arithmetic substitutiongetcwd: cannot access parent directoriesgetopts optstring name [arg ...]hash [-lr] [-p pathname] [-dt] [name ...]hashing disabledhelp [-dms] [pattern ...]help not available in this versionhere-document at line %d delimited by end-of-file (wanted `%s')history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]history positionhistory specificationhits	command
identifier expected after pre-increment or pre-decrementif COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fiinitialize_job_control: getpgrp failedinitialize_job_control: line disciplineinitialize_job_control: no job control in backgroundinitialize_job_control: setpgidinvalid arithmetic baseinvalid baseinvalid character %d in exportstr for %sinvalid hex numberinvalid integer constantinvalid numberinvalid octal numberinvalid signal numberjob %d started without job controljob_spec [&]jobs [-lnprs] [jobspec ...] or jobs -x command [args]kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]last command: %s
let arg [arg ...]limitline %d: line editing not enabledload function for %s returns failure (%d): not loadedlocal [option] name[=value] ...logout
logout [n]loop countmake_here_document: bad instruction type %dmake_local_variable: no function context at current scopemake_redirection: redirection instruction `%d' out of rangemalloc: block on free list clobberedmalloc: failed assertion: %s
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]maximum here-document count exceededmigrate process to another CPUmissing `)'missing `]'missing hex digit for \xmissing unicode digit for \%cnetwork operations not supportedno `=' in exportstr for %sno closing `%c' in %sno command foundno help topics match `%s'.  Try `help help' or `man -k %s' or `info %s'.no job controlno job control in this shellno match: %sno other directoryno other options allowed with `-x'not currently executing completion functionnot login shell: use `exit'null directoryoctal numberonly meaningful in a `for', `while', or `until' looppipe errorpop_scope: head of shell_variables not a temporary environment scopepop_var_context: head of shell_variables not a function contextpop_var_context: no global_variables contextpopd [-n] [+N | -N]power failure imminentpretty-printing mode ignored in interactive shellsprint_command: bad connector `%d'printf [-v var] format [arguments]progcomp_insert: %s: NULL COMPSPECprogrammable_completion: %s: possible retry loopprogramming errorpushd [-n] [+N | -N | dir]pwd [-LP]readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]readonly [-aAf] [name[=value] ...] or readonly -prealloc: called with unallocated block argumentrealloc: start and end chunk sizes differrealloc: underflow detected; magic8 corruptedrealloc: underflow detected; mh_nbytes out of rangerecursion stack underflowredirection error: cannot duplicate fdregister_alloc: %p already in table as allocated?
register_alloc: alloc table is full with FIND_ALLOC?
register_free: %p already in table as free?
restrictedreturn [n]run_pending_traps: bad value in trap_list[%d]: %prun_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myselfsave_bash_input: buffer already exists for new fd %dselect NAME [in WORDS ... ;] do COMMANDS; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]shell level (%d) too high, resetting to 1shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncatedshift [n]shift countshopt [-pqsu] [-o] [optname ...]sigprocmask: %d: invalid operationstart_pipeline: pgrp pipesuspend [-f]syntax errorsyntax error in conditional expressionsyntax error in conditional expression: unexpected token `%s'syntax error near `%s'syntax error near unexpected token `%s'syntax error: `%s' unexpectedsyntax error: `((%s))'syntax error: `;' unexpectedsyntax error: arithmetic expression requiredsyntax error: unexpected end of filesystem crash imminenttest [expr]time [-p] pipelinetoo many argumentstrap handler: maximum trap handler level exceeded (%d)trap_handler: bad signal %dtype [-afptP] name [name ...]typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] [name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limit]umask [-p] [-S] [mode]unalias [-a] name [name ...]unexpected EOF while looking for `]]'unexpected EOF while looking for matching `%c'unexpected EOF while looking for matching `)'unexpected argument `%s' to conditional binary operatorunexpected argument `%s' to conditional unary operatorunexpected argument to conditional binary operatorunexpected argument to conditional unary operatorunexpected token %d in conditional commandunexpected token `%c' in conditional commandunexpected token `%s' in conditional commandunexpected token `%s', conditional binary operator expectedunexpected token `%s', expected `)'unknownunknown command errorunset [-f] [-v] [-n] [name ...]until COMMANDS; do COMMANDS-2; donevalue too great for basevariables - Names and meanings of some shell variableswait [-fn] [-p var] [id ...]wait [pid ...]wait: pid %ld is not a child of this shellwait_for: No record of process %ldwait_for_job: job %d is stoppedwaitchld: turning on WNOHANG to avoid indefinite blockwarning: warning: -C option may not work as you expectwarning: -F option may not work as you expectwhile COMMANDS; do COMMANDS-2; donextrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: invalid file descriptorxtrace_set: NULL file pointer{ COMMANDS ; }Project-Id-Version: bash 5.2-rc1
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2023-02-09 00:40+0800
Last-Translator: Yi-Jyun Pan <pan93412@gmail.com>
Language-Team: Chinese (traditional) <zh-l10n@lists.linux.org.tw>
Language: zh_TW
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Bugs: Report translation errors to the Language-Team address.
X-Generator: Poedit 3.2.2
 等待輸入逾時:自動登出
	-%s or -o 選項
	-irsD 或 -c <指令> 或 -O <shopt 選項>		(僅適合呼叫)

malloc: %s:%d: 主張已修補
  (工作目錄: %s) (核心已傾印) 列 $%s: 無法如此指派%c%c:無效選項%s 可以被呼叫,藉由 %s 有空的 exportstr%s 是 %s
%s 是一個函數
%s 是 shell 內建命令
%s 是 shell 關鍵字
%s 是特別的 shell 內建命令
%s 是「%s」的別名
%s 已進行雜湊操作 (%s)
%s 未與任何按鍵綁定。
%s 超出範圍%s%s%s: %s (錯誤字組是「%s」)%s:%s 超出範圍%s: %s: 無法做為檔案開啟%s: %s: 相容版本數值超出範圍%s: %s: 追蹤檔案描述符的值無效%s: %s: 指派為關聯陣列時必須使用下標%s: %s:%d: 無法分配 %lu 位元組%s: %s:%d: 無法分配 %lu 位元組 (已分配 %lu 位元組)%s: 是一個目錄%s:模稜兩可的工作規格%s: 參數必須是行程或工作 ID%s:指定數字至名稱參考%s:不當的網路路徑規格%s: 錯誤的取代%s: 需要二元表示式%s: 無法分配 %lu 位元組%s: 無法分配 %lu 位元組 (已分配 %lu 位元組)%s:無法指定%s: 無法將串列指派給陣列成員%s: 無法指派為非數字的索引%s: 無法將關聯陣列轉化為索引陣列%s: 無法將索引陣列轉化為關聯陣列%s: 無法刪除: %s%s: 無法以這種方式銷毀陣列變數%s:無法執行:找不到必須檔案%s:無法匯出%s:無法從不相容的類型繼承數值%s: 無法取消設定%s: 無法取消設定: 唯讀 %s%s: 迴圈變數名引用%s: 已經載入動態內建指令%s: 表示式錯誤
%s: 檔案太大%s: 檔案未找到%s: 第一個非空字元不是「"」%s: 雜湊表為空
%s: 歷史記錄擴充套件失敗%s:不明的主機%s:不合法的選項 ─ %c
%s:無效的功能名稱%s: 無效參數%s: 無效的陣列原點%s: 無效的回呼定量%s: 無效的檔案描述符規格%s: 無效的間接擴充%s: 無效的 limit 參數%s: 無效的列數%s:無效選項%s:無效選項名稱%s:無效服務%s: 無效的 shell 選項名稱%s:無效的訊號規格%s: 無效的逾時規格%s:無效時間戳%s:無效的變數名稱%s: 無效的引用變數名%s: 是一個目錄%s: 工作 %d 已在背景執行%s: 工作已經終止%s: 第 %d 列:%s: 超出最大函數巢狀層數 (%d)%s: 超出最大來源巢狀層數 (%d)%s: 不允許名稱引用變數引用自身%s:沒有完成的規格%s:目前沒有工作%s:沒有工作控制%s:沒有此類工作%s: 不是函數%s: 不是一般檔案%s:不是一個內建 shell%s: 不是陣列變數%s: 不是一個索引陣列%s: 未以動態方式載入%s:沒有找到%s:需要數字參數%s:選項需要一個參數%s: 選項需要一個參數 -- %c
%s:參數未設定%s: 參數為空或未設定%s:不建議使用引用的複合陣列指定%s:唯讀函數%s:唯讀的變數%s: 引用變數不能為陣列%s:正在移除 nameref 屬性%s:受限的%s: 受限的: 無法在指令名稱中使用「/」%s: 子串表示式 < 0%s: 需要一元表示式%s: 未綁定的變數%s:用法:%s: 變數不可指派值'

(( 表示式 ))(核心已傾印)(目前工作目錄:%s)
沒有網路時不支援 /dev/(tcp|udp)/host/port/tmp 必須為有效的目錄名稱<無目前目錄>放棄指令中止…從堆疊中建立目錄。
    
    從目錄堆疊中建立條目。不帶參數時,建立堆疊頂端目錄,並變更至新的堆疊
    頂端目錄。
    
    選項:
      -n	抑制從堆疊中刪除目錄時通常的目錄變換操作,從而僅對堆疊
    	進行操作。
    
    參數:
      +N	刪除第 N 個目錄 (「dirs」顯示的目錄列表中左起,從零開始)。
    	例如:「popd +0」刪除第一個目錄,「popd +1」刪除第二個。
    
      -N	刪除第 N 個目錄 (「dirs」顯示的目錄列表中右起,從零開始)。
    	例如:「popd -0」刪除最後一個目錄,,「popd -1」刪除倒數第二個。
    
   「dirs」內建顯示目錄堆疊。
    
    結束狀態:
    回傳成功,除非使用了無效的參數或者目錄變換失敗。在目錄堆疊頂部加入一個目錄,或者論詢
    目錄堆疊,是目前工作目錄成為新的堆疊頂端
    不帶參數時,交換堆疊頂端的兩個目錄。
    
    選項:
      -n	抑制增加堆疊中目錄時通常變更目錄的操作,
    	從而只有堆疊被操作。
    
    參數:
      +N	輪轉堆疊使得第 N 個目錄(「dirs」的
    	輸出列表中左起,從 0 開始)
    	升至堆疊頂端。
    
      -N	輪轉堆疊使得第 N 個目錄(「dirs」的
    	輸出列表中右起,從 0 開始)
    	升至堆疊頂端
    
      dir	新增目錄至堆疊頂端,並
    	使其成為新的目前工作目錄。
    
   「dirs」內建指令顯示目錄堆疊。警報(側寫)警報(虛擬)鬧鐘算術 for 迴圈。
    
    等價於
    	(( EXP1 ))
    	while (( EXP2 )); do
    		<指令>
    		(( EXP3 ))
    	done
    EXP1、EXP2 和 EXP3 都是算術表示式。如果省略任何表示式,
    則等同於使用了求值為 1 的表示式。
    
    結束狀態:
    回傳最後執行指令的狀態。斷點追蹤/陷阱無效系統呼叫偽訊號管線損壞匯流排錯誤CPU 限制子行程已死或者停止常用 shell 變數名稱和使用。
    
    BASH_VERSION	目前 Bash 的版本資訊。
    CDPATH	傳入「cd」作為引數,冒號分隔的欲搜尋目錄清單
    GLOBIGNORE	路徑擴充套件時忽略的檔名符合模式列表,
    		以冒號分隔。
    HISTFILE	您的命令歷史記錄存放的檔案名稱。
    HISTFILESIZE	歷史記錄檔案最多可以儲存的列數。
    HISTSIZE	一個執行的 shell 最多可以存取的歷史記錄命令列數。
    HOME	您登入目錄的完整路徑。
    HOSTNAME	目前主機的主機名稱。
    HOSTTYPE	目前版本的 BASH 在其之上執行的 CPU 類型。
    IGNOREEOF	控制 shell 收到檔案結束符做為單一輸入後的
    		動作。如果設定這個變數,則它的值是 shell 結束之前在
    		一個空列上可以連續看到的檔案結束符數量(預設為 10)。
    		未設定時,檔案結束符旗標著輸入的結束。
    MACHTYPE	描述目前執行 Bash 的系統字串。
    MAILCHECK	Bash 檢測新郵件的頻率,以秒為單位。
    MAILPATH	Bash 從中檢測新郵件的檔案列表,以冒號分隔。
    OSTYPE	執行 Bash 的 Unix 版本。
    PATH	當尋找指令時搜尋的目錄列表,以冒號分隔。
    PROMPT_COMMAND	印出每一個主提示符之前執行的命
    		令。
    PS1		主提示符字串。
    PS2		從提示符字串。
    PWD		目前目錄的完整路徑。
    SHELLOPTS	已啟用的 shell 選項列表,以冒號分隔。
    TERM	目前終端類型的名稱。
    TIMEFORMAT	以關鍵則「time」顯示的時間統計資訊的輸出
    		格式。
    auto_resume	非空時,一個單獨的指令詞會首先被在目前
    		停止的工作列表中搜尋。如果找到則該工作被置於前臺。
    		如果值為「exact」則意味著指令詞必須精確符合停止工作
    		列表中的指令。如果值為「substring」則意味著指令詞必
    		須符合工作的一個子字串。任何其他的值意味著指令詞
    		必須是停止工作的一個字首。
    histchars	控制歷史記錄展開和快速取代的字元。第一個字元是
    		歷史記錄取代字元,通常是「!」。第二個字元是快速取代字元,
    		通常是「^」。第三個是歷史記錄註釋字元,通常是「#」。
    HISTIGNORE	用於決定哪些指令被存入歷史記錄檔案的模式
    		列表,以冒號分隔。
繼續建立一個以 <名稱> 為名的副行程。
    
    非同步執行 <指令>,在執行 shell 中的陣列變數 <名稱>
    的 0 號和 1 號元素做為檔案描述符,以一個管道連接指令
    分別做為指令的標準輸出和輸入裝置。
    預設的 <名稱> 是「COPROC」。
    
    結束狀態:
    coprc 指令回傳離開代碼 0。除錯警告:定義或顯示別名。
    
    不帶參數時,「alias」以可重用的格式
   「alias 名稱=值」在標準輸出裝置上印出別名列表。
    
    否則,對於每個指定值的名稱定義一個別名。
    值末尾的空格會使下一個字詞被檢測
    做為別名取代展開。
    
    選項:
      -p	以可重用的格式印出所有的已定義別名
    
    結束狀態:
    除非一個沒有定義的名字被做為參數提供,否則 alias 
    回傳值為真。定義 shell 函數。
    
    建立一個以 <名稱> 為名的 shell 函數。當做為一個簡單的指令啟用時,
    <名稱> 函數執行呼叫 shell 語境中的 COMMANDs 指令。當 <名稱>
    被啟用時,參數做為 $1…$n 被傳遞給函數,函數的名字儲存在變數
    $FUNCNAME 中。
    
    結束狀態:
    回傳成功除非 <名稱> 為唯讀。顯示目錄堆疊。
    
    顯示目前記住的目錄列表。藉由「pushd」指令可以將目錄存入列表
    中;「popd」指令可用於遍歷彈出列表。
    
    選項:
      -c	刪除所有元素以清空目錄堆疊
      -l	不印出與主目錄相關的波浪號字首的目錄
      -p	每列一個條目印出目錄堆疊
      -v	每列一個條目,以堆疊中位置為字首印出目錄堆疊
    
    參數:
      +N	顯示 dirs 不帶選項啟動時顯示的目錄列表左起中第
    	N 個目錄,從零開始。
    
      -N	顯示 dirs 不帶選項啟動時顯示的目錄列表右起中第
    	N 個目錄,從零開始。
    
    結束狀態:
    回傳成功,除非使用了無效的選項或者發生錯誤。顯示內建指令的相關資訊。
    
    顯示內建指令的簡略資訊。如果指定了 PATTERN 模式,
    給出所有符合 PATTERN 模式指令的詳細說明,否則印出
    一個說明主題列表
    
    選項:
      -d	輸出每個主題的簡短描述
      -m	以偽 man 手冊的格式顯示使用方法
      -s	為每一個符合 PATTERN 模式的主題僅顯示一個用法
    	簡介
    
    參數:
      PATTERN	Pattern 模式指定一個說明主題
    
    結束狀態:
    回傳成功,除非 PATTERN 模式沒有找到或者使用了無效選項。顯示指令類型的資訊。
    
    對於每一個 NAME,指示用作指令名稱時的解釋方式。
    
    選項:
      -a	顯示所有包含名為 NAME 的可執行檔案的位置。
    	包括別名、內建和函數(若且唯若 “-p” 選項未使用時)。
      -f	抑制 shell 函數查詢
      -P	為每個 NAME 強制進行 PATH 路徑搜尋,即使它是別名、
    	內建或函數,並回傳將被執行的磁碟檔案名稱。
      -p	回傳將被執行的磁碟上檔案的名稱,或者在 “type -t NAME”
    	回傳值不是 “file” 時,不回傳任何值。
      -t	回傳 “alias”、“keyword”、“function”、“builtin”、“file”
    	或 “”,對應到 NAME 是別名、shell 保留字、shell 函數、
    	內建命令、磁碟檔案或找不到檔案。
    
    引數:
      NAME	將要解析的指令。
    
    結束狀態:
    若找到所有的 NAME,則回傳成功;有任何一個沒找到,則回傳失敗。顯示或設定檔案模式遮罩。
    
    設定使用者檔案建立遮罩為 MODE 模式。如果省略了 MODE,則
    印出目前遮罩的值。
    
    如果 MODE 模式以數字開頭,則被當做八進位數字解析;否則是一個
    chmod(1) 可接收的符號模式串。
    
    選項:
      -p	如果省略 MDOE 模式,以可重用為輸入的格式輸入
      -S	以符號形式輸出,否則以八進位數字格式輸出
    
    結束狀態:
    回傳成功,除非使用了無效的 MODE 模式或者選項。顯示行程時間
    
    印出 shell 及其所有子行程的累計使用者空間和
    系統空間執行時間。
    
    結束狀態:
    一律成功。顯示工作狀態。
    
    列出活動的工作。JOBSPEC 限制僅輸出指定的工作。
    不帶選項時,所有活動工作的狀態都會顯示。
    
    選項:
      -l	在正常資訊基礎上列出行程識別碼
      -n	僅列出上次通告之後變更了狀態的行程
      -p	僅列出行程識別碼
      -r	限制僅輸出執行中的工作
      -s	限制僅輸出停止的工作
    
    如果使用了 -x 選項,<參數> 中的所有工作規格會被取代為該工作
    的行程群組首領的行程識別碼,然後執行 COMMAND 指令。
    
    結束狀態:
    回傳成功,除非使用了無效的選項或者有錯誤發生。
    如果使用 -x 選項,則回傳 COMMAND 指令的結束狀態。顯示目前記住的目錄列表。 目錄
    藉由「pushd」指令加入這個列表;您可以
    使用「popd」指令對列表進行遍歷。
    
    選項:
      -c	刪除所有元素以清除目錄堆疊
      -l	不印出與家目錄相關的以波浪號
    	為字首的目錄
      -p	每列一個條目印出目錄堆疊
      -v	以堆疊位置為字首,每列一個條目
    	印出目錄堆疊
    
    參數:
      +N	以 dirs 不帶選項輸出的順序,從左起第 N 個條目顯示列表,
    	從 0 開始。
    
      -N	以 dirs 不帶選項輸出的順序,從右起第 N 個項目顯示列表,
	從 0 開始。已完成已完成(%d)模擬器陷阱指令求值算術表示式。
    
    <表示式> 按照算術法則進行求值。
    等價於「let 表示式」。
    
    結束狀態:
    如果表示式求值為 0 則回傳 1;否則回傳 0。求值算術表示式。
    
    將每個 <參數> 做為算術表示式來求值。求值的計算以定寬的整
    數完成,不帶溢位檢測,不過除 0 是被置陷阱的並且會報一個錯
    誤。下列運算子被按照相同的算術優先順序組合。列表的順序按照
    優先順序從高至低。
    
    
    	id++, id--	變數後置加,後置減
    	++id, --id	變數前置加,前置減
    	-, +		一元減法,一元加法
    	!, ~		邏輯和位取反
    	**		指數
    	*, /, %		乘法,除法,取餘數
    	+, -		增加,減少
    	<<, >>		向左和向右按位移位
    	<=, >=, <, >	比較
    	==, !=		等於,不等於
    	&		按位與
    	^		按位異或
    	|		按位或
    	&&		邏輯與
    	||		邏輯或
    	expr ? expr : expr
    			條件運算子
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	指派
    
    Shell 變數允許做為運算元。表示式中的變數名稱會以值取代
    (強制轉換為定寬的整數)。表示式中的變數不需要開啟整數屬性。
    
    運算子按照優先順序進行求值。括號中的子表示式將被先求值,並可取代上述表示式規則。
    
    結束狀態:
    如果最後一個 <參數> 求值為 0,則 let 回傳 1;否則 let 回傳 0。對條件表示式進行求值。
    
    根據 EXPR 表示式的求值以狀態 0 (真) 或 1 (偽) 結束。
    表示式可以是一元或者二元的。一元表示式通常用於檢測
    檔案狀態。同時還有字串運算子和數字比較運算子。
    
    檔案運算子:
    
      -a 檔案        如果檔案存在則為真。
      -b 檔案        如果檔案為區塊特殊檔案則為真。
      -c 檔案        如果檔案為字元特殊檔案則為真。
      -d 檔案        如果檔案為目錄則為真。
      -e 檔案        如果檔案存在則為真。
      -f 檔案        如果檔案存在且為一般檔案則為真。
      -g 檔案        如果檔案的群組屬性設定開啟則為真。
      -h 檔案        如果檔案為符號連結則為真。
      -L 檔案        如果檔案為符號連結則為真。
      -k 檔案        如果檔案的黏著位元已設定則為真。
      -p 檔案        如果檔案為命名管道則為真。
      -r 檔案        如果檔案對於您是可讀的則為真。
      -s 檔案        如果檔案存在且不為空則為真。
      -S 檔案        如果檔案是通訊端則為真。
      -t 檔案描述符   如果檔案描述符在終端上開啟則為真。
      -u 檔案        如果檔案的使用者數列設定開啟則為真。
      -w 檔案        如果檔案對您是可寫的則為真
      -x 檔案        如果檔案對您是可執行的則為真。
      -O 檔案        如果檔案是您所有的則為真。
      -G 檔案        如果檔案是您的群組所有則為真。
      -N 檔案        如果檔案上次被讀取之後修改過則為真。
    
      FILE1 -nt FILE2  如果 file1 檔案新於 file2 檔案則為真(根據
                       修改日期)。
    
      FILE1 -ot FILE2  如果 file1 檔案舊於 file2 檔案則為真。
    
      FILE1 -ef FILE2  如果 file1 檔案是 file2 檔案的硬式連結則為真。
    
    字串運算子
    
      -z 字串      如果字串為空則為真。
    
      -n 字串
         字串      如果字串不為空則為真。
    
      STRING1 = STRING2
                     如果 string1 和 string2 字串相同則為真。
      STRING1 != STRING2
                     如果 string1 和 string2 字串不相同則為真。
      STRING1 < STRING2
                     如果按字典排序 string1 在 string2 串之前則為真。
      STRING1 > STRING2
                     如果按字典排序 string1 在 string2 串之前則為真。
    
    其他運算子:
    
      -o 選項        如果指定 shell 選項啟用則為真。
      -v VAR	 如果指定 Shell 變數 VAR 已指派則為真。
      -R VAR	 如果指定 Shell 變數 VAR 已指派且為名稱引用則為真。
      ! EXPR         如果表示式 expr 為假則為真。
      EXPR1 -a EXPR2 如果 expr1 和 expr2 都為真則為真。
      EXPR1 -o EXPR2 如果 expr1 和 expr2 有一個為真則為真。
    
      arg1 OP arg2   算術測試。OP 運算子可以是 -eq、-ne、
                     -lt、-le、-gt、或 -ge 之一。
    
    二元算術運算回傳真,如果 ARG1 參數等於、不等於、
    小於、小於等於、大於、或者大於等於 ARG2 參數。
    
    結束狀態:
    如果 EXPR 表示式求值為真則回傳成功;如果 EXPR 表示式求值
    為假或者使用了無效的參數則回傳失敗。求值條件表示式。
    
    是內建指令「test」的同義詞,但是最後一個參數必須是
    字元「]」,以符合起始的「[」。將參數做為 shell 指令執行。
    
    將 <參數> 合成一個字串,用結果做為 shell 的輸入,
    並且執行得到的指令。
    
    結束狀態:
    以指令的狀態結束,或者在指令為空的情況下回傳成功。只要測試不成功即執行指令。
    
    只要 COMMANDS 中的最後一條命令回傳了不是 0 的結束狀態碼,
   便會展開並執行 COMMANDS-2。
    
    結束狀態:
    回傳最後一個執行指令的狀態。只要測試成功即執行指令。
    
    只要 COMMANDS 中的最後一條命令回傳了結束狀態碼 0,
   便會展開並執行 COMMANDS-2。
    
    結束狀態:
    回傳最後一個執行指令的狀態。根據條件執行指令。
    
   「if <指令>」列表被執行。如果結束狀態為零,則執行「then <指令>」
    列表。否則按順序執行每個「elif <指令>」列表,並且如果它的結束狀態為
    零,則執行對應的「then <指令>」列表並且 if 指令終止。否則如果存在的
    情況下,執行「else <指令>」列表。整個結構的結束狀態是最後一個執行
    指令的狀態,或者如果沒有條件測試為真的話,則為零。
    
    結束狀態:
    回傳最後一個執行指令的狀態。基於模式符合來執行指令。
    
    基於 PATTERN 模式符合的字詞 WORD,有選擇的執行 <指令>。
   「|」用於分隔多個模式。
    
    結束狀態:
    回傳最後一個執行指令的狀態。為列表中的每個成員執行指令。
    
   「for」迴圈為列表中的每個成員執行一系列的指令。如果沒有
   「in WORDS ...;」則假定使用「in "$@"」。對於 WORDS 中的每
    個元素,<名稱> 被設定為該元素,並且執行 <指令>。
    
    結束狀態:
    回傳最後執行指令的狀態。執行條件指令。
    
    根據條件表示式 EXPRESSION 的求值回傳狀態 0 或 1。表示式按照
   「test」內建的相同條件組成,或者可以有下列運算子連接而成:
    
      ( EXPRESSION )	回傳 EXPRESSION 表示式的值
      ! EXPRESSION		如果 EXPRESSION 表示式為假則為真,否則為假
      EXPR1 && EXPR2	如果 EXPR1 和 EXPR2 表示式均為真則為真,否則為假
      EXPR1 || EXPR2	如果 EXPR1 和 EXPR2 表示式中有一個為真則為真,否則為假
    
    當使用「==」和「!=」運算子時,運算子右邊的字串被用作模式並且執行一個
    符合。當使用「=~」運算子時,運算子右邊的字串被當做正規表示式來進行
    符合。
    
    運算子 && 和 || 將不對 EXPR2 表示式進行求值,如果 EXPR1 表示式足夠確定
    整個表示式的值。
    
    結束狀態:
    根據 EXPRESSION 的值為 0 或 1。執行 shell 內建命令。
    
    帶 <參數> 執行 <shell 內建命令> 而不做指令查詢
    在希望以 shell 函數的形式來重新實現 shell 內建命令,
    但需要在函數之內執行該 shell 內建命令的情況下有用處。
    
    結束狀態:
    以 <shell 內建命令> 的結束狀態為準,或者如果 <shell 內建命令> 不是一個 shell 內建命令時
    回傳 false。結束 %d結束一個登入 shell。
    
    以狀態 N 結束一個登入 shell。如果不在登入 shell 中執行,則
    回傳一個錯誤。結束 for、while 或 until 迴圈
    
    結束一個 FOR、WHILE 或 UNTIL 迴圈。如果指定了 N,則跳出 N 重
    迴圈
    
    結束狀態:
    結束狀態為 0 除非 N 不大於或等於 1。結束 shell。
    
    以狀態 N 結束 shell。  如果 N 被省略,則結束狀態
    為最後一個執行指令的結束狀態。檔案限制期望浮點數GNU bash,版本 %s (%s)
GNU bash,版本 %s-(%s)
GNU 長選項:
GNU 軟體的常見使用說明:<http://www.gnu.org/gethelp/>
將指令組合為一個單元。
    
    執行群組中的指令集合。這是對整個指令集合
    做重定向的方法之一。
    
    結束狀態:
    回傳最後一個執行指令的狀態。HFT 待輸入資料已授予 HFT 監視模式已復原 HFT 監視模式已完成 HFT 聲音序列未設定 HOME掛斷我沒有名字!I/O 就緒通知:無效指令資訊請求中止強制結束授權條款 GPLv3+: GNU GPL 授權條款第三版或者更新版本 <http://gnu.org/licenses/gpl.html>
標記 shell 變數為不可變更。
    
    標記每一個 <名稱> 為唯讀;這些 <名稱> 變數的值將不可以被後續的指派
    操作所變更。如果提供了 VALUE,則在標記為唯讀之前將 VALUE 值指派給變數。
    
    選項:
      -a	指索引陣列變數
      -A	指關聯陣列變數
      -f	指 shell 函數
      -p	顯示唯讀變數或函數列表,取決於是否提供了 -f 選項
    
   「--」的參數停用進一步的選項處理。
    
    結束狀態:
    回傳成功,除非使用了無效的選項或者 <名稱>。修改或顯示自動完成選項。
    
    修改每個 <名稱> 的自動完成選項,或如果沒有提供 <名稱>,執行目前的自動完成。
    如果不帶選項,印出每個 <名稱> 的自動完成選項或目前的自動完成規格。
    
    選項:
    	-o option	為每個 <名稱> 設定自動完成選項 option
    	-D		為「default」指令自動完成變更選項
    	-E		為「empty」指令自動完成變更選項
    	-I		為首單詞上的自動完成變更選項
    
    使用「+o」而不是「-o」可以關閉指定的選項。
    
    參數:
    
    每個 <名稱> 都對應一個之前以藉由「complete」內建定義了自動完成規格的
    指令。如果不提供 <名稱>,目前產生自動完成的函數必須呼叫 compopt,
    並且目前執行的自動完成產生器選項會被修改。
    
    結束狀態:
    回傳成功,除非使用了無效的選項或者 <名稱> 沒有定義自動完成規格。將工作移至前臺。
    
    將以 JOB_SPEC 識別的工作放至前臺,使其成為
    目前工作。如果 JOB_SPEC 不存在,shell 觀念中的目前工作 
    將被使用。
    
    結束狀態:
    放至前臺的指令狀態,或者當錯誤發生時為失敗。移動工作至後臺。
    
    將 JOB_SPEC 識別的工作放至後臺,就像它們
    是帶「&」啟動的一樣。如果 JOB_SPEC 不存在,shell 觀念中的
    目前工作將會被使用。
    
    結束狀態:
    回傳成功除非工作管理沒有啟用或者錯誤發生。空的指令。
    
    沒有效果;此指令不做任何操作。
    
    結束狀態:
    一律成功。未設定 OLDPWD解析選項參數。
    
    Getopts 被 shell 過程用來將可定位的參數解析為選項。
    
    <選項字串> 字串包含待識別的選項字母。如果一個字母後面跟
    著冒號,則該選項需要一個參數,這個參數應利用空格與選項分開。
    
    每次呼叫時,getopts 會將下一個選項放到 shell 變數 $name
    中,如果 name 變數不存在則先將其初始化,而下一個待處
    理的參數序號放入 shell 變數 OPTIND 中。OPTIND 變數在每
    次 shell 或者 shell 指令稿啟動時都被初始化為 1。當一個選項要
    求有一個參數時,getopts 將參數放入 shell 變數 OPTARG
    中。
    
    getopts 有兩種通報錯誤的方法。如果 <選項字串> 變數的第
    一個字元是冒號,getopts 進入靜默錯誤回報模式。在這種模式
    下,不會輸出錯誤訊息。若看到了無效選項,getopts 將找到的
    選項字元放至 OPTARG 變數中。如果找不到必要引數,getopts
    會放一個「:」到 <名稱> 變數,並將 OPTARG 設為找到的選項字元
    。如果 getopts 不在靜默模式中,並且遇到了一個無效的選項,
    getopts 會放置一個「?」到 <名稱> 變數,並取消設定 OPTARG。
    如果找不到必要引數,則會在 NAME 放置「?」、取消設定 OPTARG,
    並且會輸出診斷資訊。
    
    如果 shell 變數 OPTERR 的值為 0,getopts 停止輸出錯誤訊息,
    即使 <選項字串> 變數的第一個字元不是冒號。OPTERR 的預設值為 1。
    
    Getopts 通常解析可定位的參數($0 - $9),不過如果提供了
    更多的參數,會改解析這些引數。
    
    結束狀態:
    找到選項則回傳成功;如果選項提早結束,或者有錯誤發生,
    則回傳失敗。印出目前工作目錄的名字。
    
    選項:
      -L	印出 $PWD 變數的值,如果它包含了目前的工作目錄
      -P	印出目前的實體路徑,不帶有任何的符號連結
    
    預設情況下,「pwd」的行為和帶「-L」選項一致
    
    結束狀態:
    除非使用了無效選項或者目前目錄不可讀,否則回傳狀態為 0。結束從一個檔案中讀取列到陣列變數中
    
    一個「mapfile」的同義詞。從標準輸入讀取列到索引陣列變數中。
    
    從標準輸入讀取列到索引陣列變數 ARRAY 中,或者如果使用了 -u 選項,
    從檔案描述符 FD 中讀取。MAPFILE 變數是預設的 ARRAY 變數。
    
    選項:
      -d delim	使用 DELIM 取代換行符號來斷行
      -n count	最多複製 COUNT 列,如果 COUNT 為 0,則複製所有列。
      -O origin	從索引 ORIGIN 開始 指派給 ARRAY 變數。預設索引是 0。
      -s count 	丟棄最先讀取的 COUNT 列。
      -t		從讀取的每列末尾刪除一個換列符。
      -u fd		從檔案描述符 FD 中讀取列而不是標準輸入。
      -C callback	每 QUANTUM 次讀列之後對 CALLBACK 回呼求值。
      -c quantum	定義每次呼叫 CALLBACK 回呼之間讀取的列數。
    
    參數:
      ARRAY		儲存資料使用的陣列變數
    
    如果使用了 -C 而沒有 -c,預設的定量是 5000。當對 CALLBACK 求值時,
    下一個將被指派的陣列元素索引做為額外參數被傳遞。
    
    如果沒有顯式指定起始索引,mapfile 將在指派前清空 ARRAY 變數。
    
    結束狀態:
    回傳成功,除非使用了無效的選項,或者 ARRAY 變數唯讀或不是索引陣列。記錄鎖記住或顯示程式位置。
    
    確定並記住每一個指定 <名稱> 指令的完整路徑。
    如果不提供參數,則顯示已經記住指令的資訊。
    
    選項:
      -d		忘記每一個已經記住的 <名稱> 的位置
      -l		以可做為輸入重用的格式顯示
      -p pathname	使用 pathname 路徑做為 <名稱> 指令的全路徑
      -r		忘記所有記住的位置
      -t		印出記住的每一個 <名稱> 的位置,如果指定了多個
    		<名稱>,則每個位置前面會加上相應的 <名稱> 
    		
    參數:
      <名稱>		每個 <名稱> 會在 $PATH 路徑變數中被搜尋,並且新增到記住的指令
    列表中。
    
    結束狀態:
    回傳成功,除非 <名稱> 指令沒有找到或者使用了無效的選項。從堆疊中刪除目錄。
    
    從目錄堆疊中刪除條目。不帶參數時,刪除堆疊頂端目錄,並變更至新的堆疊
    頂端目錄。
    
    選項:
      -n	抑制從堆疊中刪除目錄時通常的目錄變換操作,從而僅對堆疊
    	進行操作。
    
    參數:
      +N	刪除第 N 個目錄 (「dirs」顯示的目錄列表中左起,從零開始)。
    	例如:「popd +0」刪除第一個目錄,「popd +1」刪除第二個。
    
      -N	刪除第 N 個目錄 (「dirs」顯示的目錄列表中右起,從零開始)。
    	例如:「popd -0」刪除最後一個目錄,,「popd -1」刪除倒數第二個。
    
   「dirs」內建顯示目錄堆疊。
    
    結束狀態:
    回傳成功,除非使用了無效的參數或者目錄變換失敗。從別名定義列表中刪除每一個 <名稱>。
    
    選項:
      -a	刪除所有的別名定義
    
    回傳成功,除非 <名稱> 不是一個已存在的別名。從目前 shell 中刪除工作。
    
    從活動工作表中刪除每一個 JOBSPEC 參數。不帶任何
    JOBSPEC 參數時,shell 使用觀念中的目前工作。
    
    選項:
      -a	如果不提供 JOBSPEC 參數,則刪除所有工作
      -h	識別每個 JOBSPEC 工作,從而當 shell 接收到 SIGHUP
    	訊號時不傳送 SIGHUP 給指定工作
      -r	僅刪除執行中的工作
    
    結束狀態:
    回傳成功除非使用了無效的選項或者 JOBSPEC 規格。從目錄堆疊中刪除條目。不帶參數時,刪除
    堆疊頂端目錄並變更至新的堆疊頂端目錄。
    
    選項:
      -n	抑制從堆疊中刪除目錄時通常變更目錄操作,
    	從而只有堆疊被操作。
    
    參數:
      +N	從「dirs」輸出的列表中,
    	刪除左起第 N 個條目,計數從 0 開始。例如:「popd +0」
    	刪除第一個目錄,「popd +1」刪除第二個。
    
      -N	從「dirs」輸出的列表中,
    	刪除右起第 N 個條目,計數從 0 開始,例如:「popd -0」
    	刪除最後一個條目,「popd -1」刪除倒數第二個。
    
   「dirs」內建變數顯示目錄堆疊。使用指定指令取代 shell。
    
    執行 COMMAND 指令,以指定的程式取代這個 shell。
    ARGUMENTS 參數成為 COMMAND 指令的參數。如果
    沒有指定 COMMAND 指令,則任何的重定向在目前 shell 中生效。
    
    選項:
      -a 名稱	做為第 0 個參數傳遞給 COMMAND 指令
      -c		在空環境中執行 COMMAND 指令
      -l		在 COMMAND 指令的第 0 個參數中加一個短線
    
    如果指令不能被執行,則結束一個非互動式的 shell,除非
   shell 選項「execfail」已經設定。
    
    結束狀態:
    回傳成功除非 COMMAND 指令沒有找到或者出現一個重定向錯誤。通報管道執行的消耗時間。
    
    執行 PIPELINE 並且印出 PIPELINE 終止時實際時間、使用者 CPU 時間和系統
    CPU 時間的總結。
    
    選項:
      -p	用可移植的 POSIX 格式印出用時總結。
    
    TIMEFORMAT 變數的值被做為輸出格式。
    
    結束狀態:
    回傳狀態即 PIPELINE 的回傳狀態。繼續 for、while 或 until 迴圈。
    
    繼續目前 FOR、WHILE 或 UNTIL 迴圈的下一步。
    如果指定了 N, 則繼續目前的第 N 重迴圈。
    
    結束狀態:
    結束狀態為 0 除非 N 不大於或等於 1。在前臺繼續工作
    
    對於 JOB_SPEC 參數來說和「fg」指令等同。繼續一個
    停止的或者後臺工作。JOB_SPEC 可以指定一個工作
    名字或工作號。在 JOB_SPEC 後加上一個「&」將會把
    工作放至後臺,就像工作規格被做為「bg」指令的參數
    執行一樣。
    
    結束狀態:
    回傳被繼續的工作狀態。回傳一個成功結果。
    
    結束狀態:
    一律成功。回傳一個不成功的結果。
    
    結束狀態:
    一律失敗。從一個 shell 函數回傳。
    
    使一個函數或者被引用的指令稿以指定的回傳值 N 結束。
    如果 N 被省略,則回傳狀態就是
    函數或指令稿中的最後一個執行指令的狀態。
    
    結束狀態:
    回傳 N,或者如果 shell 不在執行一個函數或引用指令稿時,失敗。回傳目前子呼叫的語境。
    
    不帶有 EXPR 時,回傳「$line $filename」。帶有 EXPR 時,回傳
   「$line $subroutine $filename」;這個額外的資訊可以被用於提供
    堆疊追蹤。
    
    EXPR 的值顯示了到目前呼叫框格需要回去多少個呼叫框格;頂部框格
    是第 0 框格。
    
    結束狀態:
    除非 shell 不在執行一個 shell 函數或者 EXPR 無效,否則回傳結
    果為 0。執行中程式記憶體區段錯誤從列表中選取詞並且執行指令。
    
    WORDS 變數被展開,產生一個字詞的列表。展開的字詞集合被印出
    在標準錯誤輸出裝置上,每個以一個數字做字首。如果沒有「in WORDS」
    則假定使用「in "$@"」。PS3 提示符會被顯示並且從標準輸入讀入一列
    如果該列由被顯示字詞對應的數字組成,則 <名稱> 變數被設定為相應
    的字詞。如果列為空,則 WORDS 變數和提示符被重新顯示。如果讀取了
    檔案結束符,則指令完成。讀入任何其他的值會導致 <名稱> 變數被設定
    為空。讀入的列被存放在變數 REPLY 中。<指令> 在每次選擇
    之後執行直到執行一個 break 指令。
    
    結束狀態:
    回傳最後一個執行指令的狀態。向一個工作傳送一個訊號。
    
    向以 PID 行程識別碼或者 JOBSPEC 工作規格指定的行程傳送一個以
    SIGSPEC 訊號規格或 SIGNUM 訊號編號命名的訊號。如果沒有指定
    SIGSPEC 或 SIGNUM,那麼假定傳送 SIGTERM 訊號。
    
    選項:
      -s sig	SIG 是訊號名稱
      -n sig	SIG 是訊號編號
      -l	列出訊號名稱;如果參數後跟「-l」則被假設為訊號編號,
    	而相應的訊號名稱會被列出
    
    Kill 成為 shell 內建命令有兩個理由:它允許使用工作編號而不是行程識別碼,
    並且在可以建立的行程數上限達到時允許行程被砍除。
    
    結束狀態:
    回傳成功,除非使用了無效的選項或者有錯誤發生。設定和取消設定 shell 選項。
    
    變更每個 shell <選項名稱> 的設定。不帶選項參數時,
    顯示每個提供的 <選項名稱> 或所有 shell 選項 (如果沒有
    傳入任何 <選項名稱>) 和是否每個都有設定到的指示。
    
    選項:
      -o	限制 <選項名稱> 為定義用於「set -o」的選項
      -p	印出每個 shell 選項並標註它的狀態。
      -q	抑制輸出
      -s	啟用(設定)每個 <選項名稱> 選項
      -u	停用(取消設定)每個 <選項名稱> 選項
    
    結束狀態:
    如果 <選項名稱> 選項被啟用則回傳成功;如果是
    無效的選項或 <選項名稱> 被停用則失敗。設定變數的值和屬性。
    
    功能相同於「declare」。參見「help declare」。Shell 指令,符合關鍵字 `Shell 選項:
移位位置參數。
    
    重新命名位置參數 $N+1、$N+2 … 到 $1、$2 … 如果沒有指定 N,
    則假設為 1。
    
    結束狀態:
    回傳成功,除非 N 為負或者大於 $#。訊號 %d停止停止(信號)停止(tty 輸入)停止(tty 輸出)已停止(%s)時間格式:「%c」: 無效的格式字元終止郵件在 %s 已閱讀
有執行中的工作。
有停止的工作。
在法律許可的情況下特此明示,本軟體不提供任何擔保。這些 shell 指令是內部定義的。請輸入「help」以取得一個列表。
輸入「help 名稱」以得到有關函數「名稱」的更多資訊。
使用「info bash」來獲得關於 shell 的更多一般性資訊。
使用「man -k」或「info」來取得不在列表中指令的更多資訊。

名稱旁邊的星號(*)表示該指令被停用。

本軟體是自由軟體,您可以自由地變更和重新發布。輸入「%s -c "help set"」更多關於 shell 選項的訊息。
輸入「%s -c help」更多關於內建 shell 指令的訊息。
不明訊號 #%d未知錯誤不明狀態取消設定 shell 變數和函數的值和屬性。
    
    對每一個 <名稱>,刪除對應的變數或函數。
    
    選項:
      -f	將每個 <名稱> 視為函數
      -v	將每個 <名稱> 視為變數
      -n	將每個 <名稱> 視為名稱引用,只取消其本身而非其指向的變數
    
    不帶選項時,unset 首先嘗試取消設定一個變數,如果失敗,再嘗試取消設定一個函數。
    
    某些變數不可以被取消設定;參見「readonly」。
    
    結束狀態:
    回傳成功,除非使用了無效的選項或者 NAME 名稱為唯讀。緊急 I/O 狀況用法:	%s [GNU 長選項] [選項] …
	%s [GNU 長選項] [選項] 指令稿檔案 …
使用「%s」結束 shell。
使用「bashbug」指令通報程式錯誤。
使用者訊號 1使用者訊號 2等待工作完成並回傳結束狀態。
    
    等待以 ID 編號識別的行程-其中 ID 可以是行程編號或者工作規格—
    並回報其終止狀態。若未指定 ID,則等待所有的目前活躍子行程,
    並設定回傳狀態為 0。如果 ID 是工作規格,則等待工作管線中的
    所有行程。
    
    若指定了 -n 選項,則等待 ID 清單中的單一個工作;若未指定,則
    等待下一個工作完成,並回傳其結束狀態。
    
    如果指定了 -p 選項,則會將選項引數中命名的 VAR 變數,指定
    為回傳結束狀態之工作的行程或工作識別子。這個變數在指定前,
    會先進行 unset。這個僅在指定 -n 選項時有幫助。

    如果指定了 -f 選項且有啟用工作管理,則等待指定 ID 終止,
    而非等待其變更狀態。
    
    結束狀態:
    回傳最後一個 ID 行程的狀態;如果 ID 或指定之選項無效;
    或有指定 -n,shell 卻沒有要不等待 (unwaited) 的子行程,
    則回傳失敗。等待行程完成並且回傳結束狀態。
    
    等待指定行程並通報它的終止狀態。如果沒有提供 PID,則目前所有的活躍
    子行程都會被等待,並且回傳碼為零。PID 必須為行程識別碼。
    
    結束狀態:
    回傳行程 ID 的狀態;如果 PID 是無效的行程識別碼或者指定了無效的選項則失敗。已變更視窗寫入參數至標準輸出裝置。
    
    在標準輸出裝置上顯示 <參數> 和一個換列。
    
    選項:
      -n	不附加換列
    
    結束狀態:
    除非寫錯誤發生,否則回傳成功。將參數寫入標準輸出。
    
    在標準輸出上,顯示用空格分割的 ARG 參數後跟一個換列。
    
    選項:
      -n	不要追加換列
      -e	啟用下列反斜線逸出的解釋
      -E	顯式地抑制對於反斜線逸出的解釋
    
   「echo」對下列反斜線字元進行逸出:
      \a	警告(響鈴)
      \b	退格
      \c	抑制更多的輸出
      \e	逸出字元
      \f	換頁字元
      \n	換列
      \r	輸入鍵
      \t	橫向製表符
      \v	縱向製表符
      \\	反斜線
      \0nnn	以 NNN (八進位)為 ASCII 碼的字元。 NNN 可以是 0 到 3 個八進位數字
      \xHH	以 HH (十六進位)為值的八進位字元。HH 可以是一個或兩個十六進位數字
      \uHHHH	以十六進位 HHHH 為值的 Unicode 字元。
    		HHHH 可為一個到四個十六進位數字。
      \UHHHHHHHH 以十六進位 HHHHHHHH 為值的 Unicode 字元。
    		HHHHHHHH 可為一個到八個十六進位數字。
    
    結束狀態:
    回傳成功除非有寫入錯誤發生。您有郵件在 $_您有新郵件在 $_[ 參數… ][[ 表示式 ]]「%c」:不當的指令「%c」: 無效格式字元「%c」: 無效的符號狀態字元「%c」: 無效的符號狀態運算子「%c」: 無效的時間格式規格「%s」: 無法解除綁定「%s」: 無法在命令按鍵映射中解除綁定「%s」: 無效的別名「%s」: 無效的按鍵映射名「%s」:無效的引用變數名「%s」: 特殊內建「%s」: 缺少格式字元「%s」:不是一個 pid 或有效的工作規格「%s」:不是一個有效的識別符「%s」:不明函數名稱需要「)」需要「)」,得到 %s條件表示式需要「:」add_process: 行程識別碼 %5ld(%s) 標註為仍活著alias [-p] [名稱[=值] … ]all_local_variables: 目前作用域中沒有函數語境參數需要參數需要陣列變數支援嘗試指派給非變數陣列下標不正確不當的指令類型不當的連接器錯誤的跳轉錯誤的取代: 在 %s 中沒有閉合的「`」錯誤的取代: 在 %2$s 中沒有閉合的「%1$s」bash 官網:<http://www.gnu.org/software/bash>
bash_execute_unix_command: 無法為指令找到按鍵映射bg [工作規格 …]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpvsPSVX] [-m 按鍵映射] [-f 檔名] [-q 名稱] [-u 名稱] [-r 按鍵序列] [-x 按鍵序列:shell-指令] [按鍵序列:readline-函數 或 readline-指令]大括號展開:無法為 %s 分配記憶體大括號展開:為「%s」分配記憶體失敗break [n]錯誤:不當的表示式字組builtin [shell 內建命令 [參數 …]]caller [表示式]只能從函數或者原始指令稿「return」只能用在函數中無法為來自 fd %d 的 bash 輸入分配新的檔案描述符無法複製檔案描述符 %d 到檔案描述符 %d無法將命名管道 %s 做為檔案描述符 %d 複製無法在共享物件 %2$s 中找到 %1$s: %3$s無法為指令取代建立子行程無法為行程取代建立子行程無法為指令取代建立管道無法為行程取代建立管道無法開啟命名管道 %s 進 readline-無法開啟命名管道 %s 進行寫入無法開啟共享物件 %s: %s無法為檔案描述符 %d 重設無延遲模式無法同時設定和取消設定 shell 選項無法設定 GID 至 %d:有效的 GID %d無法設定終端行程群組(%d)無法設定 UID 至 %d:有效的 UID %d無法同時取消設定一個函數和一個變數無法開啟偵錯器;偵錯模式已停用無法暫停無法暫停登入 shell無法用「-f」產生函數最多能使用 -anrw 選項之一case 詞 in [模式 [| 模式]…) 指令 ;;]… esac子行程 setpgid (%ld 到 %ld)command [-pVv] 指令 [參數 …]指令取代:在輸入中忽略了空位元組command_substitute: 無法將管道複製為檔案描述符 1complete [-abcdefgjksuv] [-pr] [-DEI] [-o 選項] [-A 動作] [-G 全域模式] [-W 詞語列表] [-F 函數] [-C 指令] [-X 過濾模式] [-P 字首] [-S 字尾] [名稱 …]自動完成: 未找到函數「%s」compopt [-o|+o 選項] [-DEI] [名稱 …]需要二元條件運算子continue [n]coproc [名稱] 指令 [重定向]無法找到 /tmp,請建立cprintf:「%c」: 無效的格式字元目前declare [-aAfFgiIlnrtux] [name[=value] ...] 或 declare -p [-aAfFilnrtux] [name ...]刪除行程群組 %2$ld 中已停止的工作 %1$ddescribe_pid: %ld: 無此行程識別碼目錄堆疊為空目錄堆疊索引dirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]除 0動態載入不可用echo [-n] [參數 …]echo [-neE] [參數 …]空陣列變數名enable [-a] [-dnps] [-f 檔名] [名稱 …]錯誤,輸入的函數定義為「%s」eval [參數 …]eval:超出最大 eval 巢狀層數 (%d)exec [-cl] [-a 名稱] [指令 [參數 …]] [重定向 …]execute_coproc:coproc [%d:%s] 仍然存在exit [n]預期「)」指數小於 0需要表示式表示式遞迴層次超出範圍fc [-e 編輯器名] [-lnr] [起始] [終止] 或 fc -s [模式=取代串] [指令]fg [工作規格]檔案描述符超出範圍需要檔名參數for (( 表示式1; 表示式2; 表示式3 )); do 指令 ; donefor 名稱 [in 字詞 … ] ; do 指令 ; done產生的行程識別碼 %d 顯示為執行中的工作 %d格式解析問題: %sfree: 用已經釋放的區塊做為呼叫參數free: 用未分配的區塊做為呼叫參數free: 啟始和末尾區塊大小不一致free: 偵測到下限溢位;magic8 損壞free: 檢測到下限溢位;mh_nbytes 超出範圍function 名稱 { 指令 ; } 或 name () { 指令 ; }未來版本的 shell 會強制以算術取代求值getcwd: 無法存取上層目錄getopts 選項字串 名稱 [參數 …]hash [-lr] [-p 路徑名] [-dt] [名稱 …]已停用雜湊help [-dms] [模式 …]這個版本沒有可用的說明立即檔案在第 %d 列被檔案結束符分隔 (需要「%s」)history [-c] [-d 偏移量] [n] 或 history -anrw [檔名] 或 history -ps 參數 [參數…]歷史記錄位置歷史記錄規格命中	指令
預增符或預減符後應跟有識別符if 指令 ; then 指令 ; [ elif 指令 ; then 指令 ; ]… [ else 指令 ; ] fiinitialize_job_control: getpgrp 失敗initialize_job_control: 列規律initialize_job_control:背景中沒有工作控制initialize_job_control: setpgid無效的算術進位無效的基底%2$s 的 exportstr 中有無效的字元 %1$d無效的十六進位數字無效的整數常數無效數字無效的八進位數字無效訊號數字在不帶工作控制的情況下啟動了工作 %djob_spec [&]jobs [-lnprs] [工作規格 …] 或 jobs -x 指令 [參數]kill [-s 訊號規格 | -n 訊號編號 | -訊號規格] 行程識別碼 | 工作規格 … 或 kill -l [訊號規格]最後的指令:%s
let 參數 [參數 …]limit第 %d 列:未啟用列編輯為 %s 載入函式時回傳錯誤 (%d):尚未載入local [option] 名稱[=值] …登出
logout [n]迴圈計數make_here_document:不當的指示類型 %dmake_local_variable: 目前作用域中沒有函數語境make_redirection:重新導向指示「%d」超出範圍malloc: 空閒串列中的區塊損壞malloc: 主張失敗: %s
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]超過此處檔案上限最大值遷移行程至另一個 CPU缺少「)」缺少「]」使用了 \x 但缺少十六進位數字使用了 \%c 但缺少萬國碼數字不支援網路操作%s 的 exportstr 中沒有「=」%2$s 中沒有閉合的「%1$c」未找到指令沒有與「%s」符合的說明主題。嘗試「help help」或「man -k %s」或「info %s」。沒有工作控制此 shell 中無工作控制無符合: %s無其他目錄其他選項不能與「-x」同時使用目前未執行自動完成功能不是登入 shell: 使用「exit」空的目錄八進位數字僅在「for」,「while」, 或者「until」迴圈中有意義管道錯誤pop_scope: shell_variables 的前端不是臨時環境作用域pop_var_context: shell_variables 的前端不是函數語境pop_var_context: 沒有 global_variables 語境popd [-n] [+N | -N]即將停止電源已在互動式 shell 中忽略美化輸出模式print_command: 錯誤的條件連接符「%d」printf [-v var] 格式 [參數]progcomp_insert: %s: 空的自動完成規格programmable_completion:%s:可能重試迴圈程式設計錯誤pushd [-n] [+N | -N | 目錄]pwd [-LP]readarray [-d 分割符號] [-n 計數] [-O 起始序號] [-s 計數] [-t] [-u fd] [-C 回呼] [-c 定量] [陣列]readonly [-aAf] [名稱[=值] …] 或 readonly -prealloc: 用未分配的區塊做為呼叫參數realloc: 啟始和末尾區塊大小不一致realloc: 偵測到下限溢位;magic8 損壞realloc: 檢測到下限溢位;mh_nbytes 超出範圍遞迴堆疊下限溢位重定向錯誤: 無法複製檔案描述符register_alloc: %p 在表中顯示為已分配?
register_alloc: 分配表已經充滿了 FIND_ALLOC?
register_free: %p 在表中顯示為已釋放?
受限的return [n]run_pending_traps: trap_list[%d] 中的錯誤值: %prun_pending_traps:訊號處理是 SIG_DFL,resending %d (%s) to myselfsave_bash_input: 已經存在提供給新 fd %d 的緩衝區select NAME [in 字詞 … ;] do 指令 ; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]shell 層次 (%d) 太高,重設為 1shell_getc: shell_input_line_size (%zu) 超過 SIZE_MAX (%lu):列被截斷shift [n]位移計數shopt [-pqsu] [-o] [選項名 …]sigprocmask:%d:無效操作start_pipeline: 行程群組管道suspend [-f]語法錯誤語法錯誤,在有條件的表示式條件表示式中有語法錯誤: 未預期的字組「%s」「%s」附近有語法錯誤未預期的字組「%s」附近有語法錯誤語法錯誤:非預期的「%s」語法錯誤:「((%s))」語法錯誤:「;」意外語法錯誤:需要算式語法錯誤: 未預期的檔案結尾系統即將崩潰test [表示式]time [-p] 管道太多參數捕捉處理函式:達到最大捕捉處理函式等級 (%d)trap_handler:不當的訊號 %dtype [-afptP] 名稱 [名稱 …]typeset [-aAfFgiIlnrtux] name[=value] ... 或 typeset -p [-aAfFilnrtux] [name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limit]umask [-p] [-S] [模式]unalias [-a] 名稱 [名稱 …]尋找「]]」時遇到了未預期的檔案結束符尋找符合的「%c」時遇到了未預期的檔案結束符尋找符合的「)」時遇到了未預期的檔案結束符二元條件運算子使用了未預期的參數「%s」一元條件運算子使用了未預期的參數「%s」二元條件運算子使用了未預期的參數一元條件運算子使用了未預期的參數條件指令中有未預期的字組 %d條件指令中有未預期的字組「%c」條件指令中有未預期的字組「%s」未預期的字組「%s」,需要二元條件運算子未預期的字組「%s」,需要「)」不明不明指令錯誤unset [-f] [-v] [-n] [名稱 …]until COMMANDS; do COMMANDS-2; done數值太大不可為算術進位的基底variables - 一些 shell 變數的名稱和含義wait [-fn] [-p 變數] [編號 …]wait [行程識別碼 …]wait: 行程識別碼 %ld 不是目前 shell 的子行程wiat_for: 沒有行程 %ld 的紀錄wait_for_job: 工作 %d 已停止waitchld: 開啟 WNOHANG 以避免無限阻塞警告:警告:-C 選項可能無法按預期工作警告:-F 選項可能無法按預期工作while COMMANDS; do COMMANDS-2; donextrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: 無效的檔案描述符xtrace_set: 空的檔案指標{ 指令 ; }