File: it.gmo

package info (click to toggle)
bash 5.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 43,860 kB
  • sloc: ansic: 134,738; sh: 8,866; yacc: 5,966; makefile: 4,697; perl: 4,105; asm: 48; awk: 23; sed: 16
file content (3113 lines) | stat: -rw-r--r-- 190,431 bytes parent folder | download
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
3113
d<5\&03*13\3<o3$3
333
33414H4	^4h4z4444445 5@5T5(p5/5;5$6:*6e6x6(6'6"677)57_73}77&7&7/8/A8q8.8+88/8$959S9"o9999-99:2:(C:l::::::):(;G;e;;;;;; ;!<7<M<,g<< <<+<
=0='J=.r==0==>>/>?>R>i>>>>
>>>&?B?X?/v???)??@3*@^@{@@@&@@@@
AA0A OA9pA#AAAABHE2IBIRIF^IJJJJ	J	J%JQ
+Q[1[m"\]2]_]aIcT"gwimhq+wz{|?jmbO
OڟԠg$uv|W
FKf?Եж  	0:CW	kuN|˷JM,=HfDAb	P0xW,%aeFF>Lai>|sf
Z|9D$$%	%g%a*i*z*****G,
r,},,,5,O-BS.x.B6ER66
66}6F9XZ99*9
9

::>\@k@UAEF
+F6FGFYF%xF$F'FF%F%G>G.XGGG!GGHH)H'@H0hHH9HHII% I.FI4uI)II$IJ-J
>JLJ\J&eJ'J3J9J"K64K6kKK.6L:eL3L	LL!L
M3'M[M=zMMM
M)M"N'BNjNyN&NN*N*N)"O)LOvOO%O%O OPP8P-DP#rP1P&P&P&Q5=Q.sQQQ!Q!Q:RMRjR RR0R1RS#S(S$T3T$@T#eT'TTST.
U<U[UqUU)U
UUUVV8V,GVtV!V,V"V!W'W.6W?eW+WWWW1W.X#BX@fX
XXX-X,Y'HYpYY.Y,Y&Y*Z0IZ6zZGZ:ZP4[([ [)[[
\"$\?G\T\\\
]8]VJ]&]']4]%^E^]^(j^^^^^^^_#2_V_"l__5_O_"`4`F`	L`V`5o```
`
`+`9a;Ia$aada$-bRbqb}bbb bbbcH#clc{ccc"c+cd#d2d4?d
tdDd?d,e1eEe2\e!e"e"e0e(f:f	Ufp_f
fff1Bg/tg)g-g3g0h&Jh2qh5h,h
i"i
5i1@iIri4ii.j>7j)vjNj	jj k"&k%Ikok
kkk&k=kl'-lGUllll,l$mAAm<mmmmm&n6/nfnnQn*no4o%Qo.wo-o7o6p2Cp1vp*p,p,q;-q#iqqqq#qq6r?r\r*kr"rr6r	s-s-Hs#vss's'sst#t2vQv<iv%vvvv
v)v(w!Awcw	xww"w!w+wxx%:x`x)yxx$x5x@yM\y(y<yz%z7Bz7zz)zzz:{!L{5n{{;{2{B-|Bp||8|4
}?}<Y}}-} }*}*~E~\~/q~~,~~4~3Qc~!"/#0"Ps ʀ)##0T m7Ɓ$ہ1
K?Y>?؂60&g Ã׃&
1Pp'#DŽ*#2;V8ͅ$>1#p	̆6ֆ
#7%F%l$2,4E;U|/T7Ց

"ɘ
1m_+0BԹc
 az
hsAD kFHc	|LA0
&M
&t
*








/<SC!
	?g a!r	#|#D#+-g
-U82p8>>CBFFHKNPQVsS[S&TUW
YYYl]	ajmho`Wic͊
Ӌދ֐ސ
+710	bl!;͓	G[ؕQ4O֞\/#0

ߩeu$
İְ%,,>1k*Rȱ179i-#Ѳ2%($N
s~)6E\	pz.<>16+h+ٵ0!3R6W7'7_??NGθ	 )?
iMw'ŹQ(?&h7$ں55$J4o <Ż=;@<| ڼ13-S%+ӽ51EO0>ƾ0E6@|)Կ*();R 1;1m%)C%m#0.$S,@""#):d$t -/&1V?,6,=;@y,
6H2[F
)&
/4,d2%8658l/:8OIC_1=!o--G[d@QF,*>/Oj+z#"4$M(r&>W+	"J!(J
R]0mEK30dp(!@M Z{!-_('7-W
7SQ@1#?%<#b"9	t!r69R;2=#94]>H<W)`
5l:8's.?2
L=	 &)6HU0hG 2^5#"4"-JPE',ATR+'Sj))(>=C98,.!.PC%!3 U;v2(!:9\>>!!C(W.!

Jc}s..I>SF;i[3Kh9nQ0"_v
NQL~TL]<G(&Xu|dr4H% &O0P]WR
aM$ Cm
1*=4E	`1$87tXb`jmc/["*V\;H)-QL+xV6H,2|3y\YOGh)do+<@?Pl7eb,n!;6t7^8ZN\U[MEXgRT_Ip,:F?^Ul51BD]!Yp FUA/:If3J2:9s=Z&V>qM_G0%K={d(TSSEw$ayA-rK#Zu}v"gD#A+b5?
	94PacDq^@'e`2
.Jz-N{(wO@/5z'BkiB%~k	6f<)8>YxR*!W'C#CWjotimed 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 1complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: function `%s' not foundcompopt [-o|+o option] [-DEI] [name ...]conditional binary operator expectedcontinue [n]coproc [NAME] command [redirections]could not find /tmp, please create!cprintf: `%c': invalid format charactercurrentdeclare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]deleting stopped job %d with process group %lddescribe_pid: %ld: no such piddirectory stack emptydirectory stack indexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]division by 0dynamic loading not availableecho [-n] [arg ...]echo [-neE] [arg ...]empty array variable 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-16 11:00+0000
Last-Translator: Luca Vercelli <luca.vercelli.to@gmail.com>
Language-Team: Italian <tp@lists.linux.it>
Language: it
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural= (n != 1)
X-Loco-Source-Locale: it_IT
X-Bugs: Report translation errors to the Language-Team address.
X-Loco-Parser: loco_parse_po
X-Generator: Loco https://localise.biz/
tempo di attesa scaduto per l'input: auto-logout
	opzione -%s oppure -o
	-ilrsD o -c comando o -O opzione_shopt		(solo invocazione)

malloc: %s:%d: asserzione fallita
  (dir: %s) (core dump creato) riga ! PIPELINE$%s: impossibile assegnare in questo modo%c%c: opzione non valida%s può essere invocato tramite %s ha exportstr null%s è %s
%s è una funzione
%s è un comando interno di shell
%s è una parola chiave di shell
%s è un comando interno di shell speciale
%s ha "%s" come alias
hash effettuato su %s (%s)
%s non è associato ad alcun tasto.
%s fuori dall'intervallo%s%s%s: %s (il token dell'errore è "%s")%s: %s fuori dall'intervallo%s: %s: impossibile aprire come FILE%s: %s valore di compatibilità fuori dall'intervallo%s: %s: valore non valido per il descrittore del file di traccia%s: %s: deve essere usato un indice nell'assegnazione di un array associativo%s: %s:%d: impossibile allocare %lu byte%s: %s:%d: impossibile allocare %lu byte (%lu byte allocati)%s: è una directory%s: specifica di job ambigua%s: gli argomenti devono essere ID di processo o di job%s: si sta assegnando un intero a un riferimento a nome%s: specifica del percorso di rete errata%s: sostituzione errata%s: atteso operatore binario%s: i nomi dei comandi interni non possono contenere slash%s: impossibile allocare %lu byte%s: impossibile allocare %lu byte (%lu byte allocati)%s: impossibile assegnare%s: impossibile assegnare una lista a un membro di un array%s: impossibile assegnare a un indice non numerico%s: impossibile convertire un array associativo in uno indicizzato%s: impossibile convertire un array indicizzato in uno associativo%s: impossibile eliminare: %s%s: impossibile eliminare variabili array in questo modo%s: impossibile eseguire: file richiesto non trovato%s: impossibile esportare%s: non si può ereditare un valore da un tipo incompatibile%s: impossibile rimuovere%s: impossibile rimuovere: %s in sola lettura%s: riferimento circolare a nome%s: comando interno dinamico già caricato%s: errore di espressione
%s: file troppo grande%s: file non trovato%s: il primo carattere non spazio non è «"»%s: tabella di hash vuota
%s: espansione della cronologia non riuscita%s: host sconosciuto%s: tentativo di definizione della funzione ignorato%s: opzione non valida -- %c
%s: atteso intero%s: nome azione non valido%s: argomento non valido%s: origine dell'array non valida%s: quantum di callback non valido%s: specifica di descrittore di file non valida%s: espansione indiretta non valida%s: specifica di job non valida%s: argomento di limite non valido%s: numero di righe non valido%s: opzione non valida%s: nome dell'opzione non valido%s: servizio non valido%s: nome dell'opzione di shell non valido%s: specifica di segnale non valida%s: specifica di timeout non valida%s: timestamp non valido%s: nome di variabile non valido%s: nome variabile non valido per il riferimento a nome%s: è una directory%s: il job %d è già in background%s: il job è terminato%s: la specifica di job richiede un `%%' iniziale%s: riga %d: %s: superato il massimo livello di annidamento di funzioni (%d)%s: superata la massima profondità di riferimenti a nome (%d)%s: superato il massimo livello di annidamento di sorgenti (%d)%s: separatore mancante%s: una variabile nameref non può puntare a se stessa%s: nessuna specifica di completamento%s: non ci sono job%s: controllo dei job non attivo%s: job inesistente%s: non è una funzione%s: non è un file normale%s: non è un comando interno di shell%s: non è una variabile array%s: non è un array indicizzato%s: non caricato dinamicamente%s: non trovato%s: è necessario un argomento numerico%s: l'opzione richiede un argomento%s: l'opzione richiede un argomento -- %c
%s: parametro non impostato%s: parametro nullo o non impostato%s: assegnazione di array composti tra virgolette deprecata%s: funzione in sola lettura%s: variabile in sola lettura%s: la variabile di riferimento non può essere un array%s: rimosso attributo nameref%s: limitato%s: limitato: impossibile specificare "/" nei nomi dei comandi%s: expressione di sottostringa < 0%s: atteso operatore unario%s: variabile non assegnata%s: uso: %s: non si può assegnare un valore a questa variabile"

(( espressione ))(core dump creato) (dir ora: %s)
++: l'assegnazione richiede un lvalue--: l'assegnazione richiede un lvalue. [-p percorso] nomefile [argomenti]/dev/(tcp|udp)/host/port non supportata senza rete/tmp deve essere un nome di directory valido<nessuna directory corrente>Istruzione ABORTInterruzione...Aggiunge directory allo stack.
    
    Aggiunge una directory in cima allo stack delle directory o ruota lo
    stack stesso, mettendo come primo elemento la directory di lavoro
    corrente. Senza argomenti scambia le prime due directory in cima.
    
    Opzioni:
      -n	Evita il normale cambio di directory quando vengono aggiunte
    		directory allo stack, così da manipolare solo lo stack stesso.
    
    Argomenti:
      +N	Ruota lo stack in modo che l'N-sima directory (contando
    		a partire da sinistra dell'elenco mostrato da "dirs", iniziando da
    		zero) sia in cima.
    
      -N	Ruota lo stack in modo che l'N-sima directory (contando
    		a partire da destra dell'elenco mostrato da "dirs", iniziando da
    		zero) sia in cima.
    
      dir	Aggiunge DIR in cima allo stack delle directory, facendone la
    		directory di lavoro corrente.
    
    Il comando interno "dirs" mostra lo stack delle directory.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornito un argomento valido o
    non abbia successo il cambio di directory.Aggiunge una directory in cima allo stack delle directory o ruota lo
    stack stesso, mettendo come primo elemento l'attuale directory
    di lavoro. Senza argomenti scambia le prime due directory in cima.
    
    Opzioni:
      -n	Evita il normale cambio di directory quando vengono aggiunte
    	directory allo stack, così da manipolare solo lo stack stesso.
    
    Argomenti:
      +N	Ruota lo stack in modo che l'N-sima directory (contando
    	a partire da sinistra dell'elenco mostrato da "dirs", iniziando da
    	zero) sia in cima.
    
      -N	Ruota lo stack in modo che l'N-sima directory (contando
    	a partire da destra dell'elenco mostrato da "dirs", iniziando da
    	zero) sia in cima.
    
      dir	Aggiunge DIR in cima allo stack delle directory, facendone la
    	directory di lavoro corrente.
    
    Il comando interno "dirs" visualizza lo stack delle directory.Timer (profilo)Timer (virtuale)SvegliaCiclo "for" aritmetico.
    
    Equivalente a
    	(( ESPR1 ))
    	while (( ESPR2 )); do
    		COMANDI
    		(( ESPR3 ))
    	done
    ESPR1, ESPR2 e ESPR3 sono espressioni aritmetiche. Se viene omessa
    qualche espressione, si comporta come se valesse 1.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Rilevato trace/breakpointChiamata di sistema errataSegnale inesistentePipe interrottaErrore di busLimite di CPUCambia la directory di lavoro della shell.
    
    Cambia la directory corrente a DIR. La DIR predefinita è il valore della variabile
    HOME della shell. Se DIR è "-", viene convertito in $OLDPWD.
    
    La variabile CDPATH definisce il percorso di ricerca per la directory che contiene
    DIR. I nomi di directory alternative in CDPATH sono separati da un due punti (:).
    Una nome nullo di directory corrisponde alla directory corrente. Se DIR inizia
    con uno slash (/), CDPATH non viene usato.
    
    Se la directory non viene trovata e l'opzione di shell "cdable_vars" è impostata,
    si assume che la parola sia un nome di variabile. Se questa variabile ha un valore,
    viene usato per DIR.
    
    Opzioni:
      -L	forza a seguire i collegamenti simbolici: risolve i link simbolici
    		in DIR dopo aver processato le istanze di ".."
      -P	usa la struttura fisica della directory senza seguire i collegamenti
    		simbolici: risolve i link simbolici in DIR prima
    		di aver processato le istanze di ".."
      -e	se viene fornita l'opzione -P e non può essere determinata con successo
    		la directory di lavoro corrente, esce con uno stato diverso da zero
      -@	su sistemi che lo supportano, presenta un file con attributi
    		estesi come una directory contenente gli attributi del file
    
    Il valore predefinito è seguire i collegamenti simbolici, come se fosse specificato "-L".
    ".." viene processato rimuovendo la componente del percorso immediatamente precedente, fino a uno slash o all'inizio di DIR.
    
    Stato di uscita:
    Restituisce 0 se viene cambiata la directory o se $PWD è impostata con successo quando
    viene usato -P; altrimenti un valore diverso da zero.Processo figlio concluso o fermatoNomi e usi comuni delle variabili di shell.
    
    BASH_VERSION	Informazioni sulla versione di Bash.
    CDPATH	Un elenco di directory da cercare separate da un due punti
    	fornite come argomenti per "cd".
    GLOBIGNORE	Un elenco di modelli separato da un due punti che descrivono
    		i nomi di file che devono essere ignorati dall'espansione di percorso.
    HISTFILE	Il nome del file in cui è memorizzata la cronologia dei comandi.
    HISTFILESIZE	Il numero massimo di righe che può contenere questo file.
    HISTSIZE	Il numero massimo di righe di cronologia a cui può accedere
    		una shell in esecuzione.
    HOME	Il nome completo del percorso della propria directory di login.
    HOSTNAME	Il nome dell'host corrente.
    HOSTTYPE	Il tipo di CPU sulla quale è in esecuzione questa versione di
    		bash.
    IGNOREEOF	Controlla il comportamento della shell quando riceve un
    		carattere EOF come unico input. Se impostato, il suo valore
    		corrisponde al numero di caratteri EOF che si possono trovare in una
    		fila in una riga vuota prima che la shell esca (predefinito 10).
    		Quando viene rimosso, EOF indica la fine dell'input.
    MACHTYPE	Una stringa che descrive l'attuale sistema dove è in
    		esecuzione bash.
    MAILCHECK	Quanto spesso, in secondi, Bash controlla la presenza di
    		nuova posta.
    MAILPATH	Un elenco di nomi di file separati da un due punti usati da
    		Bash per controllare la presenza di nuova posta.
    OSTYPE	La versione di Unix sulla quale è in esecuzione questa versione
    		di bash.
    PATH	Un elenco di directory, separato da un due punti, da analizzare
    		quando si cercano i comandi.
    PROMPT_COMMAND	Un comando da eseguire prima della stampa di ciascun prompt
    		primario.
    PS1		La stringa del prompt primario.
    PS2		La stringa del prompt secondario.
    PWD		Il nome completo del percorso della directory corrente.
    SHELLOPTS	Un elenco di opzioni di shell abilitate, separate da un due punti.
    TERM	Il nome del tipo di terminale corrente.
    TIMEFORMAT	Il formato di output per le statistiche temporali visualizzato
    		dalla parola riservata "time".
    auto_resume	Non null significa che una parola di un comando che compare
    		da sola in una riga viene prima cercata nell'elenco dei job correnti
    		fermati. Se trovato, questo job viene messo in primo piano.
    		Un valore pari a "exact" significa che la parola del comando deve
    		corrispondere esattamente a un comando nell'elenco dei job fermati.
    		Un valore pari a "substring" significa che la parola del comando
    		deve corrispondere a una sottostringa del job. Qualsiasi altro valore
    		significa che il comando deve essere un prefisso di un lavoro fermato.
    histchars	Caratteri che controllano l'espansione della cronologia e la
    		sostituzione rapida. Il primo carattere è quello di sostituzione
    		della cronologia, solitamente "!". Il secondo è il carattere di
    		"sostituzione rapida", solitamente "^". Il terzo è il carattere
    		di "commento della cronologia", solitamente "#".
    HISTIGNORE	Un elenco di modelli separato da un due punti usato per
    		decidere quale comando dovrebbe essere salvato nell'elenco della
    		cronologia.
ContinuatoCopyright (C) 2025 Free Software Foundation, Inc.Crea un coprocesso chiamato NOME.
    
    Esegue il COMANDO in modo asincrono, con lo standard output e lo standard
    input del comando connessi attraverso una pipe ai descrittori di file
    assegnati agli indici 0 e 1 di una variabile di array NOME nella shell in
    esecuzione. Il NOME predefinito è "COPROC".
    
    Stato di uscita:
    Il comando coproc restituisce stato di uscita 0.DEBUG attenzione: Definisce variabili locali.
    
    Crea una variabile locale chiamata NOME fornendogli un VALORE. L'OPZIONE può
    essere una qualsiasi opzione accettata da "declare".
    
    Se uno dei NOMI è "-", salva localmente l'insieme delle opzioni di shell
    e le riattiva quando la funzione termina.
    
    Le variabili locali possono essere usate solo all'interno di una funzione; sono
    visibili solo alla funzione nella quale sono definite e ai relativi figli.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita un'opzione non valida,
    non si riscontri un errore nell'assegnazione di variabili, o la shell non
    stia eseguendo una funzione.Definisce o visualizza alias.
    
    Senza argomenti, "alias" stampa l'elenco degli alias nella forma
    riusabile "alias NOME=VALORE" sullo standard output.
    
    Altrimenti, un alias è definito per ogni NOME a cui è fornito un VALORE.
    Uno spazio finale in VALORE determina un controllo della parola successiva
    che andrà a sostituire l'alias quando viene espanso.
    
    Opzioni:
      -p	stampa tutti gli alias definiti in un formato riusabile
    
    Stato di uscita:
    alias restituisce vero a meno che non venga fornito un NOME per il quale
    non sia stato definito alcun alias.Definisce una funzione di shell.
    
    Crea una funzione di shell chiamata NOME. Quando invocato come un
    semplice comando, NOME esegue i COMANDI nel contesto della shell
    chiamante. Quando viene invocato NOME, gli argomenti sono passati alla
    funzione come $1...$n e il nome della funzione si trova in $FUNCNAME.
    
    Stato di uscita:
    Restituisce successo a meno che il NOME non sia in sola lettura.Visualizza lo stack delle directory.
    
    Visualizza l'elenco delle directory ricordate attualmente. Le directory
    vengono inserite nell'elenco con il comando "pushd"; è possibile
    andare a ritroso nell'elenco con il comando "popd".
    
    Opzioni:
      -c	Pulisce lo stack delle directory eliminandone tutti gli elementi
      -l	Non stampa le directory con prefisso tilde relative alla propria
    		directory home
      -p	Stampa lo stack delle directory una voce per riga
      -v	Stampa lo stack delle directory una voce per riga usando come
    		prefisso la posizione nello stack
    
    Argomenti:
      +N	Mostra l'N-sima voce contando a partire da sinistra dell'elenco
    		mostrato da dirs quando invocato senza opzioni, iniziando da zero.
    
      -N	Mostra l'N-sima voce contando a partire da destro dell'elenco
    		mostrato da dirs quando invocato senza opzioni, iniziando da zero.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita un'opzione non valida o si riscontri un errore.Visualizza informazioni sui comandi interni.
    
    Visualizza un breve sommario dei comandi interni. Se viene specificato il
    MODELLO fornisce un aiuto dettagliato su tutti i comandi corrispondenti al
    MODELLO, altrimenti viene stampato l'elenco degli argomenti di aiuto.
    
    Opzioni:
      -d	Visualizza una breve descrizione per ciascun argomento
      -m	Visualizza l'uso in formato pseudo manpage
      -s	Visualizza solo una breve sintassi sull'uso per ciascun argomento che
    		corrisponde al MODELLO
    
    Argomenti:
      MODELLO	Modello che specifica un argomento di aiuto
    
    Stato di uscita:
    Restituisce successo a meno che non venga trovato il MODELLO o sia fornita una opzione non valida.Visualizza informazioni sul tipo di comando.
    
    Per ciascun NOME, indica come sarebbe interpretato se fosse usato come
    un nome di comando.
    
    Opzioni:
      -a	visualizza tutte le posizioni contenenti un eseguibile chiamato NOME,
    		includendo alias, comandi interni e funzioni se e solo se
    		non viene usata anche l'opzione "-p"
      -f	non esegue la ricerca delle funzioni di shell
      -P	forza una ricerca del PERCORSO per ciascun NOME anche se è un alias,
    		un comando interno o una funzione, e restituisce il nome del file su disco
    		che sarebbe eseguito
      -p	restituisce o il nome del file su disco che sarebbe eseguito,
    		oppure niente se "type -t NOME" non restituisce "file".
      -t	visualizza una singola parola che è una tra "alias", "keyword",
    		"function", "builtin", "file" or "", se il NOME è
    		rispettivamente un alias, una parola riservata di shell, una
    		funzione di shell, un comando interno di shell,
    		un file su disco oppure non trovato
    
    Argomenti:
      NOME	Il nome del comando da interpretare.
    
    Stato di uscita:
    Restituisce successo se tutti i NOMI vengono trovati; insuccesso in caso
    contrario.Visualizza o esegue comandi dall'elenco della cronologia.
    
    fc è usato per elencare, modificare e rieseguire comandi dall'elenco della cronologia.
    PRIMO e ULTIMO possono essere numeri che specificano l'intervallo oppure PRIMO può
    essere una stringa, nel qual caso significa il comando più recente che inizia con
    quella stringa.
    
    Opzioni:
      -e EDITOR	Seleziona l'editor da usare. Il predefinito è FCEDIT, quindi EDITOR,
    		infine vi
      -l 	Elenca le righe invece di modificarle
      -n	Omette i numeri di riga nell'elencare i comandi
      -r	Inverte l'ordine delle righe (elenca prima le più recenti)
    
    Con il formato "fc -s [pat=rep ...] [comando]", il COMANDO è
    rieseguito dopo aver effettuato la sostituzione VECCHIO=NUOVO.
    
    Un alias utile da usare insieme è r="fc -s", in modo che digitando "r cc"
    viene eseguito l'ultimo comando che inizia con "cc" e digitando "r" riesegue
    l'ultimo comando.
    
    Il comando interno history opera anche sull'elenco della cronologia.
    
    Stato di uscita:
    Restituisce successo o lo stato del comando eseguito, non zero se si riscontra un errore.Visualizza o manipola l'elenco della cronologia.
    
    Visualizza l'elenco della cronologia con i numeri di riga, aggiungendo a ciascuna voce
    modificata il prefisso "*". Un argomento pari a N elenca solo le ultime N voci.
    
    Opzioni:
      -c	pulisce la cronologia eliminando tutte le voci
      -d posiz	elimina la voce della cronologia alla posizione POSIZ.
    		Posizioni negative indicano di contare all'indietro dalla fine
    		dell'elenco della cronologia.
      -d inizio-fine	elimina le voci della cronologia iniziando alla
    		posizione INIZIO fino alla posizione FINE.
    
      -a	accoda righe al file della cronologia relative alla sessione attuale
      -n	legge tutte le righe non ancora lette dal file della cronologia
    		e le accoda all'elenco della cronologia
      -r	legge il file della cronologia e ne accoda il contenuto all'elenco
    		della cronologia
      -w	scrive la cronologia corrente nel file della cronologia
    
      -p	effettua l'espansione della cronologia su ciascun ARG e visualizza il
    		risultato senza memorizzarlo nell'elenco della cronologia
      -s	accoda gli ARG all'elenco della cronologia come una voce singola
    
    Se viene fornito il NOMEFILE, viene usato come file della cronologia. 
    Altrimenti, se HISTFILE è valorizzato, viene usato quest'ultimo. Se

    NOMEFILE non viene fornito, e HISTFILE non è impostato oppure è null, le
    opzioni -a, -n, -r e -w non hanno effetto e termina con successo.
    
    Se la variabile $HISTTIMEFORMAT è impostata e non è nulla, il suo valore
    viene usato come una stringa di formato per strftime(3) per stampare
    l'orario associato a ciascuna voce di cronologia visualizzata. Altrimenti
    non viene stampato alcun orario.
    
    Il comando interno fc opera anche sull'elenco della cronologia.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore.Visualizza o imposta la maschera del modo file.
    
    Imposta la maschera di creazione file dell'utente su MODO. Se MODO
    viene omesso, stampa il valore corrente della maschera.
    
    Se MODO inizia con una cifra, è interpretato con un numero ottale;
    altrimenti come una stringa di modo simbolico come quella accettata da
    chmod(1).
    
    Opzioni:
      -p	Se MODO viene omesso, mostra in una forma che possa essere riusata
    		come input
      -S	Rende simbolico l'output; altrimenti viene mostrato un numero
    		ottale
    
    Stato di uscita:
    Restituisce successo a meno che MODO non sia valido o venga fornita una
    opzione non valida.Visualizza i possibili completamenti a seconda delle opzioni.
    
    È pensata per essere usata all'interno di una funzione di shell per
    generare dei possibili completamenti. Se è presente l'argomento
    opzionale PAROLA, genera le corrispondenze relative a PAROLA.
    
    Se viene fornita l'opzione -V, salva i possibili completamenti
    nell'array VARNAME invece che stamparli sullo standard output.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o
    si riscontri un errore.Visualizza le durate dei processi.
    
    Stampa i tempi utente e di sistema accumulati per la shell e per tutti
    i relativi processi figli.
    
    Stato di uscita:
    Sempre successo.Visualizza lo stato dei job.
    
    Elenca i job attivi. SPECJOB limita l'output a quei job.
    Senza opzioni, è visualizzato lo stato di tutti i job attivi.
    
    Opzioni:
      -l	Elenca gli ID dei processi in aggiunta alle normali informazioni
      -n	Elenca solo i processi che hanno cambiato stato dall'ultima
    		notifica
      -p	Elenca solo l'ID dei processi
      -r	Limita l'output ai job in esecuzione
      -s	Limita l'output ai processi fermati
    
    Se viene fornito -x, il COMANDO è eseguito dopo che tutte le specifiche
    dei job che appaiono in ARGOMENTI sono state rimpiazzate con l'ID del
    processo leader nel gruppo di quel job.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o
    si riscontri un errore.
    Se viene usato -x, restituisce lo stato di uscita del COMANDO.Visualizza l'elenco delle directory attualmente in memoria. Le directory
    vengono inserite nell'elenco con il comando "pushd"; è possibile
    andare a ritroso nell'elenco con il comando "popd".
    
    Opzioni:
      -c	Pulisce lo stack delle directory eliminandone tutti gli elementi
      -l	Non stampa la tilde come prefisso per le directory relative alla
    	propria directory home
      -p	Stampa lo stack delle directory una voce per riga
      -v	Stampa lo stack delle directory una voce per riga usando la
    	posizione nello stack stesso come prefisso
    
    Argomenti:
      +N	Visualizza l'N-sima voce contando a partire da sinistra
    	dell'elenco mostrato da dirs quando invocato senza opzioni, iniziando
    	da zero.
    
      -N	Visualizza l'N-sima voce contando a partire da destra dell'elenco
	mostrato da dirs quando invocato senza opzioni, iniziando da zero.CompletatoCompletato(%d)Istruzione EMTAbilita o disabilita comandi interni di shell.
    
    Abilita o disabilita comandi interni di shell. La disabilitazione permette di
    eseguire un comando su disco che abbia lo stesso nome del comando interno
    di shell senza dover usare un nome di percorso completo.
    
    Opzioni:
      -a	Stampa un elenco di comandi interni mostrando se sono abilitati o meno
      -n	Disabilita ogni NOME o visualizza un elenco di comandi interni disabilitati
      -p	Stampa l'elenco dei comandi interni in un formato riusabile
      -s	Stampa solo i nomi dei comandi interni "speciali" Posix
    
    Opzioni che controllano il caricamento dinamico:
      -f	Carica il comando interno NOME dall'oggetto condiviso NOMEFILE
      -d	Rimuove un comando interno caricato con -f
    
    Senza opzioni viene abilitato ogni NOME.
    
    Su sistemi con caricamento dinamico, la variabile di ambiente BASH_LOADABLES_PATH
    definisce un percorso di ricerca per la directory contenente i NOMEFILE, che
    non contiene uno slash. Può includere "." per forzare la ricerca nella
    directory corrente.
    
    Per usare il comando "test" trovato in $PATH invece di quello interno della
    shell, digitare "enable -n test".
    
    Stato di uscita:
    Restituisce successo a meno che NOME non sia un comando interno di shell o si riscontri un errore.Valuta espressioni aritmetiche.
    
    L'ESPRESSIONE è valutata seguendo le regole di valutazione
    aritmetica. Equivalente a «let "ESPRESSIONE"».
    
    Stato di uscita:
    Restituisce 1 se ESPRESSIONE è valutata 0, altrimenti restituisce 0.Valuta espressioni aritmetiche.
    
    Valuta ciascun ARG come una espressione aritmetica. La valutazione è
    effettuata con interi a larghezza fissa senza alcun controllo sull'overflow,
    sebbene la divisione per 0 sia catturata e contrassegnata come un errore.
    Il seguente elenco di operatori è raggruppato per livelli di operatore
    di uguale precedenza. I livelli sono elencati in ordine di precedenza
    decrescente.
    
    	id++, id--	Incremento e decremento successivo di variabile
    	++id, --id	Incremento e decremento precedente di variabile
    	-, +		Meno e più unari
    	!, ~		Negazione logica e bit a bit
    	**		Esponenziazione
    	*, /, %		Moltiplicazione, divisione, resto
    	+, -		Addizione, sottrazione
    	<<, >>		Scorrimento bit a bit sinistro e destro
    	<=, >=, <, >	Comparazione
    	==, !=		Uguaglianza, disuguaglianza
    	&		AND bit a bit
    	^		XOR bit a bit
    	|		OR bit a bit
    	&&		AND logico
    	||		OR logico
    	espr ? espr : espr
    			Operatore condizionale
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	Assegnazione
    
    Le variabili di shell sono ammesse come operandi. Il nome della variabile è
    sostituito dal suo valore (forzato a un intero a larghezza fissa) all'interno
    di una espressione. Non è necessario che la variabile abbia il proprio attributo
    intero abilitato per essere usata in una espressione.
    
    Gli operatori sono valutati in ordine di precedenza. Le sottoespressioni
    tra parentesi sono valutate per prime e possono avere la precedenza sulle
    regole sopradescritte.
    
    Stato di uscita:
    Se l'ultimo ARG viene valutato pari a 0 restituisce 1, altrimenti restituisce 0.Valuta espressioni condizionali.
    
    Esce con stato 0 (vero) o 1 (falso) in base all'analisi
    dell'ESPR. Le espressioni possono essere unarie o binarie. Le
    espressioni unarie sono spesso usate per esaminare lo stato di un file.
    Esistono anche operatori di stringa e di comparazione numerica.
    
    Il comportamento del test dipende dal numero degli argomenti. Leggere
    la pagina di manuale di bash per le specifiche complete.
    
    Operatori su file:
    
      -a FILE        Vero se il file esiste.
      -b FILE        Vero se è un file speciale a blocchi.
      -c FILE        Vero se è un file speciale a caratteri.
      -d FILE        Vero se il file è una directory.
      -e FILE        Vero se il file esiste.
      -f FILE        Vero se il file esiste ed è un file normale.
      -g FILE        Vero se il file è un set-group-id.
      -h FILE        Vero se il file è un link simbolico.
      -L FILE        Vero se il file è un link simbolico.
      -k FILE        Vero se il file ha il suo bit "sticky" impostato.
      -p FILE        Vero se il file è una pipe con nome.
      -r FILE        Vero se il file è leggibile dall' utente corrente.
      -s FILE        Vero se il file esiste e non è vuoto.
      -S FILE        Vero se il file è un socket.
      -t FD          Vero se il descrittore di file è aperto su un terminale.
      -u FILE        Vero se il file è un set-user-id.
      -w FILE        Vero se il file è scrivibile dall'utente corrente.
      -x FILE        Vero se il file è eseguibile dall'utente corrente.
      -O FILE        Vero se l'utente corrente è il reale proprietario del
                     file.
      -G FILE        Vero se il gruppo dell'utente corrente è il reale
                     proprietario del file.
      -N FILE        Vero se il file è stato modificato dall'ultima volta
                     che è stato letto.
    
      FILE1 -nt FILE2  Vero se il file1 è più recente del file2 (in accordo
                        con la data di modifica).
    
      FILE1 -ot FILE2  Vero se il file1 è più vecchio del file2.
    
      FILE1 -ef FILE2  Vero se il file1 è un link hardware al file2.
    
    Operatori di stringa:
    
      -z STRINGA     Vero se la stringa è vuota.
    
      -n STRINGA     Vero se la stringa non è vuota.
    
      STRINGA1 = STRINGA2
                     Vero se le stringhe sono uguali.
      STRINGA1 != STRINGA2
                     Vero se le stringhe non sono uguali.
      STRINGA1 < STRINGA2
                     Vero se la STRINGA1 viene ordinata lessicograficamente
                     prima della STRINGA2.
      STRINGA1 > STRINGA2
                     Vero se la STRINGA1 viene ordinata lessicograficamente
                     dopo la STRINGA2.
    
    Altri operatori:
    
      -o OPZIONE     Vero se l'OPZIONE di shell è abilitata.
      -v VAR         Vero se la variabile di shell VAR è impostata.
      -R VAR         Vero se la variabile di shell VAR è impostata
                     ed è un riferimento a nome.
      ! ESPR         Vero se l'ESPR è falsa.
      ESPR1 -a ESPR2 Vero se entrambe le espressioni espr1 E espr2 sono vere.
      ESPR1 -o ESPR2 Vero se è vera almeno una delle due espressioni
                     espr1 O espr2.
    
      arg1 OP arg2   Test aritmetici. OP è uno tra -eq, -ne,
                     -lt, -le, -gt oppure -ge.
    
    Gli operatori aritmetici binari restituiscono vero se ARG1 è uguale, non
    uguale, più piccolo di, più piccolo o uguale, più grande di o più grande
    o uguale ad ARG2.
    
    Stato di uscita:
    Restituisce successo se l'ESPR viene valutata vera; insuccesso se l'ESPR
    viene valutata falsa o viene fornito un argomento non valido.Valuta l'espressione condizionale.
    
    Questo è un sinonimo del comando interno "test", ma l'ultimo argomento
    deve essere un "]" letterale per corrispondere al "[" di apertura.Esegue la PIPELINE, che può essere un semplice comando, e inverte lo stato di 
    ritorno della PIPELINE.

    Stato di uscita:
    La negazione logica dello stato di uscita della PIPELINE.Esegue un comando semplice o visualizza informazioni sui comandi.
    
    Esegue il COMANDO con gli ARGOMENTI ignorando la ricerca delle funzioni di shell o
    visualizza informazioni sui COMANDI specificati. Può essere usato per invocare comandi
    sul disco quando esiste una funzione con lo stesso nome.
    
    Opzioni:
      -p    usa un valore predefinito per il PERCORSO che garantisce che
            vengano trovate tutte le utilità standard
      -v    stampa una singola parola che indica il comando o il nome del
            file che invoca COMANDO
            "type"
      -V    stampa una descrizione più prolissa di ciascun COMANDO
    
    Stato di uscita:
    Restituisce lo stato di uscita del COMANDO o insuccesso se il COMANDO non viene trovato.Esegue argomenti come un comando di shell.
    
    Combina gli ARGOMENTI dentro una singola stringa usando il risultato
    come input per la shell ed esegue i comandi risultanti.
    
    Stato di uscita:
    Restituisce lo stato di uscita del comando o successo se il comando è nullo.Esegue i comandi finché un test non ha successo.
    
    Espande ed esegue i COMANDI-2 fino a quando il comando finale nei
    COMANDI ha uno stato di uscita diverso da zero.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Esegue i comandi finché un test ha successo.
    
    Espande ed esegue i COMANDI-2 fino a quando il comando finale nei
    COMANDI ha uno stato di uscita pari a zero.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Esegue comandi basati su condizioni.
    
    Viene eseguito l'elenco degli "if COMANDI". Se lo stato di uscita è
    zero viene eseguito l'elenco "then COMANDI", altrimenti viene eseguito
    l'elenco degli "elif COMANDI" e, se il loro stato è zero, viene
    eseguito l'elenco dei "then COMANDI" corrispondente e viene completato
    l'"if COMANDO". Altrimenti, viene eseguito l'elenco "else COMANDI",
    se presente. Lo stato di uscita dell'intero costrutto corrisponde a
    quello dell'ultimo comando eseguito, o zero se nessuna condizione provata
    è vera.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Esegue comandi basati sulla corrispondenza di modello.
    
    Esegue in modo selettivo COMANDI basati sulla PAROLA corrispondente al
    MODELLO. Il carattere "|" è usato per separare modelli multipli.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Esegue comandi per ciascun membro di un elenco.
    
    Il ciclo "for" esegue una sequenza di comandi per ciascun membro di
    un elenco di voci. Se "in PAROLE ...;" non è presente, allora viene
    assunto "in "$@"". Per ciascun elemento in PAROLE, NOME è impostato
    a quell'elemento e i COMANDI vengono eseguiti.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Esegue comandi da un file nella shell corrente.
    
    Legge ed esegue comandi da NOMEFILE nella shell corrente. Se viene
    passata l'opzione -p, l'argomento PATH viene trattato come una lista
    separata dai due punti di directory in cui cercare NOMEFILE. Se non
    viene passata -p, NOMEFILE viene ricercato nel $PATH.
    Se vengono forniti ARGOMENTI, essi diventano i parametri di posizione
    quando viene eseguito NOMEFILE.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito in NOMEFILE; insuccesso
    se il NOMEFILE non può essere letto.Esegue comandi condizionali.
    
    Restituisce uno stato di 0 o 1 a seconda della valutazione     dell'espressione condizionale ESPRESSIONE. Le espressioni sono composte
    dalle stesse basilari usate dal comando interno "test", e possono 
    essere combinate usando i seguenti operatori:
    
      ( ESPRESSIONE )	Restituisce il valore dell'ESPRESSIONE
      ! ESPRESSIONE		Vero se l'ESPRESSIONE è falsa; falso in caso contrario
      ESPR1 && ESPR2	Vero se sia ESPR1 che ESPR2 sono vere; falso in caso contrario
      ESPR1 || ESPR2	Vero se una tra ESPR1 ed ESPR2 è vera; falso in caso contrario
    
    Quando vengono usati gli operatori "==" e "!=", la stringa a destra dell'operatore
    è usata come un modello e ne viene effettuata la corrispondenza.
    Quando viene usato l'operatore "=~", la stringa a destra dell'operatore è valutata
    corrispondente a un'espressione regolare.
    
    Gli operatori && e || non valutano ESPR2 se ESPR1 è sufficiente a
    determinare il valore dell'espressione.
    
    Stato di uscita:
    0 o 1 a seconda del valore dell'ESPRESSIONE.Esegue comandi interni di shell.
    
    Esegue il COMANDO-INTERNO-SHELL con ARGOMENTI senza eseguire la ricerca
    di comandi. Questo è utile quando si desidera reimplementare un comando
    interno come una funzione di shell, ma è necessario eseguire il comando
    all'interno della funzione.
    
    Stato di uscita:
    Restituisce lo stato di uscita del COMANDO-INTERNO-SHELL, o falso se il
    COMANDO-INTERNO-SHELL non è un comando interno di shell.Uscita %dEsce da una shell di login.
    
    Esce da una shell di login con stato di uscita N. Restituisce un errore se non eseguito
    in una shell di login.Esce da cicli for, while o until.
    
    Esce da un ciclo FOR, WHILE o UNTIL. Se è specificato N, interrompe N cicli
    racchiusi.
    
    Stato di uscita:
    Lo stato di uscita è 0 a meno che N non sia maggiore o uguale a 1.Esce dalla shell.
    
    Esce dalla shell con uno stato N. Se N è omesso lo stato di uscita
    è quello dell'ultimo comando eseguito.Limite di fileEccezione in virgola mobileFormatta e stampa gli ARGOMENTI come indicato dal FORMATO.
    
    Opzioni:
      -v var	Assegna l'output alla variabile di shell VAR invece
    		di visualizzarlo sullo standard output
    
    FORMATO è una stringa di caratteri che contiene tre tipi di oggetto: caratteri
    semplici, che sono semplicemente copiati sullo standard output; sequenze di escape
    dei caratteri, che sono convertite e copiate sullo standard output;
    specifiche di formato, ognuna delle quali provoca la stampa del successivo argomento
    consecutivo.
    
    In aggiunta alle specifiche di formato standard csndiouxXeEfFgGaA
    descritte in printf(3), printf interpreta:
    
      %b	Espande le sequenze di escape di backslash nell'argomento corrispondente
      %q	Quota l'argomento in modo che possa essere riusato come input per la shell
      %Q	come %q, ma applica una precisione qualsiasi all'argomento
    		non quotato prima di quotarlo
      %(fmt)T	Visualizza la stringa della data/ora risultante dall'uso di
    		FMT come stringa di formato per strftime(3)
    
    Il formato è riutilizzato quanto necessario per consumare tutti gli
    argomenti. Se ci sono meno argomenti di quanti ne richieda il formato,
    le specifiche di formato di troppo si comportano come se venisse fornito
    un valore zero oppure una stringa null, come pertinente.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida o si riscontri
    un errore di scrittura o assegnazione.GNU bash, versione %s (%s)
GNU bash, versione %s-(%s)
Opzioni lunghe GNU:
Aiuto generale sull'utilizzo di software GNU: <http://www.gnu.org/gethelp/>
Raggruppa i comandi come un'unità.
    
    Esegue un insieme di comandi in un gruppo. Questo è un modo per
    reindirizzare un intero insieme di comandi.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo comando eseguito.Dati di input HFT in sospesoModalità di monitoraggio HFT concessaModalità di monitoraggio HFT revocatala sequenza sonora HFT è stata completataHOME non impostataChiusuraSenza nomeI/O prontoINFO: Istruzione non validaRichiesta di informazioniInterruzioneUccisoLicenza GPLv3+: GNU GPL versione 3 o successiva <http://gnu.org/licenses/gpl.html>
Marca la variabili di shell come non modificabili.
    
    Marca ciascun NOME in sola lettura; i valori di questi NOMI non possono
    essere modificati da un assegnamento successivo. Se viene fornito il
     VALORE, lo assegna prima di marcarlo in sola lettura.
    
    Opzioni:
      -a	fa riferimento alle variabili degli array indicizzati
      -A	fa riferimento alle variabili degli array associativi
      -f	fa riferimento alle funzioni di shell
      -p	visualizza un elenco di tutte le variabili oppure funzioni in sola
    		lettura, a seconda che venga passata o meno l'opzione -f
    
    Un argomento pari a "--" disabilita ulteriori analisi delle opzioni.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida
    o NOME non sia valido.Modifica o visualizza le opzioni di completamento.
    
    Modifica le opzioni di completamento per ciascun NOME, oppure, se non
    viene fornito alcun NOME, il completamento attualmente in esecuzione.
    Con nessuna OPZIONE fornita, stampa le opzioni di completamento per
    ciascun NOME o le specifiche di completamento correnti.
    
    Opzioni:
    	-o opzione	Imposta l'OPZIONE di completamento per ciascun NOME
    	-D		Cambia le opzioni per il completamento di comando "predefinito"
    	-E		Cambia le opzioni per il completamento di comando "vuoto"
    	-I		Cambia le opzioni per il completamento della parola iniziale
    
    Usando "+o" al posto di "-o" disabilita l'opzione specificata.
    
    Argomenti:
    
    Ciascun NOME si riferisce a un comando per il quale deve essere stata
    precedentemente definita una specifica di completamento con il comando
    interno "complete". Se non viene fornito alcun NOME, compopt deve
    essere richiamato da una funzione che generi attualmente
    completamenti, e le opzioni per questo generatore di completamenti
    attualmente in esecuzione sono modificate
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida
    o NOME non abbia una specifica di completamento definita.Modifica i limiti delle risorse di shell.
    
    Fornisce il controllo sulle risorse disponibili per la shell e per i processi
    che crea, sui sistemi che permettono tale controllo.
    
    Opzioni:
      -S	usa il limite di risorse "leggero"
      -H	usa il limite di risorse "pesante"
      -a	riporta tutti i limiti correnti
      -b	la dimensione del buffer del socket
      -c	la dimensione massima dei file di core creati
      -d	la dimensione massima di un segmento di dati di processo
      -e	la priorità massima di scheduling ("nice")
      -f	la dimensione massima dei file scritti dalla shell e dai suoi figli
      -i	il numero massimo di segnali pendenti
      -k	il numero massimo di k-code allocate per questo processo
      -l	la dimensione massima di memoria che un processo può bloccare
      -m	la dimensione massima di memoria utilizzabile (RSS)
      -n	il numero massimo di descrittori di file aperti
      -p	la dimensione del buffer della pipe
      -q	il numero massimo di byte nelle code messaggi POSIX
      -r	la priorità massima di scheduling in tempo reale
      -s	la dimensione massima dello stack
      -t	la quantità massima di tempo CPU in secondi
      -u	il numero massimo di processi utente
      -v	la dimensione della memoria virtuale
      -x	il numero massimo di lock dei file
      -P	il numero massimo di pseudoterminali
      -R	il tempo massimo per cui un processo in tempo reale può eseguire
    		prima di venire bloccato
      -T	il numero massimo di thread
    
    Non tutte le opzioni sono disponibili su tutte le piattaforme.
    
    Se viene fornito un LIMITE, questo sarà il nuovo valore della risorsa
    specificata; i valori LIMITE speciali "soft", "hard" e "unlimited"
    corrispondono rispettivamente al limite leggero corrente, al limite pesante
    corrente, e a nessun  limite.
    Altrimenti viene stampato il valore attuale della risorsa specificata.
    Se non viene fornita alcuna opzione, si assume -f.
    
    I valori sono ad incrementi di 1024-byte, ad eccezione di -t che è in
    secondi; -p che è ad incrementi di 512 byte; -R che è in microsecondi;
    -b che è in byte; e -e, -i, -k, -n, -q, -r, -u, -x e -P che accettano
    valori senza scala.
    
    In modalità POSIX i valori forniti a -c e -f sono ad incrementi di 512 byte.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida
    o venga riscontrato un errore.Sposta un job in primo piano.
    
    Mette il job identificato da SPEC_JOB in primo piano, rendendolo il
    job corrente. Se SPEC_JOB non è presente, viene usata la nozione di
    job corrente della shell.
    
    Stato di uscita:
    Stato del comando messo in primo piano, o insuccesso se si riscontra un errore.Sposta i job in background.
    
    Mette il job identificato da ogni SPEC_JOB in background, come se
    fossero stati avviati con "&". Se SPEC_JOB non è presente, viene
    usata la nozione di job corrente della shell.
    
    Stato di uscita:
    Restituisce successo a meno che il controllo dei job non sia abilitato o
    si riscontri un errore.Comando nullo.
    
    Nessun effetto; il comando non fa nulla.
    
    Stato di uscita:
    ha sempre successo.OLDPWD non impostataAnalizza gli argomenti di opzione.
    
    Getopts è usato dalle procedure di shell per analizzare i parametri
    posizionali come opzioni.
    
    STRINGAOPZ contiene le lettere di opzione da riconoscere; se una
    lettera è seguita da un due punti, ci si aspetta che l'opzione abbia
    un argomento, che dovrebbe essere separato da uno spazio.
    
    Ogni volta che viene evocato getopts posiziona l'opzione successiva
    nella variabile di shell $nome inizializzando il nome, se non esiste,
    e l'indice dell'argomento successivo da elaborare nella variabile di
    shell OPTIND. OPTIND è inizializzata a 1 ogni volta che viene invocata
    la shell o uno script di shell. Quando una opzione richiede un argomento,
    getopts posiziona tale argomento nella variabile di shell OPTARG.
    
    getopts riporta gli errori in uno o due modi. Se il primo carattere della
    STRINGAOPZ è un due punti, riporta gli errori in silenzio. In questa
    modalità non vengono stampati messaggi di errore. Se viene riscontrata una
    opzione non valida, getopts posiziona il carattere di opzione trovato in
    ARGOPZ. Se un argomento richiesto non viene trovato, getopts posiziona
    un ":" nel NOME e imposta ARGOPZ al carattere di opzione trovato. Se getopts
    non è in modalità silenziosa e viene riscontrata una opzione non valida, getopts
    posiziona "?" nel NOME e rimuove ARGOPZ. Se un argomento richiesto non viene
    trovato, viene posizionato un "?" nel NOME, ARGOPZ viene rimosso e viene stampato
    un messaggio diagnostico.
    
    Se il valore della variabile di shell ERROPZ è pari a 0, getopts disabilita
    la stampa dei messaggi di errore anche se il primo carattere della STRINGAOPZ
    non è un due punti. Il valore predefinito di ERROPZ è pari a 1.
    
    Getopts normalmente analizza i parametri posizionali, ma se vengono
    forniti degli argomenti come valori ARG, vengono analizzati questi ultimi.
    
    Stato di uscita:
    Restituisce successo se viene trovata una opzione, insuccesso se viene raggiunta
    la fine delle opzioni o viene riscontrato un errore.Stampa il nome della directory di lavoro corrente.
    
    Opzioni:
      -L	Stampa il valore di $PWD se contiene il nome della directory
    		di lavoro corrente
      -P	Stampa la directory fisica senza alcun collegamento simbolico
    
    In maniera predefinita "pwd" si comporta come se fosse specificato "-L".
    
    Stato di uscita:
    Restituisce 0 a meno che non venga fornita una opzione non valida o che la
    directory corrente non possa essere letta.UscitaLegge una riga dallo standard input e la divide in campi.
    
    Legge una singola riga dallo standard input o, se viene fornita l'opzione -u,
    dal descrittore di file FD. La riga è divisa in campi corrispondenti a
    parole dove la prima parola è assegnata al primo NOME, la seconda parola
    al secondo NOME e così via, con ciascuna parola rimanente assegnata al
    corrispondente ultimo NOME. Sono riconosciuti come delimitatori di parola
    solo quelli presenti in $IFS. Come impostazione predefinita, il carattere
    backslash viene usato come escape per i caratteri delimitatore e
    "a capo".
    
    Se non viene fornito alcun NOME, la riga letta è memorizzata nella variabile REPLY.
    
    Opzioni:
      -a array	Assegna le parole lette agli indici sequenziali della variabile
    		di ARRAY, iniziando da zero
      -d delim	Continua fino alla lettura del primo carattere di DELIM, invece
    		di un ritorno a capo 
      -e	Usa Readline per ottenere la riga
      -E	Usa Readline per ottenere la riga, e utilizza il completamento
    		predefinito d bash anziché quello predefinito di Readline
      -i testo	Usa TESTO come testo iniziale per Readline
      -n ncarat	Ritorna dopo la lettura di NCARAT caratteri invece di attendere
    		un a capo, ma rispetta un delimitatore se vengono letti meno di
    		NCARAT caratteri prima del delimitatore stesso
      -N ncarat	Ritorna solo dopo la lettura di NCARAT caratteri esatti, a meno che non si
    		riscontri un EOF o un time out di lettura, ignorando qualsiasi
    		delimitatore
      -p stringa	Visualizza la stringa PROMPT senza un a capo finale prima
    		del tentativo di lettura
      -r		Non ammette backslash per fare l'escape dei caratteri
      -s		Non fa l'echo dell'input proveniente da un terminale
      -t secondi	Va in timeout e restituisce insuccesso se non viene letta
    		una riga di input completa entro i SECONDI forniti. Il valore della
    		variabile TMOUT è il timeout predefinito. SECONDI può essere
    		una frazione. Se SECONDI è pari a 0, la lettura termina immediata-
    		mente, senza provare a leggere dati, restituendo successo
    		solo se l'input è disponibile sul descrittore di file specificato.
    		Se viene superato il timeout lo stato di uscita è maggiore di 128
      -u fd		Legge dal descrittore di file FD invece che dallo standard input
    
    Stato di uscita:
    Il codice restituito è zero a meno che non sia riscontrato un EOF, un
    timeout in lettura (nel qual caso sarà maggiore di 128), un errore di
    assegnazione di variabili, o venga fornito un descrittore di file non
    valido come argomento per -u.Legge le righe da un file in una variabile di array.
    
    Sinonimo per "mapfile".Legge righe dallo standard input in una variabile di array indicizzato.
    
    Legge righe dallo standard input nella variabile di ARRAY indicizzato,
    oppure dal descrittore di file FD se viene fornita l'opzione -u.
    La variabile MAPFILE è l'ARRAY predefinito.
    
    Opzioni:
      -d delim	Usa DELIM per terminare le righe, al posto di "a capo"
      -n numero		Copia al massimo NUMERO righe. Se NUMERO è 0, vengono
    		copiate tutte
      -O origine	Inizia assegnando all'ARRAY all'indice ORIGINE. L'indice
    		predefinito è 0
      -s numero 	Scarta le prime NUMERO righe lette
      -t		Rimuove un DELIMITATORE finale da ciascuna riga letta
      -u fd		Legge le righe da un descrittore di file FD invece che dallo
    		standard input
      -C callback	Esamina CALLBACK ogni volta che vengono lette un numero
    		QUANTITÀ di righe
      -c quantità	Specifica il numero di righe lette tra ciascuna chiamata
    		a CALLBACK
    
    Argomenti:
      ARRAY		Nome della variabile di array da usare per i dati dei file.
    
    Se viene fornito -C senza -c, il quanto predefinito è 5000. Quando
    viene analizzata CALLBACK, viene fornito l'indice dell'elemento di
    array successivo da assegnare e la riga da attribuire a quell'elemento
    come argomenti aggiuntivi.
    
    Se non viene fornito con una origine esplicita, il file di mappa rimuoverà
    l'ARRAY prima della relativa assegnazione.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida,
    ARRAY sia in sola lettura oppure non indicizzato.Blocco del recordRicorda o visualizza le posizioni dei programmi.
    
    Determina e ricorda il nome completo di percorso per ogni comando NOME. Se non
    viene fornito alcun argomento, sono visualizzate le informazioni sui comandi memorizzati.
    
    Opzioni:
      -d	Dimentica la posizione memorizzata di ogni NOME
      -l	Visualizza in un formato che può essere riusato come input
      -p nomepercorso	Usa NOMEPERCORSO come il nome completo di percorso per NOME
      -r	Dimentica tutte le posizioni memorizzate
      -t	Stampa la posizione memorizzata di ogni NOME, facendo
    		precedere ciascuna posizione con il NOME corrispondente se vengono
    		forniti valori NOME multipli
    Argomenti:
      NOME	Ogni NOME è ricercato in $PATH e aggiunto all'elenco
    		dei comandi memorizzati.
    
    Stato di uscita:
    Restituisce successo a meno che non sia trovato NOME o sia fornita una opzione non valida.Rimuove directory dallo stack.
    
    Rimuove voci dallo stack delle directory. Senza argomenti, rimuove
     la directory in cima allo stack e si sposta alla nuova prima directory.
    
    Opzioni:
      -n	Evita il normale cambio di directory quando vengono rimosse
    		directory dallo stack, così da manipolare solo lo stack stesso.
    
    Argomenti:
      +N	Rimuove l'N-sima voce contando a partire da sinistra dell'elenco
    		mostrato da "dirs", iniziando da zero. Per esempio: "popd +0"
    		rimuove la prima directory, "popd +1" la seconda.
    
      -N	Rimuove l'N-sima voce contando a partire da destra dell'elenco
    		mostrato da "dirs", iniziando da zero. Per esempio: "popd -0"
    		rimuove l'ultima directory, "popd -1" la penultima.
    
    Il comando interno "dirs" mostra lo stack delle directory.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornito un argomento non valido o non
    abbia successo il cambio di directory.Rimuove ogni NOME dall'elenco degli alias definiti.
    
    Opzioni:
      -a	rimuove tutte le definizioni di alias
    
    Restituisce successo a meno che un NOME non sia un alias esistente.Rimuove job dalla shell corrente.
    
    Rimuove ciascun argomento SPECJOB dalla tabella dei job attivi. Senza alcun
    SPECJOB, la shell usa la sua nozione del job corrente.
    
    Opzioni:
      -a	Rimuove tutti i job se non viene fornito uno SPECJOB
      -h	Marca ciascun SPECJOB in modo che non venga inviato un SIGHUP al
    		job se la shell lo riceve
      -r	Rimuove solo i job in esecuzione
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida
    o uno SPECJOB.Rimuove voci dallo stack delle directory. Senza argomenti, rimuove
    la directory in cima allo stack e passa alla nuova prima directory.
    
    Opzioni:
      -n	Evita il normale cambio di directory quando vengono rimosse
    	directory dallo stack, così da manipolare solo lo stack stesso.
    
    Argomenti:
      +N	Rimuove l'N-sima voce contando a partire da sinistra dell'elenco
    	mostrato da "dirs", iniziando da zero. Per esempio: "popd +0"
    	rimuove la prima directory, "popd +1" la seconda.
    
      -N	Rimuove l'N-sima voce contando a partire da destra dell'elenco
    	mostrato da "dirs", iniziando da zero. Per esempio: "popd -0"
    	rimuove l'ultima directory, "popd -1" la penultima.
    
    Il comando interno "dirs" visualizza lo stack delle directory.Sostituisce la shell con il comando fornito.
    
    Esegue il COMANDO, sostituendo questa shell con il programma specificato.
    Gli ARGOMENTI diventano gli argomenti per il COMANDO. Se il COMANDO non è specificato,
    ogni redirezione avrà effetto nella shell corrente.
    
    Opzioni:
      -a nome	Passa NOME come l'argomento zero per il COMANDO
      -c	Esegue il COMANDO con un ambiente vuoto
      -l	Posiziona un trattino nell'argomento zero per il COMANDO
    
    Se il comando non può essere eseguito una shell non interattiva esce, a meno che
    non venga impostata l'opzione di shell "execfail".
    
    Stato di uscita:
    Restituisce successo a meno che non sia trovato il COMANDO o si
    riscontri un errore di redirezione.Riporta il tempo speso nell'esecuzione della pipeline.
    
    Esegue la PIPELINE e stampa, quando termina, un sommario del tempo reale, tempo utente della CPU
    e tempo di sistema della CPU dedicato all'esecuzione della PIPELINE.
    
    Opzioni:
      -p	stampa il riepilogo dei tempi nel formato portabile Posix
    
    Il valore della variabile TIMEFORMAT è usato come formato di output.
    
    Stato di uscita:
    Viene restituito lo stato della PIPELINE.Riprende cicli for, while o until.
    
    Riprende l'iterazione successiva del ciclo FOR, WHILE o UNTIL.
    Se è specificato N, riprende l'N-simo ciclo contenente il comando.
    
    Stato di uscita:
    Lo stato di uscita è 0 a meno che N non sia maggiore o uguale a 1.Ripristina un job in primo piano.
    
    Equivale all'argomento SPEC_JOB per il comando "fg". Ripristina
    un job fermato o sullo sfondo. SPEC_JOB può specificare un nome
    job o un numero di job. SPEC_JOB seguito da "&" mette il job
    sullo sfondo, come se la specifica del job fosse stata fornita
    come argomento per "bg".
    
    Stato di uscita:
    Restituisce lo stato del job ripristinato.Restituisce successo come risultato.
    
    Stato di uscita:
    ha sempre successo.Restituisce un risultato di insuccesso.
    
    Stato di uscita:
    Sempre un insuccesso.Ritorna da una funzione di shell.
    
    Causa l'uscita da una funzione o da uno script sorgente con il valore di
    ritorno specificato da N. Se N è omesso, lo stato di ritorno è quello
    dell'ultimo comando eseguito all'interno della funzione o dello script.
    
    Stato di uscita:
    Restituisce N, oppure insuccesso se la shell non sta eseguendo una funzione
    o uno script.Restituisce il contesto della chiamata alla subroutine corrente.
    
    Senza ESPR, restituisce "$riga $nomefile". Con ESPR, restituisce
    "$riga $subroutine $nomefile"; questa informazione aggiuntiva può
    essere usata per fornire uno stack trace.
    
    Il valore dell'ESPR indica di quanti frame di chiamata tornare indietro
    rispetto a quello attuale; in cima c'è il frame 0.
    
    Stato di uscita:
    Restituisce 0 a meno che non sia in esecuzione una funzione di shell o
    che l'ESPR non sia valida.Restituisce il contesto della chiamata alla subroutine corrente.
    
    Senza ESPR, restituisce "$riga $nomefile". Con ESPR, restituisce
    "$riga $subroutine $nomefile"; questa informazione aggiuntiva può essere usata
    per fornire uno stack trace.
    
    Il valore dell'ESPR indica di quanti frame di chiamata tornare indietro rispetto
    a quello attuale; in cima c'è il frame 0.
    
    Stato di uscita:
    Restituisce 0 a meno che non sia in esecuzione una funzione di shell o che l'ESPR
    non sia valida.In esecuzioneErrore di segmentazioneSeleziona le parole da un elenco ed esegue i comandi.
    
    Le PAROLE vengono estese, generando un elenco di parole. L'insieme
    di parole estese viene stampato sullo standard error, ognuna delle
    quali preceduta da un numero. Se non è presente "in PAROLE", viene
    assunto «in "$@"». Viene poi visualizzato il prompt PS3 e viene letta
    una riga dallo standard input. Se la riga è composta dal numero che
    corrisponde a una delle parole visualizzate, NOME è impostato a quella
    parola. Se la riga è vuota, le PAROLE e il prompt vengono
    rivisualizzati. Se viene letto EOF, il comando termina. Se vengono
    letti altri valori NOME viene impostato a null. La riga letta viene
    salvata nella variabile REPLY. I COMANDI vengono eseguiti dopo ogni
    selezione finché non viene eseguito un comando di interruzione.
    
    Stato di uscita:
    Restituisce lo stato di uscita dell'ultimo comando eseguito.Invia un segnale a un job.
    
    Invia il segnale chiamato dallo SPECSEGN o dal NUMSEGN ai processi identificati
    dal PID o dallo SPECJOB. Se non è presente né lo SPECSEGN né il NUMSEGN, viene
    allora considerato SIGTERM.
    
    Opzioni:
      -s segn	SEGN è il nome di un segnale
      -n segn	SEGN è il numero di un segnale
      -l	elenca i nomi dei segnali; se ci sono argomenti dopo "-l"
    		vengono considerati come numeri di segnale di cui elencare i nomi
      -L	sinonimo di -l
    
    Kill è un comando interno di shell per due ragioni: permette di usare
    gli ID dei job invece degli ID dei processi e permette di terminare
    processi anche se è stato raggiunto il limite di processi che l'utente
    può creare.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore.Imposta le associazioni di tasti e le variabili di Readline.
    
    Associa una sequenza di tasti a una funzione o a una macro Readline, oppure imposta una
    variabile di Readline. La sintassi di argomento senza opzione è equivalente a quella
    trovata in ~/.inputrc, ma deve essere passata come singolo argomento:
    es., bind '"\C-x\C-r": re-read-init-file'.
    
    Opzioni:
      -m  mappatura      Usa MAPPATURA per le combinazioni di tasti per la
                         durata di questo comando. Nomi accettabili per la
                         mappatura sono emacs, emacs-standard, emacs-meta,
                         emacs-ctlx, vi, vi-move, vi-command e vi-insert.
      -l                 Elenca i nomi delle funzioni.
      -P                 Elenca i nomi delle funzioni e le associazioni.
      -p                 Elenca le funzioni e le associazioni in una forma che
                         possa essere riusata come input.
      -S                 Elenca le sequenze di tasti che invocano le macro e i loro valori.
      -s                 Elenca le sequenze di tasti che invocano le macro e i loro valori
                         in una forma che possa essere riusata come input.
      -V                 Elenca i nomi e i valori delle variabili.
      -v                 Elenca i nomi e i valori delle variabili in una forma che possa
                         essere riusata come input.
      -q  nome-funzione  Identifica il tasto che invoca la funzione nominata.
      -u  nome-funzione  Rimuove l'associazione tra la funzione nominata e tutti i tasti associati.
      -r  seqtasti       Rimuove l'associazione per la SEQTASTI.
      -f  nomefile       Legge le associazioni di tasti da NOMEFILE.
      -x  seqtasti:comando-shell	Esegue il COMANDO-SHELL quando viene inserita
    					la SEQTASTI.
      -X                 Elenca le sequenze di tasti associate a -x e i
                         comandi associati, in una forma che può essere
                         riutilizzata come input.
    
    Se rimangono degli argomenti dopo l'elaborazione dell'opzione, le opzioni
    -p e -P li trattano come nomi di comandi readline e limitano l'output
    a quei nomi.
    
    Stato di uscita:
    bind restituisce 0 a meno che non sia fornita una opzione non riconosciuta o si riscontri un errore.Imposta o rimuove le opzioni della shell.
    
    Cambia le impostazioni di ciascuna opzione di shell NOMEOPZ. Senza
    argomenti per le opzioni, elenca tutte le NOMEOPZ fornite, oppure tutte
    le opzioni di shell se nessun NOMEOPZ viene indicato, indicando per
     ciascuna se sono o non sono impostate.
    
    Opzioni:
      -o	Limita i NOMEOPZ a quelli definiti per essere usati con
    		"set -o"
      -p	Stampa ogni opzione di shell indicando il relativo stato
      -q	Non stampa l'output
      -s	Abilita (imposta) ciascun NOMEOPZ
      -u	Disabilita (elimina) ciascun NOMEOPZ
    
    Stato di uscita:
    Restituisce successo se NOMEOPZ è abilitato; insuccesso se viene
    fornita una opzione non valida o NOMEOPZ è disabilitato.Imposta l'attributo di esportazione per le variabili di shell.
    
    Marca ciascun NOME per l'esportazione automatica all'ambiente dei
    comandi eseguiti successivi. Se è fornito un VALORE, lo assegna prima
    dell'esportazione.
    
    Opzioni:
      -f	fa riferimento alle funzioni di shell
      -n	rimuove la proprietà di esportazione da ciascun NOME
      -p	visualizza un elenco di tutte le variabili o funzioni esportate
    
    L'argomento "--" disabilita l'elaborazione di ulteriori opzioni.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o
    il NOME non sia valido.Imposta o rimuove i valori delle opzioni di shell e dei parametri posizionali.
    
    Cambia il valore degli attributi di shell e dei parametri posizionali,
    o visualizza i nomi e i valori delle variabili di shell.
    
    Opzioni:
      -a  Marca le variabili che sono modificate o create per l'esportazione.
      -b  Notifica immediatamente della terminazione di un job.
      -e  Esce immediatamente se un comando esce con uno stato diverso da
          zero.
      -f  Disabilita la generazione dei nomi file (globbing).
      -h  Ricorda la posizione dei comandi quando vengono cercati.
      -k  Tutte le assegnazioni degli argomenti sono posizionate nell'ambiente
          per un comando, non solo quelle che precedono il nome del comando
          stesso.
      -m  Abilita il controllo dei job.
      -n  Legge i comandi senza eseguirli.
      -o nome-opzione
          Imposta la variabile corrispondente al nome dell'opzione:
              allexport    Uguale a -a
              braceexpand  Uguale a -B
              emacs        Usa una interfaccia di modifica righe di stile
                           emacs
              errexit      Uguale a -e
              errtrace     Uguale a -E
              functrace    Uguale a -T
              hashall      Uguale a -h
              histexpand   Uguale a -H
              history      Abilita la cronologia comandi
              ignoreeof    Non esce dalla shell dopo aver raggiunto EOF
              interactive-comments
                           Permette ai commenti di comparire nei comandi
                           interattivi
              keyword      Uguale a -k
              monitor      Uguale a -m
              noclobber    Uguale a -C
              noexec       Uguale a -n
              noglob       Uguale a -f
              nolog        Accettato al momento ma ignorato
              notify       Uguale a -b
              nounset      Uguale a -u
              onecmd       Uguale a -t
              physical     Uguale a -P
              pipefail     Il valore restituito da una pipeline è lo stato
                           dell'ultimo comando che esce con uno stato
                           diverso da zero, oppure zero se nessun comando
                           esce con uno stato diverso da zero
              posix        Modifica il comportamento di bash dove
                           l'operazione predefinita è diversa dallo standard
                           Posix per rispettare
                           lo standard stesso
              privileged   Uguale a -p
              verbose      Uguale a -v
              vi           Usa un'editor di riga stile vi
              xtrace       Uguale a -x
      -p  Abilitato ogni qualvolta l'id utente reale non corrisponda a
          quello effettivo. Disabilita l'analisi del file $ENV e l'importazione
          delle funzioni di shell. Disabilitare questa opzione comporta
          l'impostazione degli uid e gid effettivi a uid e gid reali.
      -t  Esce dopo la lettura e l'esecuzione di un comando.
      -u  Tratta le variabili non impostate come un errore durante la
          sostituzione.
      -v  Stampa le righe di input della shell mentre vengono lette.
      -x  Stampa i comandi e i loro argomenti mentre vengono eseguiti.
      -B  La shell effettua l'espansione delle parentesi graffe
      -C  Se impostata, non permette la sovrascrittura dei file regolari
          esistenti da parte della redirezione dell'output.
      -E  Se impostata, la trap ERR è ereditata dalle funzioni di shell.
      -H  Abilita la sostituzione per la cronologia stile !. Questo flag è
          abilitato in modo predefinito quando la shell è interattiva.
      -P  Se impostata, non risolve i link simbolici quando vengono eseguiti
          dei comandi come cd, che cambiano la directory corrente.
      -T  Se impostata, le trap DEBUG e RETURN sono ereditate dalle funzioni
          di shell.
      --  Assegna tutti gli argomenti rimasti ai parametri posizionali.
          Se non sono rimasti argomenti, i parametri posizionali
          vengono rimossi.
      -   Assegna tutti gli argomenti rimasti ai parametri posizionali.
          Le opzioni -x e -v sono disabilitate.
    
    Se viene passato -o senza nome-opzione, set stampa le impostazioni
    correnti delle opzioni della shell. Se viene passato +o senza
    nome-opzione, set stampa una serie di comandi set per ricreare le
    impostazioni correnti dell'opzione.
    
    Usando + al posto di - questi flag vengono disabilitati. I
    flag possono anche essere usati subito dopo l'invocazione della shell.
    Il set corrente dei flag può essere trovato in $-. I restanti n ARG sono
    parametri posizionali e vengono assegnati, in ordine, a $1, $2, .. $n.
    Se non vengono forniti ARG, vengono stampate tutte le variabili di shell.
    
    Stato di uscita:
    Restituisce successo a meno che non venga fornita una opzione non valida.Imposta valori e attributi di variabile.
    
    Sinonimo per "declare". Vedere "help declare".Imposta i valori e gli attributi delle variabili.
    
    Dichiara le variabili e fornisce loro attributi. Se non vengono forniti NOMI,
    visualizza gli attributi e i valori di tutte le variabili.
    
    Opzioni:
      -f	limita l'azione o la visualizzazione ai nomi e alle definizioni di funzione
      -F	limita la visualizzazione ai soli nomi di funzione (più numero di riga e
    		file sorgente durante il debug)
      -g	crea variabili globali quando usato in una funzione di shell; altrimenti
    		è ignorato
      -I	creando una variabile locale, eredita attributi e valore
    		di una variable con stesso nome in uno scope precedente
      -p	visualizza gli attributi e i valori di ciascun NOME
    
    Opzioni che impostano gli attributi:
      -a	rende i NOMI array indicizzati (se supportata)
      -A	rende i NOMI array associativi (se supportata)
      -i	fornisce ai NOMI l'attributo "integer"
      -l	converte i valori dei NOMI in lettere minuscole in fase di assegnazione
      -n	rende NOME un riferimento alla variabile indicata dal suo valore
      -r	imposta i NOMI in sola lettura
      -t	fornisce ai NOMI l'attributo "trace"
      -u	converte i valori dei NOMI in lettere maiuscole in fase di assegnazione
      -x	imposta i NOMI come esportabili
    
    Usando "+" al posto di "-" disattiva l'attributo fornito, ad
    eccezione di a, A e r.
    
    Le variabili con attributo "integer" vengono valutate aritmeticamente
    (vedereil comando "let") quando alla variabile è assegnato un valore.
    
    Quando viene usato in una funzione, "declare" rende locali i NOMI, come
    con il comando "local".
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o
    si riscontri un errore nell'assegnazione di variabili.Comandi di shell corrispondenti alla parola chiave "Comandi di shell corrispondenti alle parole chiave "Opzioni di shell:
Sposta i parametri posizionali.
    
    Rinomina i parametri posizionali $N+1,$N+2 ... a $1,$2 ... Se N non
    è fornito, viene assunto a 1.
    
    Stato di uscita:
    Restituisce successo a meno che N non sia negativo o maggiore di $#.Segnale %dSpecifica come gli argomenti debbano essere completati da Readline.
    
    Per ciascun NOME, specifica come gli argomenti debbano essere completati.
    Se non vengono fornite opzioni o NOME, visualizza le specifiche di
    completamento esistenti in un modo tale che possano essere riutilizzate
    come input.
    
    Opzioni:
      -p	visualizza le specifiche di completamento esistenti in un formato
    		riutilizzabile
      -r	rimuove una specifica di completamento per ciascun NOME, oppure
    		tutte se non viene fornito alcun NOME
      -D	applica i completamenti e le azioni come predefiniti per i comandi
    		senza alcun completamento definito specifico
      -E	applica i completamenti e le azioni ai comandi "vuoti" --
    		completamenti tentati su una riga vuota
      -I	applica i completamenti e le azioni alla parola iniziale
    		(solitamente il comando)
    
    Quando viene tentato un completamento, le azioni sono applicate
    nell'ordine in cui sono sopra elencate le opzioni a lettera maiuscola.
    Se vengono specificate più opzioni, l'opzione -D ha precedenza su -E,
    ed entrambe hanno precedenza su -I.
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore.FermatoFermato (segnale)Fermato (input da terminale)Fermato (output da terminale)Fermato(%s)Sospende l'esecuzione della shell.
    
    Sospende l'esecuzione di questa shell fino a che non riceve un segnale
    SIGCONT.
    A meno di forzature, le shell di login e le shell senza controllo dei job
    non possono essere sospese.
    
    Opzioni:
      -f	forza la sospensione, anche se in presenza di una shell di login
    		o con controllo dei job disabilitato.
    
    Stato di uscita:
    Restituisce successo a meno che non sia abilitato il controllo dei job o
    si riscontri un errore.TIMEFORMAT: "%c": carattere di formato non validoTerminatoLa posta in %s è stata letta
Sono presenti job in esecuzione.
Sono presenti job interrotti.
Non c'è ALCUNA GARANZIA, nei limiti permessi dalla legge.Questi comandi della shell sono definiti internamente. Digitare "help" per consultare questa lista.
Digitare "help nome" per saperne di più sulla funzione "nome".
Usare "info bash" per saperne di più sulla shell in generale.
Usare "man -k" o "info" per saperne di più su comandi non presenti nella lista.

Un asterisco (*) vicino a un nome significa che il comando è disabilitato.

Questo è software libero; è possibile modificarlo e ridistribuirlo.Cattura segnali e altri eventi.
    
    Definisce e attiva i gestori da eseguire quando la shell riceve segnali
    o altre condizioni.
    
    AZIONE è un comando da leggere ed eseguire quando la shell riceve il o i
    segnali SPEC_SEGNALE. Se AZIONE o "-" non sono presenti (e viene fornito
    un singolo SPEC_SEGNALE), ciascun segnale specificato è riportato
    al suo valore originario. Se AZIONE è la stringa null, ogni SPEC_SEGNALE è
    ignorato dalla shell e dai comandi che invoca.
    
    Se uno SPEC_SEGNALE è EXIT (0) AZIONE viene eseguita all'uscita dalla shell.
    Se uno SPEC_SEGNALE è DEBUG, AZIONE viene eseguita prima di ogni comando
    semplice e altri comandi selezionati. Se uno SPEC_SEGNALE è RETURN, AZIONE
    viene eseguita al termine di ogni esecuzione di una funzione di shell o di
    uno script avviato dai comandi interni "." o source.
    Uno SPEC_SEGNALE di ERR indica di eseguire AZIONE ogni volta che un errore
    di comando causerebbe l'uscita della shell quando è abilitata l'opzione -e.
    
    Se non vengono forniti argomenti, trap stampa l'elenco di comandi
    associati a ciascun segnale catturato, in un formato che può essere
    riutilizzato come input di shell per ricreare le stesse impostazioni
    sulla cattura dei segnali.
    
    Ozioni:
      -l	stampa un elenco di nomi di segnale e i loro corrispondenti numeri
      -p	visualizza i comandi trap associati a ciascun SPEC_SEGNALE in un
    		formato che può essere riutilizzato come input di shell; oppure per
    		tutti i signali catturati, se non vengono passati argomenti
      -P	mostra i comandi trap associati a ciascun SPEC_SEGNALE. Deve essere
     		fornito almeno un SPEC_SEGNALE. -P e -p non possono essere usate
    		insieme.
    
    
    Ciascun SPEC_SEGNALE è un nome di segnale in <signal.h> oppure un numero
    di segnale.
    I nomi di segnale sono case insensitive e il prefisso SIG è opzionale.
    Per inviare un segnale alla shell usare "kill -signal $$".
    
    Stato di uscita:
    Restituisce successo a meno che SPEC_SEGNALE non sia valido o si fornisca
    una opzione non valida.Digitare «%s -c "help set"» per ulteriori informazioni sulle opzioni di shell.
Digitare "%s -c help" per ulteriori informazioni sui comandi interni di shell.
Segnale sconosciuto n° %dErrore sconosciutoStato sconosciutoRimuove i valori e gli attributi delle variabili e delle funzioni di shell.
    
    Per ciascun NOME, rimuove la corrispondente variabile o funzione.
    
    Opzioni:
      -f	considera ciascun NOME come una funzione di shell
      -v	considera ciascun NOME come una variabile di shell
      -n	considera ciascun NOME come un riferimento a nome e reimposta la
    		variabile stessa piuttosto che la variabile referenziata
    
    Senza opzioni, unset prima prova a rimuovere una variabile e, in caso di
    insuccesso, prova a rimuovere una funzione.
    
    Alcune variabili non possono essere rimosse; vedere anche "readonly".
    
    Stato di uscita:
    Restituisce successo a meno che non sia fornita una opzione non valida o
    NOME sia in sola lettura.Condizione di I/O urgenteUso:	%s [opzione lunga GNU] [opzione] ...
	%s [opzione lunga GNU] [opzione] file-script ...
Usare "%s" per uscire dalla shell.
Usare il comando "bashbug" per segnalare i bug.
Segnale 1 dell'utenteSegnale 2 dell'utenteAttende il completamento del job e lo stato di uscita.

    Attende ogni processo identificato da ID, che può essere un ID di processo
    oppure una specifica di job, e riporta lo stato di uscita. Se non è fornito ID,
    attende tutti i processi figli attualmente attivi, e restituisce
    stato zero. Se ID è una specifica di job, attende tutti i processi nella
    pipeline di quel job.

    Se viene fornita l'opzione -n, attende un singolo job dalla lista degli ID,
    oppure, se nessun ID viene fornito, il prossimo job che si completi, e
    restituisce il suo stato d'uscita.

    Se viene fornita l'opzione -p, l'identificativo del processo o job  di cui
    viene restituito lo stato d'uscita viene assegnato alla variabile VAR
    indicata dall'argomento dell'opzione. La variabile sarà inizialmente
    rimossa, prima di qualsiasi assegnazione. Questo è utile solo quando
    viene fornita l'opzione -n.

    Se viene fornita l'opzione -f, e il controllo del job è abilitato, attende
    che l'ID specificato termini, invece di aspettare che cambi stato.

    Stato di uscita:
    Restituisce lo stato dell'ultimo ID; fallisce se ID non è valido o se
    viene passata un'opzione non valida, o se viene passato -n e la shell
    non ha figli da attendere.Attende il completamento del processo e restituisce lo stato di uscita.
    
    Attende ogni processo specificato da un PID e riporta il suo stato di
    uscita. Se non viene fornito il PID, attende tutti i processi figlio
    correntemente attivi e lo stato restituito è zero.
    Il PID deve essere un ID di processo.
    
    Stato di uscita:
    Restituisce lo stato dell'ultimo PID; insuccesso se il PID non è valido
    o viene fornita una opzione non valida.Finestra modificataScrive argomenti sullo standard output.
    
    Visualizza gli ARG sullo standard output seguiti da un ritorno a capo.
    
    Opzioni:
      -n	Non accoda un ritorno a capo
    
    Stato di uscita:
    Restituisce successo a meno che non venga riscontrato un errore di scrittura.Scrive argomenti sullo standard output.
    
    Visualizza gli ARG sullo standard output, separati da un singolo carattere
    spazio, e seguiti da un ritorno a capo.
    
    Opzioni:
      -n	Non accoda un carattere di ritorno a capo
      -e	Abilita l'interpretazione dei seguenti caratteri backslash di escape
      -E	Disabilita esplicitamente l'interpretazione dei caratteri backslash di escape
    
    "echo" interpreta i seguenti caratteri backslash di escape:
      \a	avviso (campanello)
      \b	backspace
      \c	elimina ulteriore output
      \e	carattere di escape
      \E	carattere di escape
      \f	avanzamento pagina
      \n	ritorno a capo
      \r	ritorno carrello
      \t	tabulazione orizzontale
      \v	tabulazione verticale
      \\	backslash
      \0nnn	il carattere il cui codice ASCII è NNN (ottale). NNN può avere
    		da 0 a 3 cifre ottali
      \xHH	il carattere otto bit il cui valore è HH (esadecimale). HH può
    		avere una o due cifre esadecimali
      \uHHHH	il carattere Unicode il cui valore è il valore esadecimale HHHH.
    		HHHH può avere da una a quattro cifre esadecimali.
      \UHHHHHHHH il carattere Unicode il cui valore è HHHH (esadecimale).
    		HHHHHHHH. HHHHHHHH può avere da una a otto cifre esadecimali.
    
    Stato di uscita:
    Restituisce successo a meno che non venga riscontrato un errore di scrittura.È presente della posta in $_È presente della nuova posta in $_[ arg... ][[ espressione ]]"%c": comando errato"%c": carattere di formato non valido"%c": carattere di modo simbolico non valido"%c": operatore di modo simbolico non valido"%c": specifica di formato dell'orario non valida"%s": impossibile eliminare l'associazione"%s": impossibile eliminare l'associazione nella combinazione di tasti del comando"%s": nome alias non valido"%s": nome della combinazione di tasti non valido"%s": nome variabile non valido per un riferimento a nome"%s": è un comando interno di shell speciale"%s": manca il carattere di formato"%s": non è un pid o una specifica di job valida"%s": non è un identificatore valido"%s" nome della funzione sconosciutoatteso ")"atteso ")", trovato %satteso ":" per l'espressione condizionaleadd_process: pid %5ld (%s) segnato come ancora in vitaalias [-p] [nome[=valore] ... ]all_local_variables: nessun contesto di funzione nell'ambito correnteredirezione ambiguaargomentoatteso argomentoerrore di sintassi aritmetica nell'espressioneerrore di sintassi aritmetica nell'assegnazione di variabileerrore di sintassi aritmetica: operatore aritmetico non validoerrore di sintassi aritmetica: atteso un operandonecessario il supporto alla variabile arraytentata un'assegnazione a una non variabileindice dell'array erratotipo di comando erratoconnettore erratointerprete erratosalto erratosostituzione errata: manca "`" di chiusura in %ssostituzione errata: nessuna chiusura di "%s" in %shome page di bash: <http://www.gnu.org/software/bash>
bash_execute_unix_command: impossibile trovare una combinazione di tasti per il comandobg [spec_job ...]bgp_delete: CICLO: psi (%d) == storage[psi].bucket_nextbgp_search: CICLO: psi (%d) == storage[psi].bucket_nextbind [-lpvsPVSX] [-m combinazione di tasti] [-f nomefile] [-q nome] [-u nome] [-r seqtasti] [-x seqtasti:comando-shell] [seqtasti:funzione-readline o comando-readline]espansione delle parentesi: impossibile allocare memoria per %sespansione delle parentesi: errore nell'allocazione di memoria per %s elementiespansione delle parentesi: errore nell'allocazione di memoria per "%s"break [n]bug: token di expassign erratobuiltin [comando-interno-shell [arg ...]]caller [espr]è possibile eseguire "return" solo da una funzione o da uno script chiamatopuò essere usato solo in una funzioneimpossibile allocare un nuovo descrittore di file per l'input della bash da fd %dimpossibile assegnare fd a una variabileimpossibile cambiare la localizzazioneimpossibile creareimpossibile creare un file temporaneo per here-documentimpossibile duplicare fd %d su fd %dimpossibile duplicare una pipe con nome %s come fd %dimpossibile eseguireimpossibile eseguire il file binarioimpossibile trovare %s nell'oggetto condiviso %s: %simpossibile recuperare il limiteimpossibile creare un figlio per la sostituzione del comandoimpossibile creare un figlio per la sostituzione del processoimpossibile creare una pipe per la sostituzione del comandoimpossibile creare una pipe per la sostituzione del processoimpossibile modificare il limiteimpossibile aprireimpossibile aprire la pipe con nome %s in letturaimpossibile aprire la pipe con nome %s in scritturaimpossibile aprire l'oggetto condiviso %s: %simpossibile aprire il file temporaneoimpossibile sovrascrivere il file esistenteimpossibile leggereimpossibile redirigere lo standard input da /dev/nullimpossibile reimpostare il modo nodelay per fd %dimpossibile impostare e rimuovere opzioni di shell contemporaneamenteimpossibile impostare gid a %d: gid effettivo %dimpossibile impostare il gruppo di processi del terminale (%d)impossibile impostare uid a %d: uid effettivo %dimpossibile rimuovere contemporaneamente una funzione e una variabileimpossibile avviare il debugger; modalità di debug disabilitataimpossibile sospendereimpossibile sospendere una shell di loginimpossibile usare "-f" per creare funzioniimpossibile usare più di uno tra -anrwcase PAROLA in [MODELLO [| MODELLO]...) COMANDI ;;]... esaccd [-L|[-P [-e]]] [-@] [dir]setpgid del figlio (%ld a %ld)command [-pVv] comando [arg ...]comando non trovatosostituzione comando: ignorato byte null in inputcommand_substitute: impossibile duplicare la pipe come fd 1complete [-abcdefgjksuv] [-pr] [-DEI] [-o opzione] [-A azione] [-G modglob] [-W elencoparole]  [-F funzione] [-C comando] [-X modfiltro] [-P prefisso] [-S suffisso] [nome ...]completion: funzione "%s" non trovatacompopt [-o|+o opzione] [-DEI] [nome ...]atteso operatore binario condizionalecontinue [n]coproc [NOME] comando [redirezioni]impossibile trovare /tmp, è necessario crearlacprintf: "%c": carattere di formato non validoattualedeclare [-aAfFgiIlnrtux] [nome[=valore] ...] o declare -p [-aAfFilnrtux] [nome ...]eliminazione del job %d interrotto con il gruppo di processi %lddescribe_pid: %ld: pid inesistentestack delle directory vuotoindice dello stack delle directorydirs [-clpv] [+N] [-N]disown [-h] [-ar] [specjob ... | pid ...]divisione per 0caricamento dinamico non disponibileecho [-n] [arg ...]echo [-neE] [arg ...]nome della variabile array vuotonome del file vuotoenable [-a] [-dnps] [-f nome_file] [nome ...]errore durante la creazione del buffered streamerrore nel recupero degli attributi del terminaleerrore nell'importazione della definizione di funzione per "%s"errore nel recupero della directory correnteerrore nell'impostazione degli attributi del terminaleeval [arg ...]eval: superato il massimo livello di annidamento di eval (%d)exec [-cl] [-a nome] [comando [argomento ...]] [redirezione ...]execute_coproc: coproc [%d:%s] esiste ancoraexit [n]atteso ")"esponente minore di 0export [-fn] [nome[=valore] ...] oppure export -p [-f]attesa espressionesuperato il livello di ricorsione dell'espressionefc [-e ename] [-lnr] [primo] [ultimo] oppure fc -s [pat=rep] [comando]fg [spec_job]descrittore di file fuori dell'intervallonecessario un nome file come argomentofor (( espr1; espr2; espr3 )); do COMANDI; donefor NOME [in PAROLE ... ] ; do COMANDI; doneil pid %d del fork appare nel job in esecuzione %dproblema nell'analisi del formato: %sframe non trovatofree: chiamata con un argomento di blocco già liberatofree: chiamata con un argomento di blocco non allocatofree: dimensioni diverse dei blocchi di inizio e di finefree: riscontrato un underflow; magic8 corrottofree: riscontrato un underflow; mh_nbytes fuori intervallofunction nome { COMANDI ; } oppure nome () { COMANDI ; }function_substitute: impossibile duplicare un file anonimo come standard outputfunction_substitute: impossibile aprire un file anonimo come outputle versioni future della shell forzeranno la valutazione come fosse una sostituzione aritmeticagetcwd: impossibile accedere alle directory padregetopts stringaopz nome [arg ...]hash [-lr] [-p nomepercorso] [-dt] [nome ...]hashing disabilitatohelp [-dms] [modello ...]l'aiuto non è disponibile in questa versionehere-document alla riga %d è delimitato da un EOF (era richiesto "%s")history [-c] [-d posiz] [n] oppure history -anrw [nomefile] oppure history -ps arg [arg...]posizione nella cronologiaspecifica della cronologiarich.	comando
atteso identificatore dopo un pre-incremento o un pre-decrementoif COMANDI; then COMANDI; [ elif COMANDI; then COMANDI; ]... [ else COMANDI; ] fiinitialize_job_control: getpgrp non riuscitainitialize_job_control: disciplina di rigainitialize_job_control: nessun controllo dei job in backgroundinitialize_job_control: setpgidbase aritmetica non validabase non validacarattere non valido %d in exportstr per %sdescrittore di file non validotipo di ordinamento glob non validonumero esadecimale non validocostante intera non validanumero non validonumero ottale non validoespressione regolare non valida "%s"espressione regolare non valida "%s": %snumero di segnale non validojob %d avviato senza controllo dei jobspec_job [&]jobs [-lnprs] [specjob ...] oppure jobs -x comando [argomenti]kill [-s specsegn | -n numsegn | -specsegn] pid | specjob ... oppure kill -l [specsegn]ultimo comando: %s
let arg [arg ...]limiteriga %d: modifica delle righe non abilitatala funzione di caricamento per %s restituisce un errore (%d): non caricatolocal [opzione] nome[=valore] ...logout
logout [n]numero di ciclimake_here_document: tipo di istruzione errata %dmake_local_variable: nessun contesto di funzione nell'ambito correntemake_redirection: istruzione di reindirizzamento "%d" fuori dell'intervallomalloc: blocco rovinato nell'elenco dei disponibilimalloc: asserzione fallita: %s
mapfile [-d delimitatore] [-n numero] [-O origine] [-s numero] [-t] [-u fd] [-C callback] [-c quantità] [array]superato massimo numero di here-documentspostamento processo su altra CPU")" mancante"]" mancantecifra esadecimale mancante in \xcifra unicode mancante in \%coperazioni di rete non supportatenessun "=" in exportstr per %scarattere di chiusura "%c" non presente in %snessun comando trovatonessun argomento della guida corrisponde a "%s". Provare "help help" o "man -k %s" o "info %s".controllo dei job non attivonessun controllo dei job in questa shellnessuna corrispondenza: %snessun'altra directorynessuna altra opzione permessa con "-x"funzione di completamento attualmente non in esecuzionenon è una shell di login: utilizzare "exit"directory nullnumero ottalesignificativo solo in un ciclo "for", "while" o "until"errore della pipepop_scope: la prima parte di shell_variables non è un ambito temporaneo d'ambientepop_var_context: la prima parte di shell_variables non è un contesto di funzionepop_var_context: nessun contesto global_variablespopd [-n] [+N | -N]mancanza di alimentazione imminentemodalità di stampa formattata ignorata nelle shell interattiveprint_command: connettore errato "%d"printf [-v var] formato [argomenti]progcomp_insert: %s: COMPSPEC NULLprogrammable_completion: %s: possibile ciclo di tentativierrore di programmazionepushd [-n] [+N | -N | dir]pwd [-LP]read [-Eers] [-a array] [-d delim] [-i testo] [-n ncaratt] [-N ncaratt] [-p stringa] [-t secondi] [-u fd] [nome ...]errore in letturareadarray [-d delimitatore] [-n numero] [-O origine] [-s numero] [-t] [-u fd] [-C callback] [-c quantità] [array]readonly [-aAf] [nome[=valore] ...] oppure readonly -prealloc: chiamata con un argomento di blocco non allocatorealloc: dimensioni diverse dei blocchi di inizio e di finerealloc: riscontrato un underflow; magic8 corrottorealloc: riscontrato un underflow; mh_nbytes fuori intervallounderflow dello stack di ricorsioneerrore di reindirizzamento: impossibile duplicare fdregister_alloc: forse %p è già come allocato nella tabella
register_alloc: forse la tavola di allocazione è piena con FIND_ALLOC
register_alloc: forse %p è già come libero nella tabella
limitatolimitato: impossibile redirigere l'outputreturn [n]run_pending_traps: valore errato in trap_list[%d]: %prun_pending_traps: il gestore dei segnali è SIG_DFL, verrà inviato nuovamente %d (%s) al programma stessosave_bash_input: buffer già esistente per il nuovo fd %derrore in lettura del file dello scriptselect NOME [in PAROLE ... ;] do COMANDI; doneset [-abefhkmnptuvxBCEHPT] [-o nome-opzione] [--] [-] [arg ...]livello di shell (%d) troppo alto, reimpostato a 1shell_getc: shell_input_line_size (%zu) supera SIZE_MAX (%lu): riga troncatashift [n]numero di scorrimentishopt [-pqsu] [-o] [nomeopz ...]sigprocmask: %d: operazione non validasource [-p percorso] nomefile [argomenti]start_pipeline: pipe pgrplunghezza stringasuspend [-f]errore di sintassierrore di sintassi nell'espressione condizionaleerrore di sintassi nell'espressione condizionale: token non atteso "%s"errore di sintassi vicino a "%s"errore di sintassi vicino al token non atteso "%s"errore di sintassi vicino al token non atteso "%s" mentre si cerca una corrispondenza per "%c"errore di sintassi: "%s" non attesoerrore di sintassi: "((%s))"errore di sintassi: ";" non attesoerrore di sintassi: richiesta espressione aritmeticaerrore di sintassi: EOF non attesoerrore di sintassi: fine del file non attesa dal comando "%s" alla riga %derrore di sintassi: fine del file non attesa dal comando alla riga %dcrash di sistema imminentetest [espr]time [-p] pipelinetroppi argomentitrap [-Plp] [[azione] spec_segnale ...]trap_handler: superato il massimo livello di gestori di trap (%d)trap_handler: segnale errato %dtype [-afptP] nome [nome ...]typeset [-aAfFgiIlnrtux] nome[=valore] ... o  typeset -p [-aAfFilnrtux] [nome ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limite]umask [-p] [-S] [modo]unalias [-a] nome [nome ...]EOF non atteso durante la ricerca di "]]"EOF non atteso durante la ricerca di "%c"EOF non atteso durante la ricerca di ")"argomento non atteso "%s" per l'operatore binario condizionaleargomento non atteso "%s" per l'operatore unario condizionaleargomento non atteso per l'operatore binario condizionaleargomento non atteso per l'operatore unario condizionaletoken non atteso %d nel comando condizionaletoken non atteso "%c" nel comando condizionaletoken non atteso "%s" nel comando condizionaletoken non atteso "%s", era atteso un operatore binario condizionaletoken non atteso "%s", era atteso ")"sconosciutoerrore di comando sconosciutounset [-f] [-v] [-n] [nome ...]until COMANDI; do COMANDI-2; donevalore troppo grande per la basevariabili - nomi e significati di alcune variabili di shellwait [-fn] [-p var] [id ...]wait [pid ...]wait: il pid %ld non è un figlio di questa shellwait_for: nessun record del processo %ldwait_for_job: il job %d è fermowaitchld: attivato WNOHANG per evitare blocchi indefinitiattenzione: attenzione: l'opzione -C potrebbe non funzionare come previstoattenzione: l'opzione -F potrebbe non funzionare come previstowhile COMANDI; do COMANDI-2; doneerrore in scritturaxtrace fd (%d) != numfile xtrace fp (%d)xtrace_set: %d: descrittore di file non validoxtrace_set: puntatore a file NULL{ COMANDI ; }