File: pt_BR.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 (3112 lines) | stat: -rw-r--r-- 190,756 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
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
eD5l&@3*A3l3<3$3
333
4
4,4A4X4	n4x44444455 /5P5d5(5/5;5$6::6u66(6'6"67(7)E7o7377&7&7/!8/Q88.8+88/949E9c9"9999-9:%:B:(S:|::::::);8;W;u;;;;;; <!%<G<]<,w<< <<+<
=0)='Z=.==0==>,>?>O>b>y>>>>
>>?&+?R?h?/???)?@+@3:@n@@@@&@@@A
A!A@A _A9A#AAABBHEBIRIbIFnIJJJJ	J	J%K'Q
;Q[1\m2\]2]_]aYcT2gimhq+w'z||?j}r__g̡4u'v|g
F[v?Ƕ )0	@JSg	{N۷J],+=XfDQb	P@x
"g<5quFFNLqy>sv
Z|ID$%%	%g	&q*y******W,
,,,,5,O-Bc.x.B6Eb66
66}6V9Xj99*9
:
:(:>l@{@eAF#F
;FFFWFiF%F$F'FF%G5GNG.hGGG!GGH,H9H'PH0xHH9HIII%0I.VI4I)II$J)J=J
NJ\JlJ&uJ'J3J9J2K6DK6{KK.FL:uL3L	LL!M
)M37MkM=MMM
M)N2N'RNzNN&NN*N*O)2O)\OOO%O%O OP)PHP-TP#P1P&P&P&&Q5MQ.QQQ!Q!R:"R]RzR RR0R1R+SS#rT(T$TT$T#U':UbUSjU.UUV"V8V)OV
yVVVVVV,V%W!DW,fW"W!WW.W?X+VXXXX1XX#X@Y
XYfYY-Y,Y'Y!Z<Z.LZ,{Z&Z*Z0Z6+[Gb[:[P[(6\ _\)\\\"\?\T8]]]
]8]V]&R^'y^4^^^_(_D_\_s_____#_`"`@`5M`O````	`a5 aVava
~a
a+a9a;a$6b[bdyb$bc"c.c:cSc qccccHcd,dIdVd"id+dddd4d
%eD0e?ue,eee2
f!@f"bf"f0fff	gpg
gfg1g/%h)Uh-h3hh&h2"i5Ui,i
i"i
i1iI#j4mjj.j>j)'kNQk	kk k"k%k l
:lHlUl&bl=ll'lGmNmlmm,m$mAm<4nqnnnn&n6no3oQQo*ooo%p.(p-Wp7p6p2p1'q*Yq,q,q;q#r>rFr\r#|rr6rr
s*s"Gsjs6s	s-s-s#'tKt'Wt'ttttPvvBw'Uw
}www
w'www'x	9xCx"Wx!zx+xxx*y/y"Cyfy&~y1y:y?z'Rz<zzz(z5z/+{0[{{{7{ |5!|W|:p|1|9|9}Q}:m}4}}2}#)~7M~~'~~~9W"w2;R$p5 ˀ)5Uk&&ǁ-98Y-Ղ8&@5.v:D,<iՄ':$X}!)҅ (;F!'3̆ !G1y	ԇ1އ%BRq#4+/ALN0@Qhd)͒$ EXu"Cf	1)
ʨcWD+GT־+HB
M;=C8
pH+gn$#"E
Y
Fd&#@LS[2	P t!"q#$A$_,.`#.X99a@n{@CG-[HJMTP78RpSOXUOUeU^WCY
)[4[K[^	yb
k{nqc6Qc

+60'	X*b6ÔxIsjN(Qwɟ$آki,ӣ
Ѫߪ۫#(
FQb$z,+̱3&,,S'&:ϲ$
#/_S&#ڳ('2P@	)8D;}.#=Jg564*L_66-8Ը?
7M	?)Ϲ
W&_\#"84<m@'7(`ByE::=x((н-%'*Mx9H¾N/Z6/O?A'*(=Qn 8RR))&&)3+]-S6@H +
-J^t+#4 K%l=E+%QZg1}0KD%Sy-.X Hi11?8$?]6PC%Qi< (B]$wHV<Tr@V&+BEn.-Ll!%./
^7l`,
3!>G` 
4@ Ea#j+U !!;X[r'+(C=l%
<+O:K7"8<&u$"="8	Sp]l1K4}B;B1"t1/>,8e,q
7]K?$1?5"MX	%%(
6Ugt)@1\A .)(FRA&4M[ Q+:f}5DC<Y;76
*A,l,="'4Q#q0?#52&h&:55/#e'.$
Jd}s./J?	SF<i\3Kh:nQ0#`v
NRM~UL]=H(&Xu|dr4H&!'O1P^WS aN$ Cm
1*=5E	`1%97tYcajmc/["+V];H*-QL,xW6I-2|3y\YPGh)eo+<@?Pl7eb,n";7t
8^8ZN\V[MFXgRT_Ip,:F@^Ul62BD]!Zp GUA/:If4K2;9s=[&V>qM_G0%K>{d)TTSEw$byB-rL#Zu}v"gD#A+b5?

94QacEq_@'e`3.Jz.O{(wOA05z(BkiC%~k	6f<)8>YxR*!X'C$DWjotimed 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 ! PIPELINE$%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: builtin names may not contain slashes%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: ignoring function definition attempt%s: illegal option -- %c
%s: integer expected%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 job specification%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: job specification requires leading `%%'%s: line %d: %s: maximum function nesting level exceeded (%d)%s: maximum nameref depth (%d) exceeded%s: maximum source nesting level exceeded (%d)%s: missing separator%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)
++: assignment requires lvalue--: assignment requires lvalue. [-p path] filename [arguments]/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 limitChange the shell working directory.
    
    Change the current directory to DIR.  The default DIR is the value of the
    HOME shell variable. If DIR is "-", it is converted to $OLDPWD.
    
    The variable CDPATH defines the search path for the directory containing
    DIR.  Alternative directory names in CDPATH are separated by a colon (:).
    A null directory name is the same as the current directory.  If DIR begins
    with a slash (/), then CDPATH is not used.
    
    If the directory is not found, and the shell option `cdable_vars' is set,
    the word is assumed to be  a variable name.  If that variable has a value,
    its value is used for DIR.
    
    Options:
      -L	force symbolic links to be followed: resolve symbolic
    		links in DIR after processing instances of `..'
      -P	use the physical directory structure without following
    		symbolic links: resolve symbolic links in DIR before
    		processing instances of `..'
      -e	if the -P option is supplied, and the current working
    		directory cannot be determined successfully, exit with
    		a non-zero status
      -@	on systems that support it, present a file with extended
    		attributes as a directory containing the file attributes
    
    The default is to follow symbolic links, as if `-L' were specified.
    `..' is processed by removing the immediately previous pathname component
    back to a slash or the beginning of DIR.
    
    Exit Status:
    Returns 0 if the directory is changed, and if $PWD is set successfully when
    -P is used; non-zero otherwise.Child 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.
ContinueCopyright (C) 2025 Free Software Foundation, Inc.Create 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 local variables.
    
    Create a local variable called NAME, and give it VALUE.  OPTION can
    be any option accepted by `declare'.
    
    If any NAME is "-", local saves the set of shell options and restores
    them when the function returns.
    
    Local variables can only be used within a function; they are visible
    only to the function where they are defined and its children.
    
    Exit Status:
    Returns success unless an invalid option is supplied, a variable
    assignment error occurs, or the shell is not executing a function.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 execute commands from the history list.
    
    fc is used to list or edit and re-execute commands from the history list.
    FIRST and LAST can be numbers specifying the range, or FIRST can be a
    string, which means the most recent command beginning with that
    string.
    
    Options:
      -e ENAME	select which editor to use.  Default is FCEDIT, then EDITOR,
    		then vi
      -l 	list lines instead of editing
      -n	omit line numbers when listing
      -r	reverse the order of the lines (newest listed first)
    
    With the `fc -s [pat=rep ...] [command]' format, COMMAND is
    re-executed after the substitution OLD=NEW is performed.
    
    A useful alias to use with this is r='fc -s', so that typing `r cc'
    runs the last command beginning with `cc' and typing `r' re-executes
    the last command.
    
    The history builtin also operates on the history list.
    
    Exit Status:
    Returns success or status of executed command; non-zero if an error occurs.Display or manipulate the history list.
    
    Display the history list with line numbers, prefixing each modified
    entry with a `*'.  An argument of N lists only the last N entries.
    
    Options:
      -c	clear the history list by deleting all of the entries
      -d offset	delete the history entry at position OFFSET. Negative
    		offsets count back from the end of the history list
      -d start-end	delete the history entries beginning at position START
    		through position END.
    
      -a	append history lines from this session to the history file
      -n	read all history lines not already read from the history file
    		and append them to the history list
      -r	read the history file and append the contents to the history
    		list
      -w	write the current history to the history file
    
      -p	perform history expansion on each ARG and display the result
    		without storing it in the history list
      -s	append the ARGs to the history list as a single entry
    
    If FILENAME is given, it is used as the history file.  Otherwise,
    if HISTFILE has a value, that is used. If FILENAME is not supplied
    and HISTFILE is unset or null, the -a, -n, -r, and -w options have
    no effect and return success.
    
    The fc builtin also operates on the history list.
    
    If the HISTTIMEFORMAT variable is set and not null, its value is used
    as a format string for strftime(3) to print the time stamp associated
    with each displayed history entry.  No time stamps are printed otherwise.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.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 possible completions depending on the options.
    
    Intended to be used from within a shell function generating possible
    completions.  If the optional WORD argument is present, generate matches
    against WORD.
    
    If the -V option is supplied, store the possible completions in the indexed
    array VARNAME instead of printing them to the standard output.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.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 instructionEnable and disable shell builtins.
    
    Enables and disables builtin shell commands.  Disabling allows you to
    execute a disk command which has the same name as a shell builtin
    without using a full pathname.
    
    Options:
      -a	print a list of builtins showing whether or not each is enabled
      -n	disable each NAME or display a list of disabled builtins
      -p	print the list of builtins in a reusable format
      -s	print only the names of Posix `special' builtins
    
    Options controlling dynamic loading:
      -f	Load builtin NAME from shared object FILENAME
      -d	Remove a builtin loaded with -f
    
    Without options, each NAME is enabled.
    
    On systems with dynamic loading, the shell variable BASH_LOADABLES_PATH
    defines a search path for the directory containing FILENAMEs that do
    not contain a slash. It may include "." to force a search of the current
    directory.
    
    To use the `test' found in $PATH instead of the shell builtin
    version, type `enable -n test'.
    
    Exit Status:
    Returns success unless NAME is not a shell builtin or an error occurs.Evaluate 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 PIPELINE, which can be a simple command, and negate PIPELINE's
    return status.
    
    Exit Status:
    The logical negation of PIPELINE's return status.Execute a simple command or display information about commands.
    
    Runs COMMAND with ARGS suppressing  shell function lookup, or display
    information about the specified COMMANDs.  Can be used to invoke commands
    on disk when a function with the same name exists.
    
    Options:
      -p    use a default value for PATH that is guaranteed to find all of
            the standard utilities
      -v    print a single word indicating the command or filename that
            invokes COMMAND
      -V    print a more verbose description of each COMMAND
    
    Exit Status:
    Returns exit status of COMMAND, or failure if COMMAND is not found.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 commands from a file in the current shell.
    
    Read and execute commands from FILENAME in the current shell. If the
    -p option is supplied, the PATH argument is treated as a colon-
    separated list of directories to search for FILENAME. If -p is not
    supplied, $PATH is searched to find FILENAME. If any ARGUMENTS are
    supplied, they become the positional parameters when FILENAME is executed.
    
    Exit Status:
    Returns the status of the last command executed in FILENAME; fails if
    FILENAME cannot be read.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 exceptionFormats and prints ARGUMENTS under control of the FORMAT.
    
    Options:
      -v var	assign the output to shell variable VAR rather than
    		display it on the standard output
    
    FORMAT is a character string which contains three types of objects: plain
    characters, which are simply copied to standard output; character escape
    sequences, which are converted and copied to the standard output; and
    format specifications, each of which causes printing of the next successive
    argument.
    
    In addition to the standard format characters csndiouxXeEfFgGaA described
    in printf(3), printf interprets:
    
      %b	expand backslash escape sequences in the corresponding argument
      %q	quote the argument in a way that can be reused as shell input
      %Q	like %q, but apply any precision to the unquoted argument before
    		quoting
      %(fmt)T	output the date-time string resulting from using FMT as a format
    	        string for strftime(3)
    
    The format is re-used as necessary to consume all of the arguments.  If
    there are fewer arguments than the format requires,  extra format
    specifications behave as if a zero value or null string, as appropriate,
    had been supplied.
    
    Exit Status:
    Returns success unless an invalid option is given or a write or assignment
    error occurs.GNU 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.Modify shell resource limits.
    
    Provides control over the resources available to the shell and processes
    it creates, on systems that allow such control.
    
    Options:
      -S	use the `soft' resource limit
      -H	use the `hard' resource limit
      -a	all current limits are reported
      -b	the socket buffer size
      -c	the maximum size of core files created
      -d	the maximum size of a process's data segment
      -e	the maximum scheduling priority (`nice')
      -f	the maximum size of files written by the shell and its children
      -i	the maximum number of pending signals
      -k	the maximum number of kqueues allocated for this process
      -l	the maximum size a process may lock into memory
      -m	the maximum resident set size
      -n	the maximum number of open file descriptors
      -p	the pipe buffer size
      -q	the maximum number of bytes in POSIX message queues
      -r	the maximum real-time scheduling priority
      -s	the maximum stack size
      -t	the maximum amount of cpu time in seconds
      -u	the maximum number of user processes
      -v	the size of virtual memory
      -x	the maximum number of file locks
      -P	the maximum number of pseudoterminals
      -R	the maximum time a real-time process can run before blocking
      -T	the maximum number of threads
    
    Not all options are available on all platforms.
    
    If LIMIT is given, it is the new value of the specified resource; the
    special LIMIT values `soft', `hard', and `unlimited' stand for the
    current soft limit, the current hard limit, and no limit, respectively.
    Otherwise, the current value of the specified resource is printed.  If
    no option is given, then -f is assumed.
    
    Values are in 1024-byte increments, except for -t, which is in seconds;
    -p, which is in increments of 512 bytes; -R, which is in microseconds;
    -b, which is in bytes; and -e, -i, -k, -n, -q, -r, -u, -x, and -P,
    which accept unscaled values.
    
    When in posix mode, values supplied with -c and -f are in 512-byte
    increments.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.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 a line from the standard input and split it into fields.
    
    Reads a single line from the standard input, or from file descriptor FD
    if the -u option is supplied.  The line is split into fields as with word
    splitting, and the first word is assigned to the first NAME, the second
    word to the second NAME, and so on, with any leftover words assigned to
    the last NAME.  Only the characters found in $IFS are recognized as word
    delimiters. By default, the backslash character escapes delimiter characters
    and newline.
    
    If no NAMEs are supplied, the line read is stored in the REPLY variable.
    
    Options:
      -a array	assign the words read to sequential indices of the array
    		variable ARRAY, starting at zero
      -d delim	continue until the first character of DELIM is read, rather
    		than newline
      -e	use Readline to obtain the line
      -E	use Readline to obtain the line and use the bash default
    		completion instead of Readline's default completion
      -i text	use TEXT as the initial text for Readline
      -n nchars	return after reading NCHARS characters rather than waiting
    		for a newline, but honor a delimiter if fewer than
    		NCHARS characters are read before the delimiter
      -N nchars	return only after reading exactly NCHARS characters, unless
    		EOF is encountered or read times out, ignoring any
    		delimiter
      -p prompt	output the string PROMPT without a trailing newline before
    		attempting to read
      -r	do not allow backslashes to escape any characters
      -s	do not echo input coming from a terminal
      -t timeout	time out and return failure if a complete line of
    		input is not read within TIMEOUT seconds.  The value of the
    		TMOUT variable is the default timeout.  TIMEOUT may be a
    		fractional number.  If TIMEOUT is 0, read returns
    		immediately, without trying to read any data, returning
    		success only if input is available on the specified
    		file descriptor.  The exit status is greater than 128
    		if the timeout is exceeded
      -u fd	read from file descriptor FD instead of the standard input
    
    Exit Status:
    The return code is zero, unless end-of-file is encountered, read times out
    (in which case it's greater than 128), a variable assignment error occurs,
    or an invalid file descriptor is supplied as the argument to -u.Read 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.Returns 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 Readline key bindings and variables.
    
    Bind a key sequence to a Readline function or a macro, or set a
    Readline variable.  The non-option argument syntax is equivalent to
    that found in ~/.inputrc, but must be passed as a single argument:
    e.g., bind '"\C-x\C-r": re-read-init-file'.
    
    Options:
      -m  keymap         Use KEYMAP as the keymap for the duration of this
                         command.  Acceptable keymap names are emacs,
                         emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,
                         vi-command, and vi-insert.
      -l                 List names of functions.
      -P                 List function names and bindings.
      -p                 List functions and bindings in a form that can be
                         reused as input.
      -S                 List key sequences that invoke macros and their values
      -s                 List key sequences that invoke macros and their values
                         in a form that can be reused as input.
      -V                 List variable names and values
      -v                 List variable names and values in a form that can
                         be reused as input.
      -q  function-name  Query about which keys invoke the named function.
      -u  function-name  Unbind all keys which are bound to the named function.
      -r  keyseq         Remove the binding for KEYSEQ.
      -f  filename       Read key bindings from FILENAME.
      -x  keyseq:shell-command	Cause SHELL-COMMAND to be executed when
    				KEYSEQ is entered.
      -X                 List key sequences bound with -x and associated commands
                         in a form that can be reused as input.
    
    If arguments remain after option processing, the -p and -P options treat
    them as readline command names and restrict output to those names.
    
    Exit Status:
    bind returns 0 unless an unrecognized 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 export attribute for shell variables.
    
    Marks each NAME for automatic export to the environment of subsequently
    executed commands.  If VALUE is supplied, assign VALUE before exporting.
    
    Options:
      -f	refer to shell functions
      -n	remove the export property from each NAME
      -p	display a list of all exported variables or functions
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Set or unset values of shell options and positional parameters.
    
    Change the value of shell attributes and positional parameters, or
    display the names and values of shell variables.
    
    Options:
      -a  Mark variables which are modified or created for export.
      -b  Notify of job termination immediately.
      -e  Exit immediately if a command exits with a non-zero status.
      -f  Disable file name generation (globbing).
      -h  Remember the location of commands as they are looked up.
      -k  All assignment arguments are placed in the environment for a
          command, not just those that precede the command name.
      -m  Job control is enabled.
      -n  Read commands but do not execute them.
      -o option-name
          Set the variable corresponding to option-name:
              allexport    same as -a
              braceexpand  same as -B
              emacs        use an emacs-style line editing interface
              errexit      same as -e
              errtrace     same as -E
              functrace    same as -T
              hashall      same as -h
              histexpand   same as -H
              history      enable command history
              ignoreeof    the shell will not exit upon reading EOF
              interactive-comments
                           allow comments to appear in interactive commands
              keyword      same as -k
              monitor      same as -m
              noclobber    same as -C
              noexec       same as -n
              noglob       same as -f
              nolog        currently accepted but ignored
              notify       same as -b
              nounset      same as -u
              onecmd       same as -t
              physical     same as -P
              pipefail     the return value of a pipeline is the status of
                           the last command to exit with a non-zero status,
                           or zero if no command exited with a non-zero status
              posix        change the behavior of bash where the default
                           operation differs from the Posix standard to
                           match the standard
              privileged   same as -p
              verbose      same as -v
              vi           use a vi-style line editing interface
              xtrace       same as -x
      -p  Turned on whenever the real and effective user ids do not match.
          Disables processing of the $ENV file and importing of shell
          functions.  Turning this option off causes the effective uid and
          gid to be set to the real uid and gid.
      -t  Exit after reading and executing one command.
      -u  Treat unset variables as an error when substituting.
      -v  Print shell input lines as they are read.
      -x  Print commands and their arguments as they are executed.
      -B  the shell will perform brace expansion
      -C  If set, disallow existing regular files to be overwritten
          by redirection of output.
      -E  If set, the ERR trap is inherited by shell functions.
      -H  Enable ! style history substitution.  This flag is on
          by default when the shell is interactive.
      -P  If set, do not resolve symbolic links when executing commands
          such as cd which change the current directory.
      -T  If set, the DEBUG and RETURN traps are inherited by shell functions.
      --  Assign any remaining arguments to the positional parameters.
          If there are no remaining arguments, the positional parameters
          are unset.
      -   Assign any remaining arguments to the positional parameters.
          The -x and -v options are turned off.
    
    If -o is supplied with no option-name, set prints the current shell
    option settings. If +o is supplied with no option-name, set prints a
    series of set commands to recreate the current option settings.
    
    Using + rather than - causes these flags to be turned off.  The
    flags can also be used upon invocation of the shell.  The current
    set of flags may be found in $-.  The remaining n ARGs are positional
    parameters and are assigned, in order, to $1, $2, .. $n.  If no
    ARGs are given, all shell variables are printed.
    
    Exit Status:
    Returns success unless an invalid option is given.Set variable values and attributes.
    
    A synonym for `declare'.  See `help declare'.Set variable values and attributes.
    
    Declare variables and give them attributes.  If no NAMEs are given,
    display the attributes and values of all variables.
    
    Options:
      -f	restrict action or display to function names and definitions
      -F	restrict display to function names only (plus line number and
    		source file when debugging)
      -g	create global variables when used in a shell function; otherwise
    		ignored
      -I	if creating a local variable, inherit the attributes and value
    		of a variable with the same name at a previous scope
      -p	display the attributes and value of each NAME
    
    Options which set attributes:
      -a	to make NAMEs indexed arrays (if supported)
      -A	to make NAMEs associative arrays (if supported)
      -i	to make NAMEs have the `integer' attribute
      -l	to convert the value of each NAME to lower case on assignment
      -n	make NAME a reference to the variable named by its value
      -r	to make NAMEs readonly
      -t	to make NAMEs have the `trace' attribute
      -u	to convert the value of each NAME to upper case on assignment
      -x	to make NAMEs export
    
    Using `+' instead of `-' turns off the given attribute, except for a,
    A, and r.
    
    Variables with the integer attribute have arithmetic evaluation (see
    the `let' command) performed when the variable is assigned a value.
    
    When used in a function, `declare' makes NAMEs local, as with the `local'
    command.  The `-g' option suppresses this behavior.
    
    Exit Status:
    Returns success unless an invalid option is supplied or a variable
    assignment error occurs.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 %dSpecify how arguments are to be completed by Readline.
    
    For each NAME, specify how arguments are to be completed.  If no options
    or NAMEs are supplied, display existing completion specifications in a way
    that allows them to be reused as input.
    
    Options:
      -p	print existing completion specifications in a reusable format
      -r	remove a completion specification for each NAME, or, if no
    		NAMEs are supplied, all completion specifications
      -D	apply the completions and actions as the default for commands
    		without any specific completion defined
      -E	apply the completions and actions to "empty" commands --
    		completion attempted on a blank line
      -I	apply the completions and actions to the initial (usually the
    		command) word
    
    When completion is attempted, the actions are applied in the order the
    uppercase-letter options are listed above. If multiple options are supplied,
    the -D option takes precedence over -E, and both take precedence over -I.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.StoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stopped(%s)Suspend shell execution.
    
    Suspend the execution of this shell until it receives a SIGCONT signal.
    Unless forced, login shells and shells without job control cannot be
    suspended.
    
    Options:
      -f	force the suspend, even if the shell is a login shell or job
    		control is not enabled.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.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.Trap signals and other events.
    
    Defines and activates handlers to be run when the shell receives signals
    or other conditions.
    
    ACTION is a command to be read and executed when the shell receives the
    signal(s) SIGNAL_SPEC.  If ACTION is absent (and a single SIGNAL_SPEC
    is supplied) or `-', each specified signal is reset to its original
    value.  If ACTION is the null string each SIGNAL_SPEC is ignored by the
    shell and by the commands it invokes.
    
    If a SIGNAL_SPEC is EXIT (0) ACTION is executed on exit from the shell.
    If a SIGNAL_SPEC is DEBUG, ACTION is executed before every simple command
    and selected other commands. If a SIGNAL_SPEC is RETURN, ACTION is
    executed each time a shell function or a script run by the . or source
    builtins finishes executing.  A SIGNAL_SPEC of ERR means to execute ACTION
    each time a command's failure would cause the shell to exit when the -e
    option is enabled.
    
    If no arguments are supplied, trap prints the list of commands associated
    with each trapped signal in a form that may be reused as shell input to
    restore the same signal dispositions.
    
    Options:
      -l	print a list of signal names and their corresponding numbers
      -p	display the trap commands associated with each SIGNAL_SPEC in a
    		form that may be reused as shell input; or for all trapped
    		signals if no arguments are supplied
      -P	display the trap commands associated with each SIGNAL_SPEC. At least
    		one SIGNAL_SPEC must be supplied. -P and -p cannot be used
    		together.
    
    Each SIGNAL_SPEC is either a signal name in <signal.h> or a signal number.
    Signal names are case insensitive and the SIG prefix is optional.  A
    signal may be sent to the shell with "kill -signal $$".
    
    Exit Status:
    Returns success unless a SIGSPEC is invalid or an invalid option is given.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 scopeambiguous redirectargumentargument expectedarithmetic syntax error in expressionarithmetic syntax error in variable assignmentarithmetic syntax error: invalid arithmetic operatorarithmetic syntax error: operand expectedarray variable support requiredattempted assignment to non-variablebad array subscriptbad command typebad connectorbad interpreterbad 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 elementsbrace 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 assign fd to variablecannot change localecannot createcannot create temp file for here-documentcannot duplicate fd %d to fd %dcannot duplicate named pipe %s as fd %dcannot executecannot execute binary filecannot find %s in shared object %s: %scannot get limitcannot make child for command substitutioncannot make child for process substitutioncannot make pipe for command substitutioncannot make pipe for process substitutioncannot modify limitcannot opencannot open named pipe %s for readingcannot open named pipe %s for writingcannot open shared object %s: %scannot open temp filecannot overwrite existing filecannot readcannot redirect standard input from /dev/nullcannot 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 ;;]... esaccd [-L|[-P [-e]]] [-@] [dir]child setpgid (%ld to %ld)command [-pVv] command [arg ...]command not foundcommand substitution: ignored null byte in inputcommand_substitute: cannot duplicate pipe as fd 1compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]complete [-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 nameempty filenameenable [-a] [-dnps] [-f filename] [name ...]error creating buffered streamerror getting terminal attributeserror importing function definition for `%s'error retrieving current directoryerror setting terminal attributeseval [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 0export [-fn] [name[=value] ...] or export -p [-f]expression 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: %sframe not foundfree: 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 ; }function_substitute: cannot duplicate anonymous file as standard outputfunction_substitute: cannot open anonymous file for outputfuture 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 file descriptorinvalid glob sort typeinvalid hex numberinvalid integer constantinvalid numberinvalid octal numberinvalid regular expression `%s'invalid regular expression `%s': %sinvalid 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]read [-Eers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]read errorreadarray [-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?
restrictedrestricted: cannot redirect outputreturn [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 %dscript file read errorselect 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 operationsource [-p path] filename [arguments]start_pipeline: pgrp pipestring lengthsuspend [-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 near unexpected token `%s' while looking for matching `%c'syntax error: `%s' unexpectedsyntax error: `((%s))'syntax error: `;' unexpectedsyntax error: arithmetic expression requiredsyntax error: unexpected end of filesyntax error: unexpected end of file from `%s' command on line %dsyntax error: unexpected end of file from command on line %dsystem crash imminenttest [expr]time [-p] pipelinetoo many argumentstrap [-Plp] [[action] signal_spec ...]trap 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; donewrite errorxtrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: invalid file descriptorxtrace_set: NULL file pointer{ COMMANDS ; }Project-Id-Version: bash 5.3-rc2
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2025-06-03 14:03-0300
Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>
Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>
Language: pt_BR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n > 1);
X-Generator: Gtranslator 48.0
X-Bugs: Report translation errors to the Language-Team address.
tempo limite de espera excedido aguardando entrada: fim automático da sessão
	-%s ou -o opção
	-ilrsD or -c comando ou -O opção_shopt		(somente para chamada)

malloc: %s:%d: asserção remendada
  (wd: %s) (imagem do núcleo gravada) linha ! PIPELINE$%s: impossível atribuir desta maneira%c%c: opção inválida%s pode ser chamado via %s possui a string de exportação nula%s é %s
%s é uma função
%s é um comando interno do shell
%s é uma palavra-chave do shell
%s é um comando interno especial do shell
%s está apelidada para `%s'
%s está na tabela hash (%s)
%s não está associada a qualquer tecla.
%s fora dos limites%s%s%s: %s (token de erro é "%s")%s: %s fora dos limites%s: %s: impossível abrir como ARQUIVO%s: %s: valor de compatibilidade fora dos limites%s: %s: valor inválido para rastrear descritor de arquivo%s: %s: deve-se usar subscrito ao atribuir um array associativo%s: %s:%d: impossível alocar %lu bytes%s: %s:%d: impossível alocar %lu bytes (%lu bytes alocados)%s: É um diretório%s: especificação de trabalho ambígua%s: argumentos devem ser IDs de trabalhos ou processo%s: atribuindo inteiro para referência de nome%s: especificação de caminho de rede inválida%s: substituição incorreta%s: esperava operador binário%s: nomes de comandos internos não podem conter barras%s: impossível alocar %lu bytes%s: impossível alocar %lu bytes (%lu bytes alocados)%s: impossível atribuir%s: impossível atribuir uma lista a um membro de um array%s: impossível atribuir a índice não numérico%s: impossível converter array associativo para indexado%s: impossível converter array indexado para associativo%s: impossível excluir: %s%s: impossível destruir variáveis de array desta maneira%s: impossível: o arquivo requerido não encontrado%s: impossível exportar%s: impossível herdar valor de tipo incompatível%s: impossível remover definição%s: impossível remover definição: %s somente-leitura%s referência circular de nome%s: comando dinâmico já foi carregado%s: erro de expressão
%s: arquivo é muito grande%s: arquivo não encontrado%s: primeiro caractere não-espaço em branco não é `"'%s: tabela de hash está vazia
%s: expansão do histórico falhou%s: máquina desconhecida%s: ignorando tentativa de definição da função%s: opção ilegal -- %c
%s: esperava número inteiro%s: nome de ação inválido%s argumento inválido%s: origem do array inválido%s: quantidade de chamadas inválida%s: especificação de descritor de arquivo inválida%s: expansão indireta inválida%s: especificação de trabalho inválida%s: argumento limite inválido%s: número de linhas inválido%s: opção inválida%s: nome de opção inválido%s: serviço inválido%s: nome de opção de shell inválido%s: especificação de sinal inválida%s: especificação de tempo limite inválida%s: marca de tempo inválida%s: nome de variável inválido%s: nome de variável inválido para referência de nome%s: é um diretório%s: o trabalho %d já está em plano de fundo%s: o trabalho terminou%s: a especificação de trabalho requer `%%' no início%s, linha %d: %s: excedido o nível máximo de aninhamento de avaliação (%d)%s: excedido o tamanho máximo de nameref (%d)%s: excedido o nível máximo de aninhamento de fonte (%d)%s: faltando separador%s: referência a si próprio da variável nameref não é permitido%s: nenhuma especificação de completação%s: nenhum trabalho atual%s: nenhum controle de trabalho%s: trabalho não existe%s: não é uma função%s: não é um arquivo comum%s: não é um comando interno do shell%s: não é uma variável array%s: não é um array indexado%s: não foi carregado dinamicamente%s: não encontrado%s: requer argumento numérico%s: a opção requer um argumento%s: a opção requer um argumento: -- %c
%s: parâmetro não inicializado%s: parâmetro nulo ou não inicializado%s: atribuição de array composto com aspas está obsoleto%s: função somente para leitura%s: a variável permite somente leitura%s: variável de referência não pode ser um array%s: removendo o atributo nameref%s: restrição%s: restrição: não é permitido especificar `/' em nomes de comandos%s: expressão de substring < 0%s: esperava operador unário%s: variável não associada%s: uso: %s: a variável pode não ter um valor atribuído'

(( expressão ))(imagem do núcleo gravada) (wd agora: %s)
++: atribuição requer lvalue--: atribuição requer lvalue. [-p caminho] arquivo [argumentos]sem suporte a /dev/(tcp|udp)/máquina/porta sem rede/tmp deve ser um nome de diretório válido<nenhum diretório atual>Instrução ABORTAbortando...Adiciona diretórios a uma pilha.
    
    Adiciona um diretório ao topo da pilha de diretórios ou movimenta
    a pilha, fazendo o novo topo da pilha ser o diretório atual de
    trabalho. Com nenhum argumento, efetua troca do topo entre dois
    diretórios.
    
    Opções:
      -n	Suprime a alteração normal de diretório ao adicionar
      		diretórios à pilha, de forma que apenas a pilha é manipulada.
    
    Argumentos:
      +N	Movimenta a pilha de forma que o n-ésimo diretório (a contar
      		da esquerda da lista mostrada por `dirs', iniciando com zero)
      		está no topo.
    
      -N	Movimenta a pilha de forma que o n-ésimo diretório (a contar
      		da direita da lista mostrada por `dirs', iniciando com zero)
      		está no topo.
    
      dir	Adiciona DIR à pilha de diretórios no topo, fazendo dele o
      		novo diretório de trabalho atual.
    
     O comando interno `dirs' exibe a pilha de diretórios.
    
    Status de saída:
    Retorna sucesso, a menos que um argumento inválido seja fornecido ou
    a alteração de diretório falhar.Adiciona um diretório ao topo da pilha de diretórios ou movimenta
    a pilha, fazendo o novo topo da pilha ser o diretório atual de
    trabalho. Com nenhum argumento, efetua troca do topo entre dois
    diretórios.
    
    Opções:
      -n	Suprime a alteração normal de diretório ao adicionar
      		diretórios à pilha, de forma que apenas a pilha é manipulada.
    
    Argumentos:
      +N	Movimenta a pilha de forma que o n-ésimo diretório (a contar
      		da esquerda da lista mostrada por `dirs', iniciando com zero)
      		está no topo.
    
      -N	Movimenta a pilha de forma que o n-ésimo diretório (a contar
      		da direita da lista mostrada por `dirs', iniciando com zero)
      		está no topo.
    
      dir	Adiciona DIR à pilha de diretórios no topo, fazendo dele o
      		novo diretório de trabalho atual.
    
     O comando interno `dirs' exibe a pilha de diretórios.Alarme (perfil)Alarme (virtual)Relógio de alarmeLoop `for' aritmético.
    
    Equivalente a
    	(( EXPR1 ))
    	while (( EXPR2 )); do
    		COMANDOS
    		(( EXPR3 ))
    	done
    EXPR1, EXPR2 e EXPR3 são expressões aritméticas. Se alguma expressão
    for omitida, ele se comporta como se a avaliação resultasse em 1.
    
    Status de saída:
    Retorna o status do último comando executado.BPT Rastreamento/Captura (BPT trace/trap)Chamada incorreta do sistemaSinal falso`Pipe' partido (escrita sem leitura)Erro do barramentoTempo limite de CPU excedidoAltera o diretório de trabalho do shell.
    
    Altera o diretório atual para DIR, sendo o padrão de DIR o mesmo valor
    da variável HOME. Se DIR é "-", é convertido para $OLDPWD.
    
    A variável CDPATH define o caminho de pesquisa para o diretório contendo
    DIR. Nomes de diretórios alternativos em CDPATH são separados por
    dois-pontos (:). Um nome de diretório nulo é o mesmo que o diretório
    atual. Se DIR inicia com uma barra (/), então CDPATH não é usada.
    
    Se o diretório não for encontrado e a opção `cdable_vars' estiver definida
    no shell, a palavra é presumida como sendo o nome de uma variável. Se
    tal variável possuir um valor, este valor é usado para DIR.
    
    Opções:
      -L	força links simbólicos a serem seguidos: resolver links simbólicos
      		em DIR após processar instâncias de `..'
      -P	usa a estrutura do diretório físico sem seguir links
    		simbólicos: resolve links simbólicos em DIR antes de processar
    		instâncias de `..'
      -e	se a opção -P for fornecida e o diretório de trabalho atual não
    		puder ser determinado com sucesso, sai com um status não-zero
      -@	em sistemas nos quais haja suporte, apresenta um arquivo com
    		atributos estendidos como um diretório contendo os atributos de
    		arquivo
    
    O padrão é seguir links simbólicos, como se `-L' tivesse sido especificada.
    `..' é processada removendo o componente de caminho imediatamente anterior
    de volta para uma barra ou para o início de DIR.
    
    Status de saída:
    Retorna 0, se o diretório tiver sido alterado e se $PWD está definida com
    sucesso quando a opção -P for usada; do contrário, retorna não-zero.Processo filho parado ou terminadoNomes e uso de variáveis comuns do shell.
    
    BASH_VERSION	Informação da versão deste Bash.
    CDPATH		Uma lista separada por dois-pontos de diretórios para
    			pesquisar por diretórios fornecidos como argumentos a `cd'.
    GLOBIGNORE		Uma lista separada por dois-pontos de padrões descrevendo
    			arquivos a serem ignorados pela expansão de caminho.
    HISTFILE		O nome do arquivo no qual o histórico de comandos é
    			armazenado.
    HISTFILESIZE	O número máximo de linhas que esse arquivo pode conter.
    HISTSIZE		O número máximo de linhas de histórico que um shell
    			pode acessar.
    HOME			O caminho completo para seu diretório de login.
    HOSTNAME		O nome da sua máquina.
    HOSTTYPE		O tipo de CPU sob a qual esta versão do Bash está
    			funcionando.
    IGNOREEOF		Controla a ação do shell na recepção de um caractere
    			de fim de arquivo (EOF) como uma entrada única. Se
    			definida, então seu valor é o número de caracteres de EOF
    			que podem ser vistos numa leva em uma linha vazia antes
    			do shell sair (padrão 10). Do contrário, EOF significa
    			o fim da entrada.
    MACHTYPE		Uma string descrevendo o sistema no qual Bash está sendo
    			executado.
    MAILCHECK		Com qual frequência, em segundos, Bash verifica por novo
    			correio.
    MAILPATH		Uma lista separada por dois-pontos de arquivos que Bash
    			verifica por novo correio.
    OSTYPE			A versão do Unix no qual Bash está sendo executado.
    PATH			Uma lista separada por dois-pontos de diretórios para
    			pesquisar ao se procurar por comandos.
    PROMPT_COMMAND	Um comando a ser executado antes de imprimir cada prompt
    			primário.
    PS1				A string de prompt primário.
    PS2				A string de prompt secundária.
    PWD				O caminho completo do diretório atual.
    SHELLOPTS		Uma lista separada por dois-pontos de opções shell
    				habilitadas.
    TERM			O nome do tipo de terminal atual.
    TIMEFORMAT		O formato de saída para estatísticas de tempo exibidas
    				pela palavra reservada `time'.
    auto_resume		Não-nulo significa que uma palavra de comando aparecendo
    				em uma linha, por si só, é procurada primeiro na lista de
    				trabalhos atualmente parados. Se encontrado lá, aquele
    				trabalho é levado para primeiro plano. Um valor de `exact'
    				significa que a palavra de comando deve corresponder
    				exatamente um comando na lista de trabalhos parados. Um
    				valor de `substring' significa que a palavra de comando
    				deve corresponder a uma substring do trabalho. Qualquer
    				outro valor significa que o comando deve ser um prefixo
    				de um trabalho parado.
    histchars		Caracteres controlando expansão de histórico e
    				substituição rápida. O primeiro caractere é o de
    				substituição de histórico, normalmente `!'. O segundo
    				é o caractere `quick substitution', normalmente `^'.
    				O terceiro é o caractere `history comment',
    				normalmente `#'
    HISTIGNORE		Uma lista separada por dois-pontos de padrões usados para
    				decidir quais comandos deveriam ser salvos na lista de
    				histórico.
ContinuarCopyright (C) 2025 Free Software Foundation, Inc.Cria um coprocesso chamado NOME.
    
    Executa COMANDO assincronamente, com a saída padrão e entrada padrão
    do comando conectados via um `pipe' (redirecionamento) para descritores
    de arquivo atribuídos para índices 0 e 1 de uma variável array NOME
    no shell em execução. O NOME padrão é "COPROC".
    
    Status de saída:
    O comando coproc retorna um status de saída de 0.DEBUG aviso: Define variáveis locais.
    
    Cria uma variável local chamada NOME e lhe dá VALOR. OPÇÃO pode ser
    qualquer opção aceita pelo `declare'.

    Se qualquer NOME for "-", o local salva o conjunto de opções do shell
    e as restaura quando a função retorna.
    
    Variáveis locais podem ser usadas apenas em uma função; elas são visíveis
    apenas para a função na qual elas foram definidas, bem como para seus
    filhos.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida, ocorrer
    um erro de atribuição de uma variável ou o shell não estiver executando
    uma função.Define ou exibe apelidos (aliases).
    
    Sem argumentos, `alias' mostra a lista de apelidos no formato usável
    `alias NOME=VALOR' na saída padrão.
    
    Do contrário, um apelido é definido para cada NOME cujo VALOR é dado.
    Um espaço ao final em VALOR resulta na próxima palavra ser verificada
    por substituição de apelido quando o apelido for expandido.
    
    Opções:
      -p	mostra todos os apelidos definidos em uma formato usável
    
    Status de saída:
    `alias' retorna verdadeiro, a menos que seja fornecido um NOME para
    o qual não se tenha definido um apelido.Define uma função de shell.
    
    Cria uma função de shell chamada NOME. Quando chamado como um comando
    simples, NOME executa COMANDOs no contexto de chamada shell.  Quando
    NOME é chamado, os argumentos são passados para a função como $1..$n
    e o nome da função está em $FUNCNAME.
    
    Status de saída:
    Retorna sucesso, a menos que NOME seja somente-leitura.Exibe pilha de diretórios.
    
    Exibe a lista de diretórios atualmente memorizados. Diretórios são
    inseridos na lista por meio do comando `pushd'; você pode obter
    de volta da lista com o comando `popd'.
    
    Opções:
      -c	limpa a pilha de diretórios excluindo todos os elementos
      -l	não mostra versões de diretórios prefixadas por til,
      		relativos ao seu diretório HOME
      -p	exibe a pilha de diretório com uma entrada por linha
      -v	exibe a pilha de diretório com uma entrada por linha,
      		prefixada com sua posição na pilha
    
    Argumentos:
      +N	Exibe a n-ésima entrada a partir da esquerda da linha
      		mostrada por `dirs' chamado sem opções, iniciando com zero.
    
      -N	Exibe a n-ésima entrada a partir da esquerda da linha
      		mostrada por `dirs' chamado sem opções, iniciando com zero.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorrer um erro.Exibe informação sobre comandos internos (builtin).
    
    Exibe resumos de comandos internos. Se PADRÃO for especificado,
    fornece ajuda detalhada sobre todos os comandos correspondendo
    a PADRÃO; do contrário, a lista de tópicos de ajuda é mostrada.
    
    Opções:
      -d	exibe uma descrição breve para cada tópico
      -m	exibe o uso em formato de pseudo página man
      -s	exibe apenas uma breve sinopse de uso para cada tópico
      		correspondendo a PADRÃO
    
    Argumentos:
      PADRÃO	Padrão especificando um tópico de ajuda
    
    Status de saída:
    Retorna sucesso, a menos que PADRÃO não seja encontrado ou uma opção
    inválida seja fornecida.Exibe informação sobre o tipo de comando.
    
    Para cada NOME, indica como ele seria interpretado se fosse usado como
    um nome de comando.
    
    Opções:
      -a	exibe todas as localizações contendo um executável chamado NOME;
    		inclui apelidos (alias), comandos internos e funções,
    		se, e somente se, a opção `-p' não for usada em conjunto
      -f	suprime a procura por função do shell
      -P	força uma pesquisa em PATH por cada  NOME, mesmo se ele for
    		um apelido, um comando interno ou uma função, e retorna o nome
    		do arquivo de disco que seria executado
      -p	retorna o nome do arquivo de disco que seria executado ou nada,
    		se `type -t NOME' não retornasse `file'
      -t	mostra uma única palavra que é uma dentre `alias', `keyword',
    		`function', `builtin', `file' ou `', se NOME for um apelido,
    		palavra reservada da shell, comando interno do shell,
    		arquivo de disco ou não encontrado, respectivamente
    
    Argumentos:
      NOME	Nome de comando a ser interpretado.
    
    Status de saída:
    Retorna sucesso, se todos os NOMEs forem encontrados; falha, se algum
    deles não for encontrado.Exibe ou executa comandos da lista do histórico.
    
    fc é usado para listar ou editar e re-executar comandos da lista de
    histórico. PRIMEIRO e ÚLTIMO podem ser números especificando o intervalo
    ou PRIMEIRO pode ser uma string, o que significa o comando mais recente
    iniciando com aquela string.
    
    Opções:
      -e EDITOR	seleciona qual editor usar. O padrão é FCEDIT,
      			então EDITOR, então vi
      -l		lista linhas ao invés de editar
      -n		omite números de linhas ao listar
      -r		ordem reversa de linhas (mais novos listados primeiro)
    
    Com o formato `fc -s [antigo=novo ...] [comando]', COMANDO é
    re-executado após a substituição ANTIGO=NOVO ser realizada.
    
    Um apelido útil para usar isso é r='fc -s', de forma que digitar `r cc'
    executa o último comando iniciando com `cc' e digitar `r' re-executa
    o último comando.

    O comando interno history também opera na lista de histórico.
    
    Status de saída:
    Retorna sucesso ou status do comando executado; ocorrendo um erro,
    retorna não-zero.Exibe ou manipula a lista de histórico.
    
    Exibe a lista de histórico com números de linhas, prefixando cada
    entrada modificada com um `*'.  Um argumento de N lista apenas as
    últimas N entradas.
    
    Opções:
      -c		limpa a lista de histórico ao excluir todas as entradas
      -d posição	exclui a entrada de histórico na posição POSIÇÃO. Posições
    			negativas contam a partir do fim da lista de histórico
      -d início-fim	exclui entradas de histórico iniciando a posição INÍCIO
    			até a posição FIM.
    
      -a		anexa linhas de histórico desta sessão no arquivo de
      			histórico
      -n		lê todas as linhas de histórico ainda não lidas do
      			arquivo de histórico e anexa-os à lista de histórico
      -r		lê o histórico e anexa os conteúdos à lista de histórico
      -w		escreve o histórico atual para o arquivo de histórico
    
      -p		executa expansão de histórico em cada ARG e exibe o
      			resultado sem armazená-lo na lista de histórico
      -s		anexa os ARGs à lista de histórico como uma única entrada
    
    Se ARQUIVO for fornecido, ele é usado como o arquivo de histórico.
    Do contrário, se a variável HISTFILE tiver um valor, este será usado.
    Se ARQUIVO não for fornecido e HISTFILE não for definido ou for nulo,
    as opções -a, -n, -r e -w não terão efeito e retornarão sucesso.

    O comando interno fc também opera na lista de histórico.
    
    Se a variável HISTTIMEFORMAT for definida e não for nula, seu valor é
    usado como uma string de formato para strftime(3) para mostrar a marca
    de tempo associada com cada entrada de histórico exibida. Do contrário,
    nenhuma marca de tempo é mostrada.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro.Exibe ou define máscara de modo de arquivo.
    
    Define a máscara de criação de arquivos do usuário para MODO. Se MODO
    for omitido, imprime o valor atual da máscara.
    
    Se MODO inicia com um dígito, ele é interpretado como um número octal;
    do contrário, ele é uma string de modo simbólico como a que é aceita
    pelo chmod(1).
    
    Opções:
      -p	se MODO for omitido, exibe em um formulário que pode ser usado
      		como entrada
      -S	torna a saída simbólica; do contrário, um número octal é mostrado
    
    Status de saída:
    Retorna sucesso, a menos que MODO seja inválido ou uma opção
    inválida seja fornecida.Exibe possibilidades de completação dependendo das opções.
    
    Destinado a ser usado de dentro de uma função shell gerando completações
    possíveis. Se o argumento PALAVRA opcional estiver presente, gera
    correspondências contra PALAVRA.

    Se a opção -V for fornecida, armazena as possíveis conclusões no array
    indexado NOME_VAR em vez de exibi-las na saída padrão.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro.Exibe tempos de processos.
    
    Imprime os tempos de sistema e de usuário acumulados pelo shell e
    todos seus processo filhos.
    
    Status de saída:
    Sempre com sucesso.Exibe status de trabalhos.
    
    Lista os trabalhos ativos. ESPEC_JOB restringe a saída àquele trabalho.
    Não sendo informado qualquer opção, o status de todos os trabalhos
    ativos é exibido.
    
    Opções:
      -l	lista IDs de processo junto com a informação normal
      -n	lista apenas processos que tiverem seu status alterado desde
      		a última notificação
      -p	lista apenas IDs de processo
      -r	restringe a saída apenas a trabalhos em execução
      -s	restringe a saída apenas a trabalhos parados
    
    Se -x for fornecido, COMANDO é executado após as demais especificações
    de trabalho que aparecerem em ARGs terem sido substituídas com o ID de
    processo daquele líder de grupo de processos do trabalhos.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro. Se -x for usado, retorna o status de saída do COMANDO.Exibe a lista de diretórios atualmente memorizados. Diretórios são
    inseridos na lista por meio do comando `pushd'; você pode obter
    de volta da lista com o comando `popd'.
    
    Opções:
      -c	limpa a pilha de diretórios excluindo todos os elementos
      -l	não mostra versões de diretórios prefixadas por til,
      		relativos ao seu diretório HOME
      -p	exibe a pilha de diretório com uma entrada por linha
      -v	exibe a pilha de diretório com uma entrada por linha,
      		prefixada com sua posição na pilha
    
    Argumentos:
      +N	Exibe a n-ésima entrada a partir da esquerda da linha
      		mostrada por `dirs' chamado sem opções, iniciando com zero.
    
      -N	Exibe a n-ésima entrada a partir da esquerda da linha
      		mostrada por `dirs' chamado sem opções, iniciando com zero.ConcluídoConcluído(%d)Instrução EMTHabilita e desabilita comandos internos do shell.
    
    Habilita e desabilita comandos internos do shell. Desabilitar
    permite que você executa um comando do disco que possui o mesmo
    nome que um outro comando interno sem usar um caminho completo.
    
    Opções:
      -a	mostra uma lista de comandos internos mostrando se cada
      		um está habilitado
      -n	desabilita cada NOME ou exibe uma lista de comandos
      		internos desabilitados
      -p	exibe a lista de comandos internos em um formato usável
      -s	exibe apenas nomes dos comandos internos `special' do Posix
    
    Opções de controle de carregamento dinâmico:
      -f	carrega comando interno NOME do objeto compartilhado ARQUIVO
      -d	remove um comando interno carregado com -f
    
    Não sendo informado uma opção, cada NOME é habilitado.

    Em sistemas com carregamento dinâmico, a variável de shell
    BASH_LOADABLES_PATH define um caminho de pesquisa para o diretório
    que contém ARQUIVOs que não contêm uma barra. Pode incluir "." para
    forçar uma pesquisa do diretório atual.
    
    Para usar o `test' encontrado em $PATH, ao invés da versão de comando
    interno do shell, digite `enable -n test'.
    
    Status de saída:
    Retorna sucesso, a menos que NOME não seja um comando interno de shell
    ou ocorrer um erro.Avalia expressões aritméticas.
    
    A EXPRESSÃO é avaliada de acordo com as regras de avaliação aritmética.
    Equivalente a `let "EXPRESSÃO"'.
    
    Status de saída:
    Retorna 1, se EXPRESSÃO for avaliada como 0; do contrário, retorna 0.Avalia expressões aritméticas.
    
    Avalia cada ARG como uma expressão aritmética. A avaliação é feita
    em inteiros com largura fixa com nenhuma verificação de estouro de
    pilha. A lista de operadores a seguir está agrupada em níveis de
    operadores de igual precedência. Os níveis estão listados em ordem
    de precedência decrescente.
    
    	id++, id--          pós-acréscimo, pós-decréscimo de variável
    	++id, --id          pré-acréscimo, pré-decréscimo de variável
    	-, +                menos, mais unário
    	!, ~                negação lógica e bit-a-bit
    	**                  exponenciação
    	*, /, %             multiplicação, divisão, resto de divisão
    	+, -                adição, subtração
    	<<, >>              deslocamento bit-a-bit para esquerda, direita
    	<=, >=, <, >        comparação
    	==, !=              igualdade, desigualdade
    	&                   E (AND) bit-a-bit
    	^                   OU eXclusivo (XOR) bit-a-bit
    	|                   OU (OR) bit-a-bit
    	&&                  E lógico
    	||                  OU lógico
    	expr ? expr : expr  operador condicional
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=          atribuição
    
    As variáveis de shell são permitidas como operandos. O nome da
    variável é substituída pelo seu valor (coagida a um inteiro com
    largura fixa) dentro de uma expressão. A variável não precisa ter
    seu atributo de `inteiro' ligado para ser usada em uma expressão.
   
    Operadores são avaliados em ordem de precedência. Sub-expressões em
    parênteses são avaliados primeiro e podem sobrescrever as regras de
    precedência acima.
    
    Status de saída:
    Se o último ARG for avaliado como 0, let retorna 1; do contrário,
    let retorna 0.Avalia expressão condicional.
    
    Sai com um status de 0 (verdadeiro) ou 1 (falso) dependendo da avaliação
    de EXPR. As expressões podem ser unárias ou binárias. Expressões unárias
    são normalmente usadas para examinar o status de um arquivo. Há
    operadores de strings e também há operadores de comparação numérica.
    
    O comportamento do teste depende do número de argumentos. Leia a página
    de manual do `bash' para a especificação completa.
    
    Operadores de arquivos:
    
      -a ARQUIVO     Verdadeiro, se arquivo existir.
      -b ARQUIVO     Verdadeiro, se arquivo for um bloco especial.
      -c ARQUIVO     Verdadeiro, se arquivo for um caractere especial.
      -d ARQUIVO     Verdadeiro, se arquivo for um diretório.
      -e ARQUIVO     Verdadeiro, se arquivo existir.
      -f ARQUIVO     Verdadeiro, se arquivo existir e for um arquivo normal.
      -g ARQUIVO     Verdadeiro, se arquivo for set-group-id.
      -h ARQUIVO     Verdadeiro, se arquivo for um link simbólico.
      -L ARQUIVO     Verdadeiro, se arquivo for um link simbólico.
      -k ARQUIVO     Verdadeiro, se arquivo tiver o bit `sticky' definido.
      -p ARQUIVO     Verdadeiro, se arquivo for um `pipe' dado.
      -r ARQUIVO     Verdadeiro, se arquivo for um legível por você.
      -s ARQUIVO     Verdadeiro, se arquivo existir e não estiver vazio.
      -S ARQUIVO     Verdadeiro, se arquivo for um socket.
      -t FD          Verdadeiro, se FD estiver aberto em um terminal.
      -u ARQUIVO     Verdadeiro, se arquivo estiver com set-user-id.
      -w ARQUIVO     Verdadeiro, se arquivo puder ser escrito por você.
      -x ARQUIVO     Verdadeiro, se arquivo puder ser executado por você.
      -O ARQUIVO     Verdadeiro, se arquivo efetivamente for seu (owned).
      -G ARQUIVO     Verdadeiro, se arquivo efetivamente for do seu grupo.
      -N ARQUIVO     Verdadeiro, se arquivo foi modificado desde a última
                     leitura.
    
      ARQ1 -nt ARQ2  Verdadeiro se ARQ1 for mais novo que ARQ2, conforme
                     última data de modificação.
    
      ARQ1 -ot ARQ2  Verdadeiro, se ARQ1 for mais velho que ARQ2.
    
      ARQ1 -ef ARQ2  Verdadeiro, se ARQ1 for um link rígido para ARQ2.
    
    Operadores de string:
    
      -z STRING      Verdadeiro, se string estiver vazia.
    
      -n STRING
         STRING      Verdadeiro, se string não estiver vazia.
    
      STRING1 = STRING2
                     Verdadeiro, se strings forem iguais.
      STRING1 != STRING2
                     Verdadeiro, se strings não forem iguais.
      STRING1 < STRING2
                     Verdadeiro, se STRING1 estiver antes de STRING2, de
                     acordo com a ordem alfabética.
      STRING1 > STRING2
                     Verdadeiro, se STRING1 estiver depois de STRING2, de
                     acordo com a ordem alfabética.
    
    Outros operadores:
    
      -o OPÇÃO       Verdadeiro, se a opção shell OPÇÃO estiver habilitada.
      -v VAR         Verdadeiro, se a variável shell VAR estiver definida.
      -R VAR         Verdadeiro, se a variável shell VAR estiver definida
                     e for uma referência de nome.
      ! EXPR         Verdadeiro, se a expressão EXPR for falsa.
      EXPR1 -a EXPR2 Verdadeiro, se ambas EXPR1 e EXPR2 forem verdadeiras.
      EXPR1 -o EXPR2 Verdadeiro, se ao menos uma das expressões for verdadeira.
    
      arg1 OP arg2   Testes aritméticos.  OP é um dentre -eq, -ne, -lt, -le,
                     -gt, or -ge.
    
    Operadores binários de aritmética retornam verdadeiro se ARG1 for igual,
    não-igual, menor-que, menor-ou-igual-a ou maior-ou-igual-a ARG2.
    
    Status de saída:
    Retorna sucesso, se EXPR for avaliada como verdadeira; falha, se EXPR for
    avaliada como falsa ou um argumento inválido for informado.Avalia expressões condicionais.
    
    Esse é um sinônimo para o comando interno `test', mas o último
    argumento deve ser um `]' literal, para corresponder ao `[' que abriu.Executa PIPELINE, que pode ser um comando simples, e nega o status de
    retorno do PIPELINE.

    Status de saída:
    A negação lógica do status de retorno do PIPELINE.Executa um comando simples ou exibe informação sobre comandos.
    
    Executa COMANDO com ARG suprimindo a procura por função do shell ou
    exibe informação sobre os COMANDOs especificados. Pode ser usado para
    chamar comandos no disco quando um função com o mesmo nome existe.
    
    Opções:
      -p	usa um valor padrão como variável PATH no qual garantidamente
        	se encontram todas os utilitários padrão
      -v	mostra uma única palavra indicando o comando ou
        	nome de arquivo que invoca COMANDO
      -V	mostra uma descrição detalhada (verboso) para cada COMANDO
    
    Status de saída:
    Retorna status de saída de COMANDO ou falha, se COMANDO não for 
    encontrado.Executa argumentos como um comando de shell.
    
    Combina ARGs em uma única string, usa o resultado como entrada para o
    shell, e executa os comandos resultantes.
    
    Status de saída:
    Retorna status de saída do comando ou sucesso, se o comando for nulo.Executa comandos desde que não se obtenha sucesso nos testes.
    
    Expande e executa COMANDOS-2 desde que o comando final em
    COMANDOS tenha um status de saída que seja não-zero.
    
    Status de saída:
    Retorna o status do último comando executado.Executa comandos desde que se obtenha sucesso nos testes.
    
    Expande e executa COMANDOS-2 desde que o comando final em
    COMANDOS tenha um status de saída zero.
    
    Status de saída:
    Retorna o status do último comando executado.Executa comandos baseados em condicional.
    
    A lista `if COMANDOS' é executada. Se seu status de saída for zero,
    então a lista `then COMANDOS' é executada. Do contrário, cada lista
    `elif COMANDOS' é executada em turnos e, se seu status de saída for
    zero, a lista `then COMANDOS' correspondente é executada e o comando
    `if' conclui. Do contrário, a lista `else COMANDOS' é executada, se
    presente. O status de saída de toda construção é o status de saída do
    último comando executado, ou zero, se nenhuma condição testada
    resultou em verdadeiro.
    
    Status de saída:
    Retorna o status do último comando executado.Executa comandos baseados em correspondência de padrão.
    
    Seletivamente executa COMANDOS baseados na PALAVRA correspondendo
    a PADRÃO. O `|' é usado para separar múltiplos padrões.
    
    Status de saída:
    Retorna o status do último comando executado.Executa comandos para cada membro em uma lista.
    
    O loop `for' executa uma sequência de comandos para cada membro em
    uma lista de itens. Se `in PALAVRAS ...;' não estiver presente, então
    `in "$@"' é presumido. Para cada elemento em PALAVRAS, NOME é definido
    com aquele elemento e os COMANDOS são executados.
    
    Status de saída:
    Retorna o status do último comando executado.Executa comandos de um arquivo no shell atual.
    
    Lê e executa comandos de ARQUIVO no shell atual. Se a opção -p for
    fornecida, o argumento PATH será tratado como uma lista separada
    por dois pontos de diretórios para procurar por ARQUIVO.
    Se -p não for fornecido, $PATH será pesquisado para encontrar FILENAME.
    Se quaisquer ARGUMENTOS forem fornecidos, eles se tornam parâmetros
    posicionais quando ARQUIVO é executado.
    
    Status de saída:
    Retorna o status do último comando executado em ARQUIVO; falha se
    ARQUIVO não puder ser lido.Executa comando condicional.
    
    Retorna um status de 0 ou 1 dependendo da avaliação da expressão
    condicional EXPRESSÃO. Expressões são compostas dos mesmos primários
    usados pelo comando interno `test' e pode ser combinado usando os
    seguintes operadores:
    
      ( EXPRESSÃO )	Retorna o valor de EXPRESSÃO
      ! EXPRESSÃO	Verdadeiro, se EXPRESSÃO for falsa; senão, falso
      EXPR1 && EXPR2	Verdadeiro, se ambas EXPR1 e EXPR2 forem verdadeiras;
      			senão, falso
      EXPR1 || EXPR2	Verdadeiro, se EXPR1 ou EXPR2 for verdadeira;
      			senão, falso
    
    Quando os operadores `==' e `!=' forem usados, a string à direita do
    operador é usado como um padrão e uma correspondência de padrão é
    realizada. Quando o operador `=~' é usado, a string à direita do
    operador é correspondida como uma expressão regular.
    
    Os operadores && e || não avaliam EXPR2, se EXPR1 for suficiente para
    determinar o valor da expressão.
    
    Status de saída:
    0 ou 1 dependendo do valor de EXPRESSÃO.Executa comandos internos (builtin) do shell.
    
    Executa COMANDO-INTERNO-SHELL com argumentos ARGs sem realizar procura
    por comandos. Isso é útil quando você deseja reimplementar um comando
    interno como uma função shell, mas precisa executar o comando interno
    dentro de uma função.
    
    Status de saída:
    Retorna o status de saída de COMANDO-INTERNO-SHELL ou falso, se
    COMANDO-INTERNO-SHELL não for de fato um comando interno de shell.Fim da execução com status %dSai de um shell de login.
    
    Sai de um shell de login com o status de saída N. Retorna um erro
    se não for executada em um shell de login.Sai de loops de for, while ou until.
    
    Sai de um loop de FOR, WHILE ou UNTIL. Se N for especificado, quebra N 
    blocos de declaração de loops.
    
    Status de saída:
    O status de saída é 0, a menos que N não seja maior ou igual a 1.Sai do shell.
    
    Sai do shell com status igual a N.  Se N for omitido, o status
    de saída é o mesmo do último comando executado.Tamanho limite do arquivo excedidoExceção de ponto flutuanteFormata e imprime ARGUMENTOS sob controle de FORMATO.
    
    Opções:
      -v var	atribui a saída à variável shell VAR, ao invés de exibi-la
      			na saída padrão
    
    FORMATO é uma string de caractere que contém três tipos de objetos;
    caracteres planos, que são simplesmente copiados para a saída padrão;
    sequências de escape de caracteres, que são convertidas e copiadas
    para a saída padrão; e especificações de formatos, cada um que causa
    impressão do próximo argumento sucessivo.
    
    Além dos caracteres padrão de formato csndiouxXeEfFgGaA descritas
    em printf(1), printf interpreta:
    
      %b	expande sequências de escape com barras invertidas no argumento
      		correspondente
      %q	coloca aspas em volta do argumento de uma forma que pode ser
      		usado como entrada no shell
      %Q	como %q, mas aplica qualquer precisão ao argumento sem aspas
    		antes de adicionar aspas
      %(fmt)T	exibe a string de data-hora resultante do uso de FMT como
      			uma string de formato para strftime(3)
    
    O formato é usado como necessário para consumir todos os argumentos.
    Se houver menos argumentos que o formato requer, especificações de
    formato extras se comportam como se uma string com valor zero ou nula,
    como apropriado, tivesse sido fornecida.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro de escrita ou atribuição.GNU bash, versão %s (%s)
GNU bash, versão %s-(%s)
opções-longas-GNU:
Ajuda geral sobre uso de software GNU: <http://www.gnu.org/gethelp/>
Agrupa comandos como uma unidade.
    
    Executa um conjunto de comandos em um grupo. Essa é uma
    forma de redirecionar um todo um conjunto de comandos.
    
    Status de saída:
    Retorna o status do último comando executado.entrada de dados HFT pendentemodo monitor HFT autorizadomodo monitor HFT rescindidoa sequência de som HFT foi completadaHOME não definidaHangupEu não tenho nome!Entrada/Saída prontaINFORM: Instrução ilegalRequisição de informaçãoInterromperMorto (Killed)Licença GPLv3+: GNU GPL versão 3 ou posterior <http://gnu.org/licenses/gpl.html>
Marca variáveis shell como inalteráveis.
    
    Marca cada NOME como somente-leitura; os valores desses NOMEs pode não
    ser alterados por atribuídos subsequentes. Se VALOR for fornecido,
    atribui VALOR antes de marcar como somente-leitura.
    
    Opções:
      -a	faz referência a variáveis array indexados
      -A	faz referência a variáveis array associativos
      -f	faz referência a funções de shell
      -p	exibe uma lista de todas as variáveis ou funções somente-leitura,
    		dependendo da opção -f ser informada ou não
    
    Um argumento de `--' desabilita processamento de opções posteriores.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    NOME seja inválido.Modifica ou exibe opções de completação.
    
    Modifica as opções de completação para cada NOME ou, se nenhum NOME for
    fornecido, a completação sendo executada atualmente. Se nenhuma OPÇÃO
    for fornecida, imprime as opções de completação para cada NOME ou a
    especificação de completação atual.
    
    Opções:
    	-o opção	Define a opção de completação OPÇÃO para cada NOME
    	-D		Altera opções para a completação de comando "padrão"
    	-E		Altera opções para a completação de comando "vazio"
    	-I		Altera as opções para completação na palavra inicial
    
    Ao usar `+o', ao invés de `-o', desliga a opção especificada.
    
    Argumentos:
    
    Cada NOME se refere a um comando para o qual uma especificação de
    completação deve ter sido definida anteriormente usando o comando
    interno `complete'. Se nenhum NOME for fornecido, `compopt' deve
    ser chamado por uma função atualmente gerando completações e as
    opções para aquele gerador de completações atualmente em execução
    são modificados.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválido seja fornecido ou
    NOME não tem uma especificação de completação definida.Modifica limites de recursos do shell.
    
    Fornece controle sobre os recursos disponíveis para o shell e
    os processos que ele cria, em sistemas que permitem tal controle.
    
    Opções:
      -S	usa um limite `soft' de recursos
      -H	usa um limite `hard' de recursos
      -a	todos os limites atuais são relatados
      -b	o tamanho do buffer do socket
      -c	o tamanho máximo dos arquivos centrais criados
      -d	o tamanho máximo de um segmento de dados do processo
      -e	a prioridade máxima de agendamento (`nice')
      -f	o tamanho máximo de arquivos escritos pelo shell e seus filhos
      -i	o número máximo de sinais pendentes
      -k	o número máximo de kqueues alocadas para este processo
      -l	o tamanho máximo que um processo pode alocar da memória
      -m	o tamanho máximo de conjunto residente
      -n	o número máximo de descritores de arquivo abertos
      -p	o tamanho de buffer de `pipe'
      -q	o número máximo de bytes em files de mensagem POSIX
      -r	o tempo real máximo de prioridade de agendamento
      -s	o tamanho máximo de pilha
      -t	a quantidade máxima de tempo de CPU em segundos
      -u	o número máximo de processos de usuário
      -v	o tamanho de memória virtual
      -x	o número máximo de travas de arquivos
      -P	o número máximo de pseudoterminais
      -R	o tempo máximo que um processo de tempo real pode executar
              antes de ser bloqueado
      -T	o número máximo de fluxos (threads)
    
    Nem todas as opções estão disponíveis em todas as plataformas.
    
    Se LIMITE for fornecido, ele é o novo valor do recurso especificado;
    os valores especiais de LIMITE `soft', `hard' e `unlimited' referem-se
    ao atual limite suave, o atual limite rígido e nenhum limite,
    respectivamente. Do contrário, o valor atual do recurso especificado
    é impresso. Se nenhuma opção for fornecida, então -f é presumida.
    
    Os valores estão em acréscimos de 1024 bytes, exceto para -t, que está
    em segundos; -p, que está em incrementos de 512 bytes; -R, que está em
    microssegundos; -b, que está em bytes; e -e, -i, -k, -n, -q, -r, -u,
    -x e -P, que aceitam valores não dimensionados.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro.Move um trabalho para o primeiro plano.
    
    Coloca o trabalho identificado por ESPEC_JOB em primeiro plano,
    tornando o trabalho atual. Se ESPEC_JOB não estiver presente,
    a noção do shell de trabalho atual é usada.
    
    Status de saída:
    Status do comando colocado em primeiro plano ou falha, se ocorrer um erro.Move trabalhos para o plano de fundo.

    Coloca os trabalhos identificados por ESPEC_JOB em plano de fundo,
    como se eles tivessem sido iniciado com `&'. Se ESPEC_JOB não
    estiver presente, a noção do shell de trabalho atual é usada.
    
    Status de saída:
    Retorna sucesso, a menos que controle de trabalho não esteja
    habilitado ou ocorra um erro.Comando nulo.
    
    Nenhum efeito; o comando não faz nada.
    
    Status de saída:
    Sempre com sucesso.OLDPWD não definidaAnalisa argumentos de opções.
    
    Getopts é usado pelos procedimentos do shell para analisar parâmetros
    posicionais como opções.
    
    OPÇÕES é uma string que contém as letras de opções a ser reconhecidas;
    se uma letra é seguida por dois-pontos, é esperado que a opção tenha
    um argumento, o que deveria ser separado dela por um espaço em branco.
    
    A cada vez que ele é chamado, getopts coloca a próxima opção
    na variável shell $NOME, inicializando NOME se ela não existir,
    e o índice do próximo argumento a ser processado para dentro da
    variável OPTIND. OPTIND é inicializado para 1 a cada vez que o
    shell ou um script shell é chamado. Quando uma opção requer
    um argumento, getopts coloca aquele argumento em uma variável
    shell chamada OPTARG.
    
    getopts relata erros em um de duas formas. Se o primeiro caractere
    de OPÇÕES for caractere dois-pontos, getopts usa sistema silencioso de
    relatório de erro. Neste modo, nenhuma mensagem de erro é mostrada.
    Se uma opção inválida é vista, getopts coloca o caractere de opção
    encontrada dentro do OPTARG. Se um argumento obrigatório não for
    encontrado, getopts coloca um ':' em NOME e define OPTARG para o
    caractere de opção encontrada. Se getopts não estiver no modo
    silencioso, uma opção inválida é vista, getopts coloca um '?' em
    NOME e remove definição de OPTARG. Se um argumento obrigatório não
    for encontrado, um '?' é colocado em NOME, OPTARG tem sua definição
    removida e uma mensagem de diagnóstico é mostrada.
    
    Se a variável shell OPTERR possuir o valor 0, getopts desabilita a
    exibição de mensagens de erro, mesmo se o primeiro caractere de
    OPÇÕES não for dois-pontos.  OPTERR tem o valor por padrão.
    
    Getopts normalmente analisa os parâmetros posicionais, mas se mais
    argumentos forem fornecidos, eles serão analisados.
    
    Status de saída:
    Retorna sucesso, se uma opção for encontrada; falha se o fim das opções
    for encontrado ou ocorrer um erro.Mostra o nome do diretório de trabalho atual.
    
    Opções:
      -L	mostra o valor de $PWD se ele tiver o nome do diretório de
      		trabalho atual
      -P	mostra o diretório físico, sem quaisquer links simbólicos
    
    Por padrão, `pwd' se comporta como se a opção `-L' foi especificada.
    
    Status de saída:
    Retorna 0, a menos que uma opção inválida seja fornecida ou o diretório
    atual não possa ser lido.SairLê uma linha da entrada padrão e separa em campos.

    Lê uma linha da entrada padrão ou do descritor de arquivo FD, caso a
    opção -u seja fornecida. A linha é separada em campos, na mesma forma de
    separação de palavras, e a primeira palavra é atribuída ao primeiro NOME,
    o segundo ao segundo NOME e por aí vai, com qualquer palavras restantes
    atribuídas para o último NOME. Apenas os caracteres encontrados em $IFS
    são reconhecidos como delimitadores de palavras. Por padrão, o caractere
    de barra invertida escapa caracteres delimitadores e de nova linha.
    
    Se nenhum NOME for fornecido, a linha lida é armazenada na variável
    REPLY (resposta).
    
    Opções:
      -a array      atribui as palavras lidas a índices sequenciais da
                    variável array ARRAY, iniciando em zero
      -d delim      continua até o primeiro caractere de DELIM ser lido, ao
                    invés de nova linha
      -e            usa Readline para obter a linha
      -E            usa Readline para obter a linha e usa a completação
                    padrão do bash em vez da completação padrão do Readline
      -i texto      usa TEXTO como o texto inicial para Readline
      -n nchars     retorna após ler NCHARS caracteres, ao invés de esperar
                    por uma nova linha, mas respeita um delimitador se número
                    de caracteres menor que NCHARS sejam lidos antes do
                    delimitador
      -N nchars     retorna apenas após ler exatamente NCHARS caracteres, a
                    menos que EOF (fim do arquivo) seja encontrado ou `read'
                    esgote o tempo limite, ignorando qualquer delimitador
      -p prompt     mostra a string PROMPT sem remover nova linha antes de
                    tentar ler
      -r            não permite que barra invertida escape quaisquer
                    caracteres
      -s            não ecoa entrada vindo de um terminal
      -t tempo      esgota-se o tempo limite e retorna falha, caso uma toda
                    uma linha não seja lida em TEMPO segundos. O valor da
                    variável TMOUT é o tempo limite padrão. TEMPO pode ser um
                    número fracionado. SE TEMPO for 0, `read' retorna sucesso
                    apenas se a entrada estiver disponível no descritor de
                    arquivo especificado. O status de saída é maior que 128,
                    se o tempo limite for excedido
      -u fd         lê do descritor de arquivo FD, ao invés da entrada padrão
    
    Status de saída:
    O código de retorno é zero, a menos que o EOF (fim do arquivo) seja
    encontrado, `read' esgote o tempo limite (caso em que o código de retorno
    será 128), ocorra erro de atribuição de uma variável ou um descritor de
    arquivo inválido seja fornecido como argumento para -u.Lê linhas de um arquivo para uma variável array.
    
    Um sinônimo para `mapfile'.Lê linhas da entrada padrão para uma variável array indexado.
    
    Lê linhas da entrada padrão para a variável array indexado ARRAY ou
    do descritor de arquivo FD, se a opção -u for fornecida. A variável
    MAPFILE é o ARRAY padrão.
    
    Opções:
      -d delim      Usa DELIM para terminar linhas, ao invés de nova linha
      -n número     Copia no máximo NÚMERO linhas. Se NÚMERO for 0, todas as
                    linhas são copiadas
      -O origem     Inicia atribuição de ARRAY no índice ORIGEM. O índice
                    padrão é 0
      -s número     Descarta as primeiras NÚMERO linhas lidas
      -t            Remove uma DELIM ao final para cada linha lida
                    (padrão: nova linha)
      -u fd         Lê linhas do descritor de arquivos FD, ao invés da entrada
                    padrão
      -C chamada    Avalia CHAMADA a cada vez que QUANTIDADE linhas foram lidas
      -c quantidade Especifica o número de linhas lidas entre cada chamada para
                    CHAMADA
    
    Argumentos:
      ARRAY         Nome da variável array para usar para arquivos de dados
    
    Se -C for fornecido sem -c, a quantidade padrão é 5000. Quando CHAMADA é
    avaliada, é fornecido o índice para o próximo elemento da array ser
    atribuído e a linha para ser atribuída àquele elemento como argumentos
    adicionais
    
    Se não for fornecido com uma origem explícita, mapfile vai limpar ARRAY
    antes de lhe atribuir.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja dada ou ARRAY for
    somente leitura ou não for um array indexado.Registro bloqueado (lock)Memoriza ou exibe localizações de programas.
    
    Determina e memoriza do caminho completo de cada comando NOME. Se nenhum
    argumento for fornecido, exibe informação sobre comandos memorizados.
    
    Opções:
      -d		esquece a localização memorizada de cada NOME
      -l		exibe em um formato que pode ser usado como entrada
      -p caminho	usa CAMINHO como o caminho completo de NOME
      -r		esquece de todas as localizações memorizadas
      -t		mostra a localização memorizada de cada NOME, iniciando
      			cada localização com o NOME correspondente, se múltiplos
      			NOMEs forem fornecidos
    Argumentos:
      NOME		Cada NOME é pesquisado em $PATH e adicionado à lista de
      			comandos memorizados.
    
    Status de saída:
    Retorna sucesso, a menos que NOME não seja encontrado ou uma opção
    inválida seja fornecida.Remove diretórios de uma pilha.

    Remove entradas da pilha de diretórios. Com nenhum argumento, remove
    o diretório do topo da pilha e altera o novo diretório do topo.
    
    Opções:
      -n	Suprime a alteração normal de diretório ao remover
      		diretórios da pilha, de forma que apenas a pilha é manipulada.
    
    Argumentos:
      +N	Remove a n-ésima entrada a contar da esquerda da lista
      		mostrada por `dirs', iniciando com zero. Ex.: `popd +0'
      		remove o primeiro diretório e `popd +1', o segundo.
    
      -N	Remove a n-ésima entrada a contar da direita da lista
      		mostrada por `dirs', iniciando com zero. Ex.: `popd -0'
      		remove o último diretório e `popd -1', o penúltimo.
    
    O comando interno `dirs' exibe a pilha de diretório.
    
    Status de saída:
    Retorna sucesso, a menos que um argumento inválido seja fornecido ou
    a alteração de diretório falhar.Remove cada NOME da lista de apelidos definidos.
    
    Opções:
      -a	remove todas as definições de apelidos
    
    Retorna sucesso, a menos que NOME não seja um apelido existente.Remove trabalhos do shell atual.
    
    Remove cada argumento ESPEC_JOB da tabela de trabalhos ativos. Sem
    qualquer ESPEC_JOB, o shell usa sua noção de trabalho atual.
    
    Opções:
      -a	remove todos os trabalhos se ESPEC_JOB não for fornecido
      -h	marca cada ESPEC_JOB, de forma que SIGHUP não seja fornecido
      		ao trabalho, caso o shell receba um SIGHUP
      -r	remove apenas trabalhos em execução
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida ou ESPEC_JOB inválido
    sejam fornecidos.Remove entradas da pilha de diretórios. Com nenhum argumento, remove
    o diretório do topo da pilha e altera o novo diretório do topo.
    
    Opções:
      -n	Suprime a alteração normal de diretório ao remover
      		diretórios da pilha, de forma que apenas a pilha é manipulada.
    
    Argumentos:
      +N	Remove a n-ésima entrada a contar da esquerda da lista
      		mostrada por `dirs', iniciando com zero. Ex.: `popd +0'
      		remove o primeiro diretório e `popd +1', o segundo.
    
      -N	Remove a n-ésima entrada a contar da direita da lista
      		mostrada por `dirs', iniciando com zero. Ex.: `popd -0'
      		remove o último diretório e `popd -1', o penúltimo.
    
    O comando interno `dirs' exibe a pilha de diretório.Substitui o shell com o comando fornecido.
    
    Executa COMANDO, substituindo o shell com o programa especificado.
    ARGUMENTOS se tornam os argumentos para COMANDO. Se COMANDO não for
    especificado, quaisquer redirecionamentos surtem efeito no shell
    atual.
    
    Opções:
      -a nome	passa NOME como argumento zero para COMANDO
      -c	executa COMANDO com um ambiente vazio
      -l	coloca um traço no argumento zero para COMANDO
    
    Se o comando não puder ser executado, um shell não-interativo sai,
    a menos que a opção `execfail' esteja definida.
    
    Status de saída:
    Retorna sucesso, a menos que COMANDO não seja encontrado ou ocorrer um
    erro no redirecionamento.Relata o tempo consumido pela execução da linha de comandos.
    
    Executa LINHA-COMANDOS e imprime um resumo do tempo real,
    tempo de CPU do usuário e do sistema, gastos executando
    LINHA-COMANDOS, quando este terminar.
    
    Opções:
      -p	imprime o resumo do tempo no formato portátil do Posix
    
    O valor da variável TIMEFORMAT é usada como formato de saída.
    
    Status de saída:
    O status de retorno é o status retornado por LINHA-COMANDOS.Resume loops de for, while ou until.
    
    Resume a próxima iteração do bloco de declaração de loop de FOR, WHILE
    ou UNTIL.
    Se N for especificado, resume o N-ésimo bloco de declaração de loop.
    
    Status de saída:
    O status de saída é 0, a menos que N não seja maior ou igual a 1.Resume trabalho em primeiro plano.
    
    Equivalente ao argumento ESPEC_JOB para comando `fg'. Resume um
    trabalho parado ou enviado para plano de fundo. ESPEC_JOB pode
    especificar tanto um nome de trabalho quanto um número de trabalho.
    ESPEC_JOB seguido de um `&' coloca o trabalho em plano de fundo,
    como se a especificação do trabalho tivesse sido fornecida como um
    argumento para `bg'.
    
    Status de saída:
    Retorna o status de um trabalho resumido.Retorna um resultado de sucesso.
    
    Status de saída:
    Sempre sucesso.Retorna um resultado de insucesso.
    
    Status de saída:
    Sempre falha.Retorna de uma função de shell.
    
    Causa uma função ou script carregado (source) a sair retornando o valor
    especificado por N. Se N for omitido, o status de retorno é do último
    comando executado dentro da função ou script.
    
    Status de saída:
    Retorna N ou falha se o shell não estiver executando uma função ou
    script.Retorna o contexto da chamada de sub-rotina atual.
    
    Sem EXPR, retorna "$linha $arquivo". Com EXPR, retorna
    "$linha $sub-rotina $arquivo"; essa informação extra pode ser usada
    para fornecer um rastro da pilha.
    
    O valor de EXPR indica quantos quadros de chamada deve voltar antes do
    atual; o quadro do topo é o quadro 0.
    
    Status de saída:
    Retorna 0, a menos que o shell não esteja executando uma função de
    shell ou EXPR seja inválida.Retorna o contexto da chamada de sub-rotina atual.
    
    Sem EXPR, retorna "$linha $arquivo".  Com EXPR, retorna
    "$linha $sub-rotina $arquivo"; essa informação extra pode ser usada para
    fornecer um rastro da pilha.
    
    O valor de EXPR indica quantos quadros de chamada deve voltar antes do
    atual; o quadro do topo é o quadro 0.
    
    Status de saída:
    Retorna 0, a menos que o shell não esteja executando uma função de
    shell ou EXPR seja inválida.ExecutandoFalha de segmentaçãoSeleciona palavras de uma lista e executa comandos.
    
    As PALAVRAS são expandidas, gerando uma lista de palavras.
    O conjunto de palavras expandidas é exibido no erro padrão,
    cada um precedido por um número. Se `in PALAVRAS' não estiver
    presente, `in "$@"' é presumido. Então, o prompt PS3 é exibido
    e uma linha é lida da entrada padrão. Se a linha consiste
    do número correspondendo àquele nas palavras exibidas, então
    NOME é definido para aquela palavra. Se a linha estiver vazia,
    PALAVRAS e o prompt são exibidos novamente. Se EOF (fim do
    arquivo) for lido, o comando conclui. Qualquer outro valor
    lido causa NOME ser definido como nulo. A linha lida é salva
    na variável REPLY. COMANDOS são executados após cada seleção
    até um comando `break' ser executado.
    
    Status de saída:
    Retorna o status do último comando executado.Envia um sinal para um trabalho.

    Envia aos processos identificados pelo PID ou pelo ESPEC_JOB o sinal
    informado por ESPEC_SINAL ou NUM_SINAL. Se ESPEC_SINAL e NUM_SINAL
    não estiverem presentes, então, SIGTERM é presumido.
    
    Opções:
      -s sinal	SINAL especifica o nome do sinal
      -n sinal	SINAL representa um número de sinal
      -l	lista os nomes dos sinais; se `-l' for acompanhado por
    		outros argumentos, presume-se estes sejam números de
    		sinais para os quais nomes deveriam ser listados
      -L	sinônimo de -l
    
    `Kill' é um comando interno do shell por duas razões: ele permite
    IDs de trabalho serem usados ao invés de IDs de processo e permite
    que processos sejam matados caso o limite de processos que você pode
    criar seja atingido.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro.Define variáveis e associações de teclas para Readline.
    
    Associa uma sequência de teclas para uma função Readline ou uma macro
    ou define uma variável de Readline. A sintaxe de argumento sem opção é
    equivalente àquela encontrada em ~/.inputrc, mas deve ser passada como
    um argumento singular.
    
    Opções:
      -m  mapa-teclas    Usa MAPA-TECLAS como mapa de teclas para a duração
                         deste comando. Nomes de mapa de teclas aceitáveis
                         são emacs, emacs-standard, emacs-meta, emacs-ctlx,
                         vi, vi-move, vi-command e vi-insert.
      -l                 Lista nomes de funções.
      -P                 Lista nomes e associações de função.
      -p                 Lista funções e associações em uma forma que pode ser
                         usada como entrada.
      -S                 Lista sequências de teclas que chamam macros e seus
                         valores
      -s                 Lista sequências de teclas que chamam macros e seus
                         valores em uma forma que pode ser usada como entrada.
      -V                 Lista nomes e valores de variáveis
      -v                 Lista nomes e valores de variáveis em uma forma que
                         pode ser usada como entrada.
      -q  nome-função    Consulta sobre quais teclas chamam a função informada.
      -u  nome-função    Desassocia todas teclas que estão associadas à função
                         informada.
      -r  seq-teclas     Remove a associação para SEQ-TECLAS.
      -f  arquivo        Lê associações de tecla de ARQUIVO.
      -x  seq-teclas:comando-shell
                         Faz com que COMANDO-SHELL seja executado ao inserir
                         SEQ-TECLAS.
      -X                 Lista sequência de teclas associadas com -x e comandos
                         associados em uma forma que pode ser usada como
                         entrada.
    
    Se os argumentos permanecerem após o processamento da opção, as opções -p
    e -P os tratarão como nomes de comando readline e restringirão a saída a
    esses nomes.
    
    Status de saída:
    `bind' retorna 0 a mesmo que uma opção desconhecida seja fornecida ou
    um erro ocorrer.Define e remove definições de opções de shell.
    
    Altera a configuração de cada opção shell NOME_OPÇÃO. Sem qualquer
    argumento de opção, lista cada NOME_OPÇÃO fornecido, ou todas as
    opções de shell se nenhum NOME_OPÇÃO forem fornecidos, com uma
    indicação de se cada uma está definida ou não.
    
    Opções:
      -o	restringe NOME_OPÇÃO àqueles definidos para usar com `set -o'
      -p	imprime cada opção shell com uma indicação de seu status
      -q	suprime a saída
      -s	habilita (set) com NOME_OPÇÃO
      -u	desabilita (unset) com NOME_OPÇÃO
    
    Status de saída:
    Retorna sucesso, se NOME_OPÇÃO estiver habilitado; falha, se uma
    opção inválida for fornecida ou NOME_OPÇÃO estiver desabilitado.Define atributo de exportação para variáveis shell.
    
    Marca cada NOME para exportação automática para o ambiente dos comandos
    executados subsequentemente. Se VALOR for fornecido, atribui VALOR antes
    de exportar.
    
    Opções:
      -f	faz referência a funções do shell
      -n	remove a propriedade de exportação para cada NOME
      -p	exibe uma lista de todas as variáveis ou funções exportadas
    
    Um argumento de `--' desabilita processamento de opções posteriores.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    NOME seja inválido.Define ou remove definição de valores das opções e dos parâmetros posicionais
do shell:
    
    Altera o valor de opções e de parâmetros posicionais do shell ou mostra
    os nomes ou valores de variáveis shell.
    
    Opções:
      -a  Marca variáveis, que foram modificadas ou criadas, para exportação.
      -b  Notifica sobre terminação de trabalho imediatamente.
      -e  Sai imediatamente se um comando sai com um status não-zero.
      -f  Desabilita a geração de nome de arquivo ("globbing").
      -h  Memoriza a localização de comandos à medida em que são procurados.
      -k  Todos argumentos de atribuição são colocados no ambiente para um
          comando, e não apenas aqueles que precedem o nome do comando.
      -m  Controle de trabalho está habilitado.
      -n  Lê comandos, mas não os executa.
      -o nome-opção
          Define a variável correspondendo a nome-opção:
              allexport    mesmo que -a
              braceexpand  mesmo que -B
              emacs        usa interface de edição de linha estilo Emacs
              errexit      mesmo que -e
              errtrace     mesmo que -E
              functrace    mesmo que -T
              hashall      mesmo que -h
              histexpand   mesmo que -H
              history      habilita histórico de comandos
              ignoreeof    shell não vai sair após leitura de EOF
              interactive-comments
                           permite mostrar comentários em comandos interativos
              keyword      mesmo que -k
              monitor      mesmo que -m
              noclobber    mesmo que -C
              noexec       mesmo que -n
              noglob       mesmo que -f
              nolog        atualmente aceito, mas ignorado
              notify       mesmo que -b
              nounset      mesmo que -u
              onecmd       mesmo que -t
              physical     mesmo que -P
              pipefail     o valor de retorno de uma linha de comandos é o
                           status do último comando a sair com status não-zero,
                           ou zero se nenhum comando saiu com status não zero
              posix        altera o comportamento do bash, onde a operação
                           padrão diverge dos padrões do Posix para
                           corresponder a estes padrões
              privileged   mesmo que -p
              verbose      mesmo que -v
              vi           usa interface de edição de linha estilo vi
              xtrace       mesmo que -x
      -p  Ligado sempre que IDs de usuário real e efetivo não corresponderem.
          Desabilita processamento do arquivo $ENV e importação de funções da
          shell. Ao desligar essa opção, causa o uid e o gid efetivo serem
          os uid e gid reais.
      -t  Sai após a leitura e execução de um comando.
      -u  Trata limpeza (unset) de variáveis como um erro quando substituindo.
      -v  Mostra linhas de entrada do shell na medida em que forem lidas.
      -x  Mostra comandos e seus argumentos na medida em que forem executados.
      -B  o shell vai realizar expansão de chaves
      -C  Se definido, não permite arquivos normais existentes serem
          sobrescritos por redirecionamento da saída.
      -E  Se definido, a armadilha ERR é herdada por funções do shell.
      -H  Habilita substituição de histórico estilo "!". Essa sinalização está
          habilitada por padrão quando  shell é interativa.
      -P  Se definida, não resolve links simbólicos ao sair de comandos, tais
          como `cd' (que altera o diretório atual).
      -T  Se definido, a armadilha DEBUG e RETURN são herdadas por funções do shell.
      --  Atribui quaisquer argumentos restantes aos parâmetros posicionais.
          Se não houver argumentos restantes, os parâmetros posicionais são
          limpos (unset).
      -   Atribui quaisquer argumentos restantes aos parâmetros posicionais.
          As opções -x e -v são desligadas.
    
    Se -o for fornecido sem nome de opção, `set' imprime as configurações de
    opção de shell atuais. Se +o for fornecido sem nome de opção, `set' imprime
    uma série de comandos do `set' para recriar as configurações de opção atuais.
    
    Usar +, ao invés de -, causa essas sinalizações serem desligadas. As
    sinalizações também podem ser usadas por meio de chamada do shell. As
    sinalizações atualmente definidas podem ser encontradas em $-. Os n ARGs
    restantes são parâmetros posicionais e são atribuídos, em ordem, a $1, $2,
    .. $n. Se nenhuma ARG for fornecido, todas as variáveis shell são
    mostradas.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida.Define valores e atributos de variável.
    
    Um sinônimo para `declare'. Veja `help declare'.Define valores e atributos de variável.
    
    Declara variáveis e a elas fornece atributos. Se nenhum NOME for fornecido,
    exibe os atributos e valores de todas as variáveis.
    
    Opções:
      -f	restringe ação ou exibição dos nomes e definições de funções
      -F	restringe exibição a nomes de função apenas (mais número de linha
      		e arquivo fonte, na depuração)
      -g	cria variáveis globais quando usado em uma função do shell;
      		do contrário, ignorado
      -I	se estiver criar uma variável local, herda os atributos e o valor
      		de uma variável com o mesmo nome em um escopo anterior
      -p	exibe os atributos e valores de cada NOME
    
    Opções que definem atributos:
      -a	para fazer NOMEs serem arrays indexados (se houver suporte)
      -A	para fazer NOMEs serem arrays associativos (se houver suporte)
      -i	para fazer NOMEs terem o atributo `integer'
      -l	para converter o valor de cada NOME para minúsculo em sua atribuição
      -n	fazer de NOME uma referência à variável chamada por seu valor
      -r	para fazer de NOMEs somente leitura
      -t	para fazer NOMEs terem o atributo `trace'
      -u	para converter o valor de cada NOME para maiúsculo em sua atribuição
      -x	pra fazer NOMEs exportar
    
    Usar `+' ao invés de `-' desliga o atributo dado, exceto por a, A e r.
    
    Variáveis com o atributo `integer' têm sua avaliação aritmética (veja o
    comando `let') realizada quando é atribuído um valor à variável.
    
    Quando usado em uma função, `declare' torna NOMEs local, da mesma forma
    que o comando `local'. A opção `-g' suprime este comportamento.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida tenha sido fornecida ou
    ocorrer um erro de atribuição de variável.Comandos shell correspondendo à palavra-chave `Comandos shell correspondendo às palavras-chave `Opções do shell:
Desloca parâmetros posicionais.
    
    Renomeia os parâmetros posicionais $N+1,$N+2 ... até $1,$2 ...  Se N não
    for fornecido, presume-se que ele seja 1.
    
    Status de saída:
    Retorna sucesso, a menos que N seja negativo ou maior que $#.Sinal %dEspecifica como argumentos são completados por Readline.
    
    Para cada NOME, especifica como argumentos são completados. Se nenhuma
    opção ou NOMEs forem fornecidos, exibe as especificações existente para
    completar em uma forma que permite-as serem usadas como entrada.
    
    Opções:
      -p	imprime especificações existentes de completar em um formato usável
      -r	remove uma especificação de completar para cada NOME ou, se nenhum
    		NOME for fornecido, todas as especificações de completar
      -D	aplica as completações e ações como sendo o padrão para comandos
    		sem qualquer especificação definida
      -E	aplica as completações e ações para tentativa de completar
    		comandos -- "vazios" em uma linha vazia
      -I	aplica completações e ações para a palavra inicial (geralmente o
    		comando)
    
    Ao tentar completar, as ações são fornecidas na ordem em que as opções
    de letras de caixa alta são listadas acima. Se várias opções forem fornecidas,
    a opção -D tem precedência sobre -E, e ambos têm precedência sobre -I.
    sobre -E.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    ocorra um erro.ParadoParado (sinal)Parado (entrada tty)Parado (saída tty)Parado(%s)Suspende execução do shell.
    
    Suspende a execução deste shell até que receba um sinal SIGCONT.
    A menos que seja forçado, `shells` de login e `shells' de sem
    controle de trabalho não podem ser suspensas.
    
    Opções:
      -f	força a suspensão, ainda que o shell seja um de login ou
        	seu controle de trabalho não esteja habilitado.
    
    Status de saída:
    Retorna sucesso, a menos que controle de trabalho não esteja habilitado
    ou ocorra um erro.TIMEFORMAT: `%c': caractere de formato inválidoTerminadoAs mensagens de correio em %s foram lidas
Há trabalhos em execução.
Há trabalhos parados.
Há NENHUMA GARANTIA, na extensão permitida pela lei.Esses comandos shell são definidos internamente. Digite `help' para ver essa
lista. Digite `help NOME' para descobrir mais sobre a função `NOME'.
Use `info bash' para descobrir mais sobre o shell em geral.
Use `man -k' ou `info' para descobrir mais sobre comandos que não estão nesta
lista.

Um asterisco (*) próximo ao nome significa que o comando está desabilitado.

Este é um software livre; você é livre para alterar e redistribuí-lo.Tratamento de sinais e outros eventos.
    
    Define e ativa manipuladores a serem executados quando o shell recebe
    sinais ou outras condições.
    
    AÇÃO é um comando a ser lido e executado quando o shell recebe o
    ESPEC_SINAL do(s) sinal(is). Se AÇÃO for vazio (e um único ESPEC_SINAL
    for informado) ou `-', cada sinal especificado é redefinido para seu
    valor original. Se AÇÃO for uma string nula, cada ESPEC_SINAL é ignorado
    pela seu shell e pelos comados chamados por ela.
    
    Se um ESPEC_SINAL for EXIT (0), AÇÃO é executado na saída do shell.
    Se ESPEC_SINAL for DEBUG, AÇÃO é executado antes de todo comando simples
    e selecionado em outros comandos. Se ESPEC_SINAL for RETURN, AÇÃO é
    executado toda vez que uma função ou um script shell executados pelos
    comandos internos `.' ou `source' finalizarem suas execuções.
    Um ESPEC_SINAL sendo ERR significa executar AÇÃO toda vez que uma falha
    do comando poderia causar o shell sair, quando a opção -e está habilitada.
    
    Se nenhum argumento for fornecido, `trap' imprime a lista de comandos
    associados a cada sinal capturado em um formato que pode ser reutilizado
    como entrada de shell para restaurar as mesmas disposições de sinal.
    
    Opções:
      -l	imprime uma lista de nomes de sinais e seus números
      		correspondentes
      -p	exibe os comandos associados a cada ESPEC_SINAL em um formato
      		que pode ser reutilizado como entrada de shell; ou para todos
      		os sinais de `trap' se nenhum argumento for fornecido
      -P	exibe os comandos associados a cada ESPEC_SINAL. Pelo menos
      		um ESPEC_SINAL deve ser fornecido. -P e -p não podem ser
      		usados ​​juntos.
    
    Cada ESPEC_SINAL é um nome de sinal em <signal.h> ou um número
    de sinal. Nomes de sinais são sensíveis a caracteres maiúsculo e
    minúsculo e o prefixo SIG (sinal) é opcional. Um SINAL pode ser enviado
    para o shell com "kill -SINAL $$".
    
    Status de saída:
    Retorna sucesso, a menos que um ESPEC_SINAL seja inválido ou
    uma opção inválida seja fornecida.Digite `%s -c "help set"' para mais informações sobre as opções do shell.
Digite `%s -c help' para mais informações sobre os comandos internos do shell.
Sinal desconhecido #%dErro desconhecidoStatus desconhecidoRemove valores e atributos de variáveis e funções do shell.
    
    Para cada NOME, remove a variável ou função correspondente.
    
    Opções:
      -f    trata cada NOME como uma função de shell
      -v    trata cada NOME como uma variável de shell
      -n    trata cada NOME como um nome referência e remove o valor em si
            ao invés da variável a qual ele se refere
    
    Se opções, `unset' primeiro tenta remover uma variável e, se falhar,
    tenta remover uma função.
    
    Algumas variáveis não podem ser removida; veja também `readonly'.
    
    Status de saída:
    Retorna sucesso, a menos que uma opção inválida seja fornecida ou
    um NOME seja somente-leitura.Condição urgente de Entrada/SaídaUtilização:	%s [opção-longa-GNU] [opção] ...
	%s [opção-longa-GNU] [opção] arquivo-de-script ...
Use "%s" para sair do shell.
Uso o comando `bashbug' para relatar erros.
Sinal 1 definido pelo usuárioSinal 2 definido pelo usuárioEspera por conclusão de trabalho e retorna o status de saída.
    
    Espera por cada processo identificado por um ID, o que pode ser um ID
    de processo ou uma especificação de trabalho, e relata seu status de
    término. Se ID não for fornecido, espera por todos os processos filhos
    ativos e o status de retorno é zero. Se ID é uma especificação de
    trabalho, espera por todos os processos naquela sequência de comandos
    dos trabalhos.
    
    Se a opção -n for fornecida, espera pelo próximo trabalho terminar e
    retorna seu status de trabalho.
    
    Se a opção -p for fornecida, o identificador de processo ou trabalho do
    trabalho, ao qual o status de saída é retornado, é atribuído à variável
    VAR nomeada pelo argumento da opção.A variável terá sua definição
    removida inicialmente, antes de qualquer atribuição. Isso é útil somente
    quando a opção -n for fornecida.
    
    Se a opção -f for fornecida, e o controle de tarefas estiver habilitado,
    aguarda o ID especificado concluir, em vez de aguardar que altere
    o status.
    
    Status de saída:
    Retorna o status do último ID; falha, se ID for inválido ou uma opção
    inválida for fornecida, ou se -n é fornecida e o shell possui nenhum
    filho inesperado.Espera por conclusão de processo e retorna o status de saída.
    
    Espera por cada processo especificado por um PID e relata seu status
    de término. Se o PID não for fornecido, espera por todos os processos
    filhos atualmente ativos e o status de retorno é zero. PID deve ser
    um ID de processo.
    
    Status de saída:
    Retorna o status do último ID; falha, se ID for inválido ou uma opção
    inválida for fornecida.Janela mudadaEscreve argumentos para a saída padrão.
    
    Exibe os ARGs na saída padrão seguido por uma nova linha.
    
    Opções:
      -n	não anexa uma nova linha
    
    Status de saída:
    Retorna sucesso, a menos que ocorra um erro de escrita.Escreve argumentos para a saída padrão.
    
    Exibe os ARGs, separados por um único caractere de espaço e seguido
    por uma nova linha, na saída padrão.
    
    Opções:
      -n	não anexa uma nova linha
      -e	habilita interpretação de escapes de barra invertida a seguir
      -E	explicitação suprime interpretação de escapes de barra invertida
    
    `echo' interpreta os caracteres escapados por barra invertida:
      \a	alerta (bipe)
      \b	backspace
      \c	suprime futuras saídas
      \e	caractere de escape
      \E	caractere de escape
      \f	alimentação de formulário (form feed)
      \n	nova linha
      \r	retorno de carro (carrier return)
      \t	TAB horizontal
      \v	TAB vertical
      \\	barra invertida
      \0nnn	o caractere cujo código ASCII é NNN (octal).  NNN pode
      		ter 0 a 3 dígitos octais
      \xHH	o caractere de 8 bits cujo valor é HH (hexadecimal).  HH
      		pode ter um ou dois dígitos hexa
      \uHHHH	o caractere Unicode cujo valor é o valor hexadecimal HHHH.
    		HHHH pode ter um a quatro dígitos hexa.
      \UHHHHHHHH  o caractere Unicode cujo valor é o valor hexadecimal
    		HHHHHHHH. HHHHHHHH pode ter um a oito dígitos hexa.
    
    Status de saída:
    Retorna sucesso, a menos que ocorra um erro de escrita.Você tem mensagem de correio em $_Você tem mensagem nova de correio em $_[ arg... ][[ expressão ]]`%c': comando incorreto`%c': caractere de formato inválido`%c': caractere de modo simbólico inválido`%c': operador de modo simbólico inválido`%c': especificação de formato de tempo inválida`%s': impossível desassociar (unbind)`%s': não foi desassociar no comando keymap`%s': nome de apelido (alias) inválido`%s': nome de mapa de teclas inválido`%s': nome de variável inválido para referência de nome`%s': é um comando interno especial`%s': faltando caractere de formato`%s': não é um identificador de processo (pid) nem é uma especificação de trabalho válida`%s': não é um identificador válido`%s': nome de função desconhecidaesperava `)'esperava `)', encontrado %sesperava `:' para expressão condicionaladd_process: pid %5ld (%s) marcado como ainda vivoalias [-p] [nome[=valor] ... ]all_local_variables: nenhum contexto de função no escopo atualredirecionamento ambíguoargumentoesperava argumentoerro de sintaxe aritmética na expressãoerro de sintaxe aritmética na atribuição de variávelerro de sintaxe aritmética: operador aritmético inválidoerro de sintaxe aritmética: esperava operandorequer suporte a variável de arraytentativa de atribuição para algo que não é uma variávelsubscrito de array incorretotipo de comando incorretoconector incorretointerpretador incorretodesvio incorretosubstituição incorreta: sem "`" de fechamento em %ssubstituição incorreta: sem `%s' de fechamento em %spágina do bash: <http://www.gnu.org/software/bash>
bash_execute_unix_command: impossível localizar mapa de teclas para comandobg [espec_job ...]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m mapa-teclas] [-f arquivo] [-q nome] [-u nome] [-r seq-teclas] [-x seq-teclas:comando-shell] [seq-teclas:função-de-readline ou comando-readline]expansão de chaves: impossível alocar memória para %sexpansão de chaves: falha ao alocar memória para %s elementosexpansão de chaves: falha ao alocar memória para `%s'break [n]erro de programação: token incorreto passado para expassign()builtin [comando-interno-shell [arg ...]]caller [expr]possível retornar (`return') apenas de uma função ou script carregado (com `source')somente pode ser usado em uma funçãoimpossível alocar novo descritor de arquivo (fd) para a entrada do `bash' a partir do fd %dimpossível atribuir fd a variávelimpossível alterar localeimpossível criarimpossível criar arquivo temporário para here-documentimpossível duplicar fd (descritor de arquivo) %d para fd %dimpossível duplicar `pipe' %s como descritor de arquivo (fd) %dimpossível executarimpossível executar o arquivo binárioimpossível localizar %s no objeto compartilhado %s: %simpossível obter limiteimpossível criar um processo filho para substituição do comandoimpossível criar um processo filho para a substituição do processoimpossível criar um `pipe' para substituição do comandoimpossível criar `pipe' para a substituição do processoimpossível modificar limiteimpossível abririmpossível abrir `pipe' %s para leituraimpossível abrir `pipe' %s para escritaimpossível abrir objeto compartilhado %s: %simpossível abrir arquivo temporárioimpossível sobrescrever arquivo existenteimpossível lerimpossível redirecionar a entrada padrão para /dev/nullimpossível redefinir modo `nodelay' para o descritor de arquivo (fd) %dimpossível simultaneamente definir e remover definição de opções do shellimpossível definir gid para %d: gid efetivo %dimpossível definir grupo do processo do terminal (%d)impossível definir uid para %d: uid efetivo %dimpossível simultaneamente remover definição de uma função e uma variávelpossível iniciar o depurador; modo de depuração desabilitadoimpossível suspenderimpossível suspender um shell de loginimpossível usar `-f' para criar funçõesimpossível usar mais de um dentre -anrwcase PALAVRA in [PADRÃO [| PADRÃO]...) COMANDOS ;;]... esaccd [-L|[-P [-e]]] [-@] [dir]`setpgid' filho (%ld para %ld)command [-pVv] comando [arg ...]comando não encontradosubstituição de comando: byte nulo ignorado na entradacommand_substitute: impossível duplicar o `pipe' como descritor de arquivo (fd) 1compgen [-V nome_var] [-abcdefgjksuv] [-o opção] [-A ação] [-G global] [-W lista_de_palavras] [-F função] [-C comando] [-X filtro] [-P prefixo] [-S sufixo] [palavra]complete [-abcdefgjksuv] [-pr] [-DEI] [-o opção] [-A ação] [-G global] [-W lista_de_palavras] [-F função] [-C comando] [-X filtro] [-P prefixo] [-S sufixo] [nome ...]completion: função `%s' não encontradacompopt [-o|+o opção] [-DEI] [nome ...]esperava operador binário condicionalcontinue [n]coproc [NOME] comando [redirecionamentos]impossível localizar /tmp, por favor crie!cprintf: `%c': caractere de formato inválidoatualdeclare [-aAfFgiIlnrtux] [nome[=valor] ...] ou declare -p [-aAfFilnrtux] [nome ...]excluindo trabalho parado %d com grupo de processo %lddescribe_pid: %ld: o identificador do processo (pid) não existepilha de diretórios está vaziaíndice de pilha de diretóriosdirs [-clpv] [+N] [-N]disown [-h] [-ar] [espec_job ... | pid ...]divisão por 0carregamento dinâmico não está disponívelecho [-n] [arg ...]echo [-neE] [arg ...]nome de variável array vazionome de arquivo vazioenable [-a] [-dnps] [-f arquivo] [nome ...]erro ao criar fluxo em buffererro ao obter atributos do terminalerro ao importar a definição da função para `%s'erro ao obter o diretório atualerro ao definir atributos do terminaleval [arg ...]eval: excedido o nível máximo de aninhamento de `eval' (%d)exec [-cl] [-a nome] [comando [argumento ...]] [redirecionamento ...]execute_coproc: coproc [%d:%s] ainda existeexit [n]esperava `)'exponente menor que 0export [-fn] [nome[=valor] ...] ou export -p [-f]esperava uma expressãoexcedido o nível de recursividade da expressãofc [-e editor] [-lnr] [primeiro] [último] ou fc -s [antigo=novo] [comando]fg [espec_job]descritor de arquivo fora dos limitesrequer argumento arquivofor (( exp1; exp2; exp3 )); do COMANDOS; donefor NOME [in PALAVRAs ...] ; do COMANDOS; doneidentificador de processo (pid) %d bifurcado (fork) aparece no trabalho em execução %dproblema ao analisar formato: %squadro não encontradofree: chamado com argumento de bloco já liberadofree: chamado com argumento de bloco não alocadofree: tamanhos de porções do início e do fim são diferentesfree: esvaziamento de pilha detectado; magic8 corrompidofree: esvaziamento de pilha detectado; mh_nbytes fora do limitefunction NOME { COMANDOS ; } ou NOME () { COMANDOS ; }function_substitute: impossível duplicar o arquivo anônimo como saída padrãofunction_substitute: impossível abrir arquivo anônimo para saídaversões futuras do shell vão forçar avaliação como um substituto aritméticogetcwd: impossível acessar os diretórios pais (anteriores)getopts optstring nome [arg ...]hash [-lr] [-p caminho] [-dt] [nome ...]hashing está desabilitadohelp [-dms] [padrão ...]ajuda não disponível nesta versãohere-document na linha %d delimitado pelo fim do arquivo (desejava `%s')history [-c] [-d posição] [n] ou history -anrw [arquivo] ou history -ps arg [arg...]posição no históricoespecificação do históriconúmero	comando
esperava identificador após pré-acréscimo ou pré-decréscimoif COMANDOS; then COMANDOS; [ elif COMANDOS; then COMANDOS; ]... [ else COMANDOS; ] fiinitialize_job_control: getpgrp falhouinitialize_job_control: disciplina da linhainitialize_job_control: nenhum controle de trabalho em plano de fundoinitialize_job_control: setpgidbase aritmética inválidabase inválidacaractere inválido na %d na exportstr para %sdescritor de arquivo inválidotipo inválido de ordem de globnúmero do hexa inválidoconstante inteira inválidanúmero inválidonúmero octal inválidoexpressão regular inválida `%s'expressão regular inválida `%s': %snúmero de sinal inválidoo trabalho %d iniciou sem controle de trabalhoespec_job [&]jobs [-lnprs] [espec_job ...] ou jobs -x comando [args]kill [-s espec_sinal | -n num_sinal | -espec_sinal] pid | espec_job ... ou kill -l [espec_sinal]último comando: %s
let ARG [ARG ...]limitelinha %d: edição de linha não habilitadafunção de carregamento para %s retorna falha (%d): não foi carregadalocal [opção] nome[=valor] ...sair
logout [n]número de loopsmake_here_document: tipo da instrução incorreto %dmake_local_variable: nenhum contexto de função no atual escopomake_redirection: instrução de redirecionamento `%d' fora do limitemalloc: bloco socado em lista livremalloc: asserção falhou: %s
mapfile [-d delim] [-n número] [-O origem] [-s número] [-t] [-u fd] [-C chamada] [-c quantidade] [array]excedido o número máximo de here-documentmigrar o processo para outra CPUfaltando `)'faltando `]'faltando dígito hexa para \xfaltando dígito unicode para \%csem suporte a operações de redeSem `=' na exportstr para %ssem `%c' de fechamento em %snenhum comando encontradonenhum tópico de ajuda corresponde a `%s'.  Tente `help help' ou `man -k %s' ou `info %s'.nenhum controle de trabalhonenhum controle de trabalho neste shellsem correspondência: %snenhum outro diretórionenhuma outra opção permitida com `-x'não se está executando atualmente função de completaçãonão é um shell de login: use `exit'diretório nulonúmero octalsignificativo apenas em um loop de `for', `while' ou `until'erro de `pipe'pop_scope: cabeça de shell_variables não é um escopo de ambiente temporáriopop_var_context: cabeça de shell_variables não é um contexto de funçãopop_var_context: nenhum contexto em no global_variablespopd [-n] [+N | -N]falha iminente de energiamodo de impressão bonita ignorada em shells interativosprint_command: conector incorreto `%d'printf [-v var] formato [argumentos]progcomp_insert: %s: COMPSPEC NULOprogrammable_completion: %s: possível loop de nova tentativaerro de programaçãopushd [-n] [+N | -N | dir]pwd [-LP]read [-ers] [-a array] [-d delim] [-i texto] [-n nchars] [-N nchars] [-p mensagem] [-t tempo] [-u fd] [nome ...]erro de leiturareadarray [-d delim] [-n número] [-O origem] [-s número] [-t] [-u fd] [-C chamada] [-c quantidade] [array]readonly [-aAf] [nome[=valor] ...] ou readonly -prealloc: chamado com argumento de bloco não alocadorealloc: tamanhos de porções do início e do fim são diferentesrealloc: esvaziamento de pilha detectado; magic8 corrompidorealloc: esvaziamento de pilha detectado; mh_nbytes fora do limiteesvaziamento de pilha de recursãoerro de redirecionamento: impossível duplicar fdregister_alloc: %p já na tabela como alocado?
register_alloc: tabela de `alloc' está cheia com FIND_ALLOC?
register_free: %p já na tabela como livre?
restriçãorestrição: impossível redirecionar saídareturn [n]run_pending_traps: valor incorreto em trap_list[%d]: %prun_pending_traps: manipulador de sinal é SIG_DFL, enviando novamente %d (%s) para mim mesmosave_bash_input: buffer já existe para o novo descritor de arquivo (fd) %derro de leitura do arquivo de scriptselect NOME [in PALAVRAS ... ;] do COMANDOS; doneset [-abefhkmnptuvxBCEHPT] [-o opção-nome] [--] [-] [arg ...]nível do shell (%d) muito grande, redefinindo para 1shell_getc: shell_input_line_size (%zu) excede SIZE_MAX (%lu): linha truncadashift [n]número de shiftshopt [-pqsu] [-o] [nome_opção ...]sigprocmask: %d: operação inválidasource [-p caminho] arquivo [argumentos]start_pipeline: `pipe' de pgrptamanho da stringsuspend [-f]erro de sintaxeerro de sintaxe na expressão condicionalerro de sintaxe na expressão condicional: token inesperado `%s'erro de sintaxe próximo a `%s'erro de sintaxe próximo ao token inesperado `%s'erro de sintaxe próximo ao token inesperado `%s' enquanto procurava por `%c' correspondenteerro de sintaxe: `%s' inesperadoerro de sintaxe: `((%s))'erro de sintaxe: `;' inesperadoerro de sintaxe: requer expressão aritméticaerro de sintaxe: fim prematuro do arquivoerro de sintaxe: fim inesperado do arquivo do comando `%s' na linha %derro de sintaxe: fim inesperado de arquivo do comando na linha %dfalha iminente do sistematest [expr]time [-p] pipelinenúmero excessivo de argumentostrap [-Plp] [[ação] espec_sinal ...]manipulador de trap: excedido o nível máximo de manipulador de captura (%d)trap_handler: sinal incorreto %dtype [-afptP] nome [nome ...]typeset [-aAfFgiIlnrtux] nome[=valor] ... ou typeset -p [-aAfFilnrtux] [nome ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limite]umask [-p] [-S] [modo]unalias [-a] nome [nome ...]encontrado EOF inesperado enquanto procurava por `]]'encontrado EOF inesperado enquanto procurava por `%c' correspondenteencontrado EOF inesperado enquanto procurava por `)' correspondenteargumento inesperado `%s' para operador binário condicionalargumento inesperado `%s' para operador unário condicionalargumento inesperado para operador binário condicionalargumento inesperado para operador unário condicionaltoken inesperado %d em comando condicionaltoken inesperado `%c' em comando condicionaltoken inesperado `%s' em comando condicionaltoken inesperado `%s', esperava operador binário condicionaltoken inesperado `%s', esperava`)'desconhecidoerro de comando desconhecidounset [-f] [-v] [-n] [nome ...]until COMANDOS; do COMANDOS-2; donevalor muito grande para esta base de numeraçãovariables - Nomes e significados de algumas variáveis do shellwait [-fn] [-p var] [id ...]wait [pid ...]wait: o pid %ld não é um processo filho deste shellwait_for: Sem registro do processo %ldwait_for_job: trabalho %d está paradowaitchld: ativando WNOHANG para evitar bloqueio indefinidoaviso: aviso: a opção -C pode não funcionar como esperadoaviso: a opção -F pode não funcionar como esperadowhile COMANDOS; do COMANDOS-2; doneerro de escritaxtrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: descritor de arquivo inválidoxtrace_set: ponteiro de arquivo NULO{ COMANDOS ; }