File: de.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 (3056 lines) | stat: -rw-r--r-- 182,342 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
FL|$0*00<1$D1
i1t11
11111	122)2@2_2v222 222(3/13;a3$3:334('4'P4"x444)4435I5&[5&5/5/5	6.6+N6z6666"667&7-97g7}77(7778808I8)f8888889*9>9 \9!}999,99 :0:+G:
s:0:':.:	;0;P;p;;;;;;;<<
7<E<c<&<<</<=$=):=d==3====>& >G>K>\>
k>y>> >9>#?6?M?_?k?HQCFFFFF
HH,H9H	EH	OH%YHN
NOY1XYmYZ2[;]]S_`Tdfjhn+Suw^yz?}LQZjjՄʅrJB<g$uvc|k
HSFlβ?<8 St		ӴݴN3,8=ef
D^b	PMx#/tIB~FF[L~>sZ|VD(	/CXd* 
'!2!P!i!5!O!B#xK#B*E+M+
`+n+}}+-X.h.*.
.
..35 5
6::
:::;%-;$S;'x;;%;;;.
<<<W<!v<<<<<'<=9<=v===%=.=4=).>X>$x>>>>>&>'?3*?9^???.>@:m@3@	@@!@
!A3/AcA=AAA
A)B*B'JBrBB&BB*B*B)*C)TC~CC%C%C CD!D@D-LD#zD1D&D&D&E5EE.{EEE!E!E:FUF rFF0F1FGG#OH(sHH$H#H'HIS"I.vIIIII)J
1J?J]JqJJJ,J!J,J",K!OKqK.K?KKKL1LLL#`L@L
LLL-M,9M'fMMM.M,M&N*<N0gN6NGNPO(hO O)OOO"P?*PTjPPP
P8PV-Q&Q'Q4QR(R@R(MRvRRRRRRR#S9S"OSrS5SOSTT)T	/T9T5RTTT
T
T+T9T$,UQUdoUUUUV$V BVcV~VVHVVVW'W":W+]WWWW4W
WDX?FX,XXX2X!Y"3YVYhY	YpY
Yf	Z1pZ/Z)Z-Z3*[^[&x[2[5[,\
5\"@\
c\1n\4\.\>])C]	m]w] ]"]%]]
^^"^&/^=V^^'^G^_9_P_,m_$_A_<`>`T```s`&`6``aQa*paaa%a.a-$b#Rbvb~bb#bb6b(cEc*Tcc	c-c-c#d)d'5d]dld1f>f<Sf*f
fff
ffg .gOg
egpg2g2g+gh7h Lh,mh3h0hh(i/DiLti.iEi6jOj5oj'j$jj/kF<k'k>kk0lF9lJlLlm44m0immm6m)n9nRnknn$nn"no4oSopooooo&o# pDp'bp"pppp&p! qBqbqq2qq-qr71rirCxr,r=r's:Bs#}ss'ssst',tTtpt tt/t&t.u$Ku*puFu u v*$v"Ovrv9vv-v
w w2-w`wdwsw,w&w&w!xT-xxxx
xx5|,3
>Te
x&]
&1C7{1|r;[($Pu
|ff!'@VZU],FS-C2Ki~	
Q0_	$
{


E"	'W A!S'c'+/9/147fl9:Bj<F<<>@BBB`eF	IS^sVX^klnstss	xt
tttttt.vv&v v#wC@wwF&ymyR`D(.;j\1ކ2CRa=
:,g})Д07+$c*7*
:5.p':ǖ&)HX+u9'+5S@-ʘK5Dz2șA3=SqŚݚ<Eś@	L$V&{^1FE ,ڝ>&.6U)9Ԟ=-?k13ݟ.2J6}1',;5H<~B<7;<sN:":']3:9$.&Sz6Fɤ+n(æ$Ц<*2]Tj81*Ja0x'&>-O+}</,C5W>̪ժ28!KNm2Ы*4.,c6ǬݬB?5;u,Gޭ:&Sa]C W)x-Я[cZְI[F6'ٱ:<\|($Ҳ5F$\))ij5`7ʴ
д%۴HJi
u+9F%>wd/ܶ%*!P+r!۷c#W#{)ϸ<(6_	p7zD?,Cp?2"7"I	lv
}24?/+J[A[G[X8
D8OF1ϿC?E	$%&,@M#Z?~,I!Mo <%C
=Q.;!KmR+
"+?+k7.	=.\6!9&-	T>^>
,	6(s	)'EX5ZI(<;A d49CAwN15)vNj|[M0h7nn@kcp~8_E<*
r++yO8&!m\-4G"(p@3#}v6+&}P$%B#_^ACM7]kH'Zg/U[ebs,Xo3HgWq5%l2
;D:Ko0#S%J 9D	.Sx'?RL.;Y:,6?a	7i
-6
RzJuiBBLt@|E3UY{br,a>$T1!fF0"O/d
"FW*hT`*~8!VtCqzc9.G{ 2f\^
mP2l$V4x&`<-=u/1?)>Qewy]>IKQ:DjF==timed 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 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 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 %dStoppedStopped (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 expressionalias [-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 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 ...]bind [-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]command [-pVv] command [arg ...]command not foundcommand substitution: ignored null byte in inputcommand_substitute: cannot duplicate pipe as fd 1compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: function `%s' not foundcompopt [-o|+o option] [-DEI] [name ...]continue [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 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 ...]exit [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 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 scopemalloc: 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]migrate 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]programming 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]: %psave_bash_input: buffer already exists for new fd %dselect NAME [in WORDS ... ;] do COMMANDS; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]shell level (%d) too high, resetting to 1shift [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 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_job: job %d is stoppedwarning: warning: -C option may not work as you expectwarning: -F option may not work as you expectwhile COMMANDS; do COMMANDS-2; donewrite errorxtrace_set: %d: invalid file descriptor{ COMMANDS ; }Project-Id-Version: bash 5.3-rc2
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2025-06-07 21:16+0200
Last-Translator: Nils Naumann <nau@gmx.net>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=2; plural=(n != 1)
Zu lange keine Eingabe: Automatisch ausgeloggt.
	-%s oder Option -o
	-ilrsD oder -c Kommando oder -O shopt_option		(Nur Aufruf)

malloc: %s:%d: Zusicherung verpfuscht\r
  (Verz.: %s) (Speicherabzug geschrieben) Zeile ! Pipeline$%s: Kann so nicht zuweisen.%c%c: Ungültige Option%s kann aufgerufen werden durch %s has null exportstr%s ist %s
%s ist eine Funktion.
%s ist eine von der Shell mitgelieferte Funktion.
%s Ist ein reserviertes Schlüsselwort der Shell.
%s ist eine spezielle eingebaute Funktion.
%s ist ein Alias von »%s«.
%s ist gehasht (%s)
%s ist keiner Taste zugeordnet.
%s ist außerhalb des Gültigkeitsbereiches.%s%s%s: %s (Fehlerverursachendes Zeichen ist "%s").%s: %s ist außerhalb des Gültigkeitsbereiches.%s: %s: cannot open as FILE%s: %s: compatibility value out of range%s: %s: invalid value for trace file descriptor%s: %s: Ein Feldindex wird zum Zuweisen eines assoziativen Arrays benötigt.%s: %s:%d: Konnte keine %lu Bytes reservieren.%s: %s:%d: Konnte keine %lu Bytes reservieren (%lu bytes reserviert).%s: Ist ein Verzeichnis.%s: Mehrdeutige Jobbezeichnung.%s: Die Argumente müssen Prozess- oder Job-IDs sein.%s: assigning integer to name reference%s: Fehlerhafte Netzwerkspfadangabe.%s: Falsche Substitution.%s: Zweistelliger (binärer) Operator erwartet.%s: Namen eingebauter Funktionen sollen keine Schrägstriche enthalten%s: Konnte keine %lu Bytes reservieren.%s: Konnte keine %lu Bytes reservieren (%lu bytes reserviert).%s: Zuweisung nicht möglich.%s: Kann einem Feldelement keine Liste zuweisen.%s: Das Zuweisen auf einen nicht-numerischen Index ist nicht möglich.%s: Konvertieren von assoziativen in indizierte Arrays ist nicht möglich.%s: Das indizierte Array kann in kein assoziatives Array umgewandelt werden.%s: Kann nicht löschen: %s%s: Kann Feldvariablen nicht auf diese Art löschen.%s: Kann nicht ausführen. Datei nicht gefunden.%s: Exportieren nicht möglich.%s: »unset« nicht möglich.%s: »unset« nicht möglich: %s ist schreibgeschützt%s: Zirkularbezug auf indirekte Variable.%s: Ist bereits geladen.%s: Fehler im Ausdruck.
%s: Die Datei ist zu groß.%s: Datei nicht gefunden. %s: Das erste Zeichen ist nicht `"'%s: Die Hashtabelle ist leer.
%s: Kommandoersetzung gescheitert.%s: Unbekannter Host.%s: Versuch einer Funktionsdefinition wird ignoriert%s: Ungültige Option -- %c
%s: Ganzzahl erwartet%s: Ungültiger Aktionsname.%s: Ungültiges Argument.%s: Ungültiger Arrayanfang.%s: ungültige Callback Anzahl%s: Ungültige Dateideskriptor-Angabe.%s: Ungültige indirekte Expansion.%s: Ungültige Jobbezeichnung%s: Ungültiges Argument für das Limit%s: Ungültige Zeilenanzahlangabe.%s: Ungültige Option.%s: Ungültiger Optionsname.%s: unbekannter Dienst.%s: Ungültiger Name für Shelloption.%s: Ungültige Signalbezeichnung.%s: Ungültige Wartezeitangebe.%s: Ungültiger Zeitstempel.%s: Ungültiger Variablenname.%s: Ungültiger Variablenname für Namensreferenz.%s: ist ein Verzeichnis.%s: Der Job %d läuft bereits im Hintergrund.%s: Der Job ist beendet.%s: Der Jobbezeichnung muss ein `%%' vorangestellt sein%s: Zeile %d: %s: maximale Schachtelungstiefe für Funktionen überschritten (%d)%s: Maximale Namereftiefe (%d)überschritten%s: Maximale Quellcode-Schachtelungstiefe überschritten (%d)%s: Fehlendes Trennzeichen%s: Selbstreferenz der Nameref Variable ist nicht erlaubt.%s: Keine Komplettierung angegeben.%s: Kein aktueller Job.%s: Keine Jobsteuerung in dieser Shell.%s: Kein solcher Job.%s: Ist keine Funktion.%s: Ist keine normale Datei.%s: Ist kein eingebautes Shellkommando.%s: Ist keine Feldvariable.%s: Ist kein indiziertes Array.%s: Ist nicht dynamisch geladen.%s: Nicht gefunden.%s: Ein numerischer Parameter ist erforderlich.%s: Die Option erfordert ein Argument.%s: Diese Option erfordert ein Argument -- %c
%s: Der Parameter ist nicht gesetzt.%s: Parameter ist leer oder nicht gesetzt.%s: Ausführungszeichen um zusammengesetzte Array-Zuweisungen veraltet%s: Schreibgeschützte Funktion.%s: Schreibgeschützte Variable.%s: Referenzvariable darf kein Array sein.%s: Entferne das Nameref Attribut.%s: eingeschränkt%s: eingeschränkt: `/' ist in Kommandonamen unzulässig.%s: Teilstring-Ausdruck < 0.%s: Einstelliger (unärer) Operator erwartet.%s ist nicht gesetzt.%s: Aufruf: %s: Der Variable darf kein Wert zugewiesen werden.'

(( Ausdruck ))(Speicherabzug geschrieben) (gegenwärtiges Arbeitsverzeichnis ist: %s)
++: Die Zuweisung erfordert ein Lvalue--: Die Zuweisung erfordert ein Lvalue. [-p Pfad] Dateiname [Argumente]Dateinamen der Form /dev/(tcp|udp)/host/port werden ohne Netzwerk nicht unterstützt/tmp muss ein Verzeichnis sein.<kein aktuelles Verzeichnis>AbbruchkommandoAbbruch...Fügt ein Verzeichnis dem Stapel hinzu.

    Legt einen Verzeichnisnamen auf den Verzeichnisstapel oder rotiert
    diesen so, dass das aktuelle Arbeitsverzeichnis oben liegt. Ohne
    Argumente werden die obersten zwei Verzeichnisse auf dem Stapel
    vertauscht.

    Optionen: -n Es wird nur das angebene Verzeichnis dem Stapel
    	hinzugefügt, aber nicht in das Verzeichnis gewechselt.

    Argumente:    
    +N	Rotiert den Stapel so, dass das N'te Verzeichnis (angezeigt
        von `dirs', gezählt von links) oben auf dem Stapels liegt.

    -N	Rotiert den Stapel so, dass das N'te Verzeichnis (angezeigt
        von `dirs', gezählt von rechts) sich an der Spitze des Stapels
    	befindet.

    Der Verzeichnisstapel kann mit dem Kommando `dirs' angezeigt
    werden.

    Rückgabewert: 
    Gibt Erfolg zurück, außer wenn ein ungültiges Argument angegeben
    wurde oder der Verzeichniswechsel nicht erfolgreich war.Legt einen Verzeichniseintrag auf den Verzeichnisstapel ab oder rotiert
den Stapel so, dass das aktuelle Verzeichnis oben liegt. Ohne Argumente
werden die beiden oberen Einträge vertauscht.

    Optionen: 
       -n	Vermeidet das Wechseln des Verzeichnisses, so dass
	nur der Verzeichnisstapel geändert wird.

    Argumente:
      +N	Rotiert den Verzeichnisstapel, dass das N-te Verzeichnis
	von links, das von »dirs« angezeigt wird, nach oben kommt. Die Zählung
	beginnt dabei mit Null.

      -N	Rotiert den Verzeichnisstapel, dass das N-te Verzeichnis
	von rechts, das von »dirs« angezeigt wird, nach oben kommt. Die 
	Zählung beginnt dabei mit Null.

      dir	Legt DIR auf den Verzeichnisstapel und wechselt in dieses
      Verzeichnis.
    
    Das Kommando »dirs« Kommando zeigt den Verzeichnisstapel an.Alarm (Profil)Alarm (Virtuell)WeckerArithmetische For Schleife.

    Äquivalent zu:
    	(( Ausdr1 ))
    	while (( Ausdr2 )); do
    		Kommandos
    		(( Ausdr3 ))
    	done
    Ausdr1-3 sind arithmethische Ausdrücke. Für fehlende Ausdrücke wird 1
    angenommen.

    Rückgabewert:
    Status des zuletzt ausgeführten Kommandos.Verfolgen/anhalten abfangen (Trace/breakpoint trap)Falscher SystemaufrufFalsches Signal.Unterbrochene PipeBus-FehlerRechenzeitgrenzeWechselt das Arbeitsverzeichnis.

    Wechselt in das angegebene Arbeitsverzeichnis. Ohne Angabe eines
    Verzeichnisses wird in das in der Variable HOME definierte
    Verzeichnis gewechselt. Wenn stattdessen "-" angegeben ist, wird
    $OLDPWD verwendet.

    Die Variable CDPATH definiert den Suchpfad, in dem nach dem
    angegebenen Verzeichnisnamen gesucht wird. Mehrere Pfade werden
    durch Doppelpunkte »:« getrennt. Ein leerer Pfadname entspricht
    dem aktuellen Verzeichnis. Mit einem vollständigen Pfadnamen wird
    CDPATH nicht benutzt.

    Wird kein entsprechendes Verzeichnis gefunden und die Shelloption
    »cdable_vars« ist gesetzt, dann wird der `Wert' als Variable
    interpretiert. Dessen Inhalt wird dann als Verzeichnisname
    verwendet.

    Optionen:
      -L        Erzwingt, dass symbolischen Links gefolgt wird.
                Symbolische Links im aktuellen Verzeichnis werden nach
                dem übergeordneten Verzeichnis aufgelöst.
      -P        Symbolische Links werden ignoriert. Symbolische
                Links im aktuellen Verzeichnis werden vor dem
                übergeordneten Verzeichnis aufgelöst.
      -e        Wenn mit der Option »-P« das aktuelle Arbeitsverzeichnis
                nicht ermittelt werden kann, wird mit einem Rückgabewert
                ungleich 0 abgebrochen.
      -@        Wenn es das System unterstützt, wird eine Datei mit
                erweiterten Attributen als ein Verzeichnis angezeigt,
                welches die erweiterten Attribute enthält.

    Standardmäßig wird symbolischen Links gefolgt (Option -L).
    Das übergeordnete Verzeichnis wird ermittelt, indem der
    Dateiname am letzten Schrägstrich gekürzt wird, oder es wird der
    Anfang von DIR verwendet.

    Rückgabewert:
    Der Rückgabewert ist 0, wenn das Verzeichnis erfolgreich
    gewechselt wurde, oder wenn die Option -P angegeben und $PWD
    erfolgreich gesetzt werden konnte. Sonst ist er ungleich 0.Kindprozess abgebrochen oder gestoppt.    BASH_VERSION	Versionsnummer der Bash.
    CDPATH	Eine durch Doppelpunkte getrennte Liste von
                Verzeichnissen, die durchsucht werden, wenn das
                Argument von »cd« nicht im aktuellen Verzeichnis
                gefunden wird.
    GLOBIGNORE  Eine durch Doppelpunkte getrennte Liste von
                Dateinamenmustern, die für die Dateinamensergänzung
                ignoriert werden.
    HISTFILE	Datei, die den Kommandozeilenspeicher enthält.
    HISTFILESIZE	Maximale Zeilenanzahl dieser Datei.
    HISTSIZE	Maximale Anzahl von Zeilen, auf die der
                Historymechanismus der Shell zurückgreifen kann.
    HOME	Heimatverzeichnis des aktuellen Benutzers.
    HOSTNAME    Der aktuelle Rechnername.
    HOSTTYPE	CPU-Typ des aktuellen Rechners.
    IGNOREEOF	Legt die Reaktion der Shell auf ein EOF-Zeichen fest.
                Wenn die Variable eine ganze Zahl enthält, wird diese
                Anzahl EOF Zeichen (Ctrl-D) abgewartet, bis die Shell
                verlassen wird. Der Vorgabewert ist 10. Ist IGNOREEOF
                nicht gesetzt, signalisiert EOF das Ende der Eingabe.
    MACHTYPE    Eine Zeichenkette die das aktuell laufende System beschreibt.
    MAILCHECK	Zeit in Sekunden, nach der nach E-Mails gesehen wird.
    MAILPATH	Eine durch Doppelpunkt getrennte Liste von Dateinamen,
                die nach E-Mail durchsucht werden.
    OSTYPE	Unix Version, auf der die Bash gegenwärtig läuft.
    PATH	Durch Doppelpunkt getrennte Liste von Verzeichnissen,
                die nach Kommandos durchsucht werden.
    PROMPT_COMMAND	Kommando, das vor der Anzeige einer primären
                        Eingabeaufforderung (PS1) ausgeführt wird.
    PS1                 Zeichenkette, die die primäre
                        Eingabeaufforderung enthält.
    PS2                 Zeichenkette, die die sekundäre
                        Eingabeaufforderung enthält.
    PWD                 Der vollständige aktuelle Verzeichnisname.
    SHELLOPTS           Durch Doppelpunkt getrennte Liste der aktiven
                        Shell-Optionen.
    TERM	Name des aktuellen Terminaltyps.
    auto_resume Ein Wert ungleich Null bewirkt, dass ein einzelnes
                Kommando auf einer Zeile zunächst in der Liste
                gegenwärtig gestoppter Jobs gesucht und dieser in den
                Vordergrund geholt wird. »exact« bewirkt, dass das
                Kommando genau dem Kommando in der Liste der
                gestoppten Jobs entsprechen muss. Wenn die Variable den
                Wert »substring« enthält, muss das Kommando einem
                Substring der Jobbezeichnung entsprechen. Bei einem
                anderen Wert müssen die ersten Zeichen übereinstimmen.
    histchars   Zeichen, die die Befehlswiederholung und die
                Schnellersetzung steuern. An erster Stelle steht
                das Befehlswiederholungszeichen (normalerweise
                `!'); an zweiter das `Schnell-Ersetzen-Zeichen'
                (normalerweise `^'). Das dritte Zeichen ist das
                `Kommentarzeichen' (normalerweise `#').
    HISTIGNORE  Eine durch Doppelpunkt getrennte Liste von
                Mustern, welche die in der
                Befehlswiederholungsliste zu speichernden
                Kommandos angibt.
Prozessbearbeitung wieder aufgenommen.Copyright (C) 2025 Free Software Foundation, Inc.Startet einen Koprozess mit dem angegebenen Namen.
    
     Führt das angegebene Kommando asynchron in einem Kindprozess aus.
     Deren Standardaus- und -eingabe werden mit jeweils einer Pipe
     verbunden. Deren Dateideskriptoren sind in den Indexen 0 und 1 der
     Feldvariable mit dem angegebenen Namen verknüpft.
     Der Standardname ist „COPROC“.
    
     Rückgabewert:
     Der Befehl gibt immer 0 zurück.DEBUG Warnung: Definiert lokale Variablen.

    Erzeugt eine lokale Variable Name und weist ihr den Wert Wert zu.
    Option kann eine beliebige von »declare« akzeptierte Option sein.

    Wenn ein angagebeber Name "-" ist, dann speichert local den Satz
    der Shell-Optionen, und stellt sie wieder her, wenn die Funktion
    zurückkehrt.
    
    Lokale Variablen können nur innerhalb einer Funktion benutzt
    werden. Sie sind nur in der sie erzeugenden Funktion und ihren
    Kindern sichtbar.

    Rückgabewert: 
    Liefert 0 außer bei Angabe einer ungültigen Option, einer
    fehlerhaften Variablenzuweisung oder dem Aufruf außerhalb einer
    Funktion.Definiert Aliase oder zeigt sie an.

    Ohne Argumente wird die Liste der Aliase (Synonyme) in der Form
    »alias Name=Wert« auf die Standardausgabe ausgegeben.

    Sonst wird ein Alias für jeden angegebenen Namen definiert, wenn
    für diesen auch ein »Wert« angegeben wurde. Wenn »Wert« mit einem
    Leerzeichen endet, dann wird auch das nächste Wort auf Aliase
    überprüft.

    Optionen:
      -p	Gibt alle definierten Aliase aus.

    Rückgabewert:
    Meldet Erfolg, außer wenn ein »Name« angegeben worden ist, für den
    kein Alias definiert wurde.Erstellt eine Shellfunktion.
    
    Erstellt eine Shellfunktion mt dem angegebenen Namen. Wenn der Name als
    Kommando aufgerufen wird, dann werden die angegebenen Kommandos im Kontext
    der aufrufenden Shell abgearbeitet. Deren Argumente werden der Funktion als
    die Variablen $1...$n übergeben und der Funktionsname als $FUNCNAME.
    
    Rückgabewert:
    Gibt Erfolg zurück, es sein denn, der Name ist schreibgeschützt.Zeigt den Verzeichnisstapel an.

    Zeigt die Liste der gegenwärtig gespeicherten Verzeichnisse.
    Diese werden mit dem `pushd' Kommando eingetragen und mit dem
    `popd' Kommando ausgelesen.

    Optionen:
      -c        Löscht den Verzeichnisstapel.
      -l        Keine Abkürzung für das Heimatverzeichnis durch die
                Tilde (~).
      -p        Ausgabe von einem Eintrag pro Zeile.
      -v        Ausgabe von einem Eintrag pro Zeile mit Angabe der
                Position im Stapel<

    Argumente:
      +N        Gibt das N'te Element von links der Liste aus, die
                ohne Argumente ausgegeben wird.  Die Zählung beginnt
                bei 0.
      -N        Gibt das N'te Element von rechts der Liste aus, die
                ohne Argumente ausgegeben wird.  Die Zählung beginnt
                bei 0.

    Rückgabewert:
    Gibt Erfolg zurück, außer bei einer ungültigen Option oder wenn
    ein Fehler auftritt.Informationen zu eingebauten Kommandos.

    Zeigt kurze Informationen zu eingebauten Kommandos an. Wenn ein
    Muster angegeben ist, dann wird eine ausführliche Anleitung zu
    allen Kommandos mit zutreffendem Muster angezeigt. Sonst wird die
    Liste der Hilfethemen ausgegeben.

    Optionen:
      -d	Kurzbeschreibung für jedes Thema
      -m	Anzeige im Manpage-Format.
      -s	Gibt eine kurze Zusammenfassung für jedes angegebene
        	angegebene Thema aus

    Argumente:
      Muster	Das gesuchte Hilfetheme

    Rückgabestatus:
    Erfolg, außer wenn das Muster nicht gefunden oder eine ungültige Option
    angegeben wurde.Informationen zum Befehlstyp anzeigen.

    Gibt für jeden `Namen' an, wie er interpretiert würde, wenn er als
    Befehlsname verwendet würde.

    Optionen:
      -a	Zeigt alle Orte an, die eine ausführbare Datei mit dem
    		abgegebenen `Namen' enthalten. Aliase, eingebaute
    		Befehle und Funktionen werden nur dann angezeigt, wenn
    		die -p Option nicht verwendet  wird.
      -f	Unterdrückt die Shell-Funktionssuche
    	-P	Erzwingt eine PATH-Suche für jeden `Namen', auch wenn es sich um
      		einen Alias, integriertes Element oder eine Funktion handelt,
      		und gibt den Namen der Datenträgerdatei zurück, die
      		ausgeführt werden würde
      -p	Gibt den Namen der ausgeführten Datei zurück, wenn
      		`type -t NAME' `file' ausgeben würde. Sonst wird nichts
      		ausgegeben.
      -t	Gibt den Befehlstyp aus: `alias', `keywoard', `funktion',
      		`builtin', `file' oder `', wenn `Name' ein Alias, reserviertes
      		Wort, Shell-Funktion, Shell-integriertes Element, Datei
      		bzw. nicht gefunden worden ist

    Argumente:
      Name	Zu interpretierender Befehlsname.

    Rückgabewert:
    Gibt `Erfolg' zurück, wenn alle `Namen' gefunden werden; schlägt fehl, wenn     nicht alle `Namen' gefunden worden sind.Anzeigen oder Ausführen von Befehlen aus der History-Liste.
    
    fc wird verwendet, um Befehle aus der History-Liste aufzulisten,
    zu bearbeiten und erneut auszuführen.  `Anfang' und `Ende' können
    Zahlen sein, die den Bereich angeben. `Anfang' kann auch eine
    Zeichenkette sein, welche den letzten Befehl, der mit dieser
    Zeichenfolge beginnt, bezeichnet.
    
    Optionen:
      -e `Editor' Der zu verwendende Editor.  Standard sind FCEDIT,
         dann EDITOR, dann vi.
      -l Zeilen auflisten statt bearbeiten.
      -n Zeilennummern beim Auflisten weglassen.
      -r kehrt die Reihenfolge der Zeilen um (die neuesten Zeilen zuerst).
    
    Mit `fc -s [Muster=Ersetzung ...] [Kommando]' wird das `Kommando' erneut
    ausgeführt, nachdem die Ersetzung Alt=Neu durchgeführt wurde.
    
    Ein nützlicher Alias ist r='fc -s', so dass die Eingabe von `r cc'
    den letzten Befehl ausführt, der mit "cc" beginnt, und damit die
    Eingabe von "r" den letzten Befehl erneut ausführt.
    
    Die `history' Funktion wirkt ebenfalls auf die History-Liste.
    
    Exit-Status:
    Gibt den Erfolg oder den Status des ausgeführten Befehls zurück;
    ungleich Null, wenn ein Fehler auftritt.Zeigt oder bearbeitet die History-Liste.
    
    Zeigt die History-Liste mit Zeilennummern an und stellt jedem
    geänderten Eintrag ein `*' voran.  Ein Argument `n'
    listet nur die letzten N Einträge auf.
    
    Optionen:
      -c Bereinigt die History-Liste, indem alle Einträge gelöscht werden.
      -d Offset löscht den Eintrag an der angegebenen Position.
         Negative Offsets zählen vom Listenende.
      -d Beginn-Ende	Löscht die Listeneinträge von Beginn bis Ende.
      -a Anhängen des Verlaufs dieser Sitzung an die History-Datei.
      -n alle nicht bereits aus der History-Datei gelesenen Einträge
         an die History-Liste anhängen.
      -r Inhalt der History-Datei an die History-Liste anhängen.
      -w Schreibt den aktuellen Verlauf in die History-Datei.
      -p Führt eine History-Erweiterung für jedes `Argument' durch und zeigt
         das Ergebnis an, ohne es in die History-Liste einzutragen.
      -s Das `Argument' einzelnen Eintrag an die History-Liste anhängen.
    
    Wenn ein `Dateiname' angegeben ist, wird dieser als History-Datei verwendet.
    Sonst wird der Wert aus HISTFILE verwendet. Wenn weder ein `Dateiname'
    angegeben ist und HISTFILE nicht zugewiesen worde oder null ist, dann
    habe die -a, -n, -r und -w Optionen keinen Effekt und liefern `Erfolg'
    zurück.
    
    Die `fc' Funktion wirkt ebenfalls suf die History-Liste.
    
    Wenn die Variable HISTTIMEFORMAT gesetzt und nicht null ist, wird
    ihr Wert als Formatierungszeichenfolge für strftime(3) verwendet,
    um einen Zeitstempel für jeden angezeigten History-Eintrag zu drucken.
    Sonst wird kein Zeitstempel ausgegeben.
    
    Rückgabewert:
    Gibt `Erfolg' zurück, es sei denn, es wurde eine ungültige
    Option angegeben oder es ist ein Fehler aufgetreten.Dateimodusmaske anzeigen oder festlegen.

    Setzt die Maske der Benutzerrechte für die Dateierstellung auf
    den angegebenen Modus. Ohne Argument wird der aktuelle Maskenwert
    ausgegeben.

    Beginnt das Argument mit einer Ziffer an, wird diese als Oktalzahl
    interpretiert. Sonst wird eine symbolische Maske erwartet, wie sie
    von chmod(1) akzeptiert wird.

Optionen:
    -p:	Ohne Argument wird die Ausgabe in einem Format ausgegeben, das
    	als Eingabe wiederverwendet werden kann.
    -S:	Gibt die aktuelle Maske symbolisch aus. Standardmäßig wird eine
    	Oktalzahl ausgegeben.

Rückgabewert:
    Gibt `Erfolg' zurück, wenn eine gültige Maske oder eine gültige
    Option angegeben wurde.Zeigt mögliche Komplettierungen.

    Wird in Shellfunktionen benutzt, um mögliche Komplettierungen
    auszugeben. Wenn ein Wort als optionales Argument angegeben ist,
    werden Komplettierungen für dieses Wort erzeugt.

    Wenn die -V Option angegeben ist, werden die möglichen Komplett-
    ierungen in der angegebenen indizierten Arrayvariable gespeichert,
    statt sie anzuzeigen.

    Rückgabewert:
    Falsche Optionen oder Fehler führen zu Rückgabewerten ungleich Null.Zeigt den Zeitverbrauch an.

    Gibt den kumulierte Nutzer- und Systemzeitverbrauch der Shell und
    aller von ihr gestarteten Prozesse aus.

    Rückgabewert:
    Immer 0.Auftragstatus anzeigen.
    
    Listet die aktiven Aufträge auf.  JOBSPEC schränkt die Ausgabe auf
    diesen Auftrag ein.  Ohne Optionen werden die Status der aktiven
    Aufträge angezeigt.
    
    Optionen:
      -l zeigt zusätzlich auch die Prozessnummern an.
      -n zeigt nur die Prozesse an, deren Status sich seit der letzten
         Benachrichtigung geändert haben.
      -p zeigt nur Prozessnummern an.
      -r zeigt nur laufende Aufträge an.
      -s zeigt nur gestoppte Aufträge an
    
    Mit der Option -x wird COMMAND ausgeführt, nachdem alle in ARGS
    enthaltenen Auftragsspezifikationen durch die zugehörigen
    Prozesnummern ersetzt worden sind.
    
    Rückgabewert:
    Gibt einen Erfolg zurück, es sei denn, es wurde eine ungültige
    Option angegeben oder es ist ein Fehler aufgetreten.  Wenn -x
    verwendet wird, wird der Rückgebewert von COMMAND zurückgegeben.Zeigt die Liste der gegenwärtig gespeicherten Verzeichnisse an.  Durch
    das Kommando »pushd« werden die Verzeichnisse auf den Stapel gelegt
    und können durch das Kommando »popd« wieder vom Stapel entfernt
    werden.

    Optionen:
	-c	Verzeichnisstapel durch Löschen aller Einträge bereinigen.
	-l	Das Heimatverzeichnis wird nicht mit vorangestellter Tilde
	ausgegeben
	-p	Den Verzeichnisstapel zeilenweise ausgeben.
	-v	Den Verzeichnisstapel zeilenweise mit vorangestellter
	Positionsnummer auseben.

    Argumente:
	+N	Zeigt den N'ten Eintrag von links an, der von »dirs« ausgegeben
	wird, wenn es ohne Optionen aufgerufen wird, beginnend mit Null.
	-N	Zeigt den N'ten Eintrag von rechts an, der von »dirs« ausgegeben
	wird, wenn es ohne Optionen aufgerufen wird, beginnend mit Null.FertigFertig(%d)EMT abfangen (EMT trap)Eingebaute Shell-Kommandos aktivieren und deaktivieren.

    Aktiviert und deaktiviert eingebaute Shell-Kommandos. Die Deaktivierung
    erlaubt Ihnen, eigene Kommandos mit demselben Namen wie die eingebauten
    Kommandos zu nutzen, ohne den kompletten Pfad angeben zu müssen.

    Optionen:
      -a	Gibt eine Liste der eingebauten Kommandos aus inklusive der
        	Information, ob sie aktiv sind oder nicht.

      -n	deaktiviert jedes angegebene Kommando oder gibt eine
        	Liste der deaktivierten eingebauten Kommandos aus.
      -p	Gibt eine Liste der eingebauten Kommandos in einem
        	wiederverwendbaren Format aus.
      -s	Gibt nur die Namen der »speziellen« in POSIX eingebauten
        	Kommandos aus.

    Optionen zum Beeinflussen des dynamischen Ladens:
      -f	Lädt ein eingebautes Kommando aus der angegebenen Datei.
      -d	Entfernt ein mit »-f« geladenes Kommando.

    Ohne Optionen wird jedes angegebene Kommando aktiviert.

    In Systemen, die in der Lage sind, Bibilioteken dynamisch zu laden,
    enthält die Shell Variable BASH_LOADABLES_PATH den Suchpfad für das
    Verzeichnis der `Dateinamen', wenn kein absoluter Pfad angegeben ist.
    Durch Voanstellen eines "." wird im aktuellen Verzeichnis gesucht.

    Um das unter $PATH liegende Kommando `test' anstelle der eingebauten
    Version zu nutzen, muss `enable -n test' eingegeben werden.

    Rückgabewert:
    Gibt `Erfolg' zurück, außer Name ist kein eingebautes Kommando
    oder ein Fehler ist aufgetreten.Wertet arithmetische Ausdrücke aus.

    Der Ausdruck wird nach den Regeln für arithmetische Berechnungen
    ausgewertet. Diese Schreibweise entspricht »let Ausdruck«.

    Rückgabewert:
    Ist »1«, wenn der arithmetische Ausdruck 0 ergibt, sonst »0«.Auswerten arithmetischer Ausdrücke.
    
    Jedes ARG wird als arithmetischer Ausdruck ausgewertet.  Die
    Auswertung erfolgt in Ganzzahlen mit fester Breite ohne
    Überprüfung auf Überlauf. Division durch 0 wird abgefangen und als
    Fehler gekennzeichnet.  Die folgende Liste von Operatoren ist in
    abnehmender Präferenz nach gleichrangigen Operatoren gruppiert.
    
    	id++, id-- Variable post-increment, post-decrement
    	++id, --id Variable pre-increment, pre-decrement
    	-, + unäres Minus, Plus
    	!, ~ logische und bitweise Negation
    	** Potenzierung
    	*, /, % Multiplikation, Division, Rest
    	+, - Addition, Subtraktion
    	<<, >> bitweise Links- und Rechtsverschiebung
    	<=, >=, <, > Vergleich
    	==, != Gleichheit, Ungleichheit
    	& bitweises UND
    	^ bitweises XOR
    	| bitweises ODER
    	&& logisches UND
    	|| logisches OR
    	expr ? expr : expr
               Bedingte Ausführung
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |= Zuweisung
    
    Shell-Variablen sind als Operanden zulässig. Der Variablenname
    wird innerhalb eines Ausdrucks durch seinen Wert (der in eine
    Ganzzahl mit fester Breite umgewandelt wird) ersetzt.  Das
    Integer-Attribut der Variablen muss nicht eingeschaltet sein, um
    in einem Ausdruck verwendet zu werden.
    
    Die Operatoren werden in der Reihenfolge ihres Vorrangs
    ausgewertet. Unterausdrücke in Klammern werden zuerst ausgewertet
    und können die obigen Rangfolge Regeln außer Kraft setzen.
    
    Rückgabewert:
    Wenn der letzte ARG 0 ergibt, gibt let 1 zurück; andernfalls gibt let 0 zurück.Bedingten Ausdruck auswerten.
    
     Gibt den Status 0 (wahr) oder 1 (falsch) abhängig vom Ergebnis des
     Ausdrucks zurück. Die Ausdrücke können unär oder binär sein. Unäre
     Ausdrücke werden häufig verwendet, um den Dateistatus zu ermitteln.
     Es gibt weiterhin Zeichenketten und numerische Vergeichsoperatoren.
    
     Das Verhalten hängt von der Argumentanzahl ab. Die bash
     Handbuchseite enthält deren vollständige Beschreibung.
    
     Dateioperatoren:
    
       -a Datei Wahr, wenn die Datei vorhanden ist.
       -b Datei Wahr, wenn die Datei ein Blockgerät ist.
       -c Datei Wahr, wenn die Datei ein zeichenorientiertes Gerät ist.
       -d Datei Wahr, wenn die Datei ein Verzeichnis ist.
       -e Datei Wahr, wenn die Datei vorhanden ist.
       -f Datei Wahr, wenn die Datei existiert und eine reguläre Datei ist.
       -g Datei Wahr, wenn das SetGID-Bit der Datei gesetzt ist.
       -h Datei Wahr, wenn die Datei ein symbolischer Link ist.
       -L Datei Wahr, wenn die Datei ein symbolischer Link ist.
       -k Datei Wahr, wenn für die Datei das „Sticky“-Bit gesetzt ist.
       -p Datei Wahr, wenn die Datei eine Named Pipe ist.
       -r Datei Wahr, wenn die Datei für den aktuellen Nutzer lesbar ist.
       -s Datei Wahr, wenn die Datei existiert und nicht leer ist.
       -S Datei Wahr, wenn die Datei ein Socket ist.
       -t FD    Wahr, wenn FD auf einem Terminal geöffnet ist.
       -u Datei Wahr, wenn das SetUID-Bit der Datei gesetzt ist.
       -w Datei Wahr, wenn die Datei für den aktuellen Nutzer schreibbar ist.
       -x Datei Wahr, wenn die Datei vom aktuellen Nutzer ausführbar ist.
       -O Datei Wahr, wenn die Datei dem aktuellen Nutzer gehört.
       -G Datei Wahr, wenn die Datei der aktuellen Gruppe gehört.
       -N Datei Wahr, wenn die Datei seit dem letzten Lesen geändert wurde.
    
       Datei1 -nt Datei2 Wahr, wenn Datei1 neuer als Datei2 ist (gemäß
                      Änderungsdatum).
    
       Datei1 -ot Datei2 Wahr, wenn Datei1 älter als Datei2 ist.
    
       Datei1 -ef Datei2 Wahr, wenn Datei1 ein harter Link zu Datei2 ist.
    
     Zeichenkettenoperatoren:
    
       -z STRING Wahr, wenn die Zeichenkette leer ist.
    
       -n STRING
          STRING Wahr, wenn die Zeichenkette nicht leer ist.
    
       STRING1 = STRING2
                      Wahr, wenn die Zeichenketten gleich sind.
       STRING1 != STRING2
                      Wahr, wenn die Zeichenketten nicht gleich sind.
       STRING1 < STRING2
                      Wahr, wenn STRING1 lexikografisch vor STRING2
                      sortiert wird.
       STRING1 > STRING2
                      Wahr, wenn STRING1 lexikografisch nach STRING2
                      sortiert wird.
    
     Andere Operatoren:
    
       -o OPTION Wahr, wenn die Shell-Option OPTION aktiviert ist.
       -v VAR    Wahr, wenn die Shell-Variable VAR gesetzt ist.
       -R VAR    Wahr, wenn die Variable gesetzt ist und ein Nameref ist.
       ! EXPR    Wahr, wenn Ausdruck falsch ist.
       EXPR1 -a EXPR2 Wahr, wenn sowohl expr1 als auch expr2 wahr sind.
       EXPR1 -o EXPR2 Wahr, wenn entweder expr1 ODER expr2 wahr ist.
    
       arg1 OP arg2 Arithmetische Tests. OP ist eines von -eq, -ne,
                      -lt, -le, -gt oder -ge.
    
     Arithmetische binäre Operatoren geben „Wahr“ zurück, wenn ARG1
     gleich, ungleich oder kleiner als, kleiner als oder gleich,
     größer als oder größer als oder gleich als ARG2 ist.
    
     Rückgabewert:
     Gibt Erfolg zurück, wenn der Ausdruck als wahr ausgewertet wird.
     Er gibt Falsch zurück, wenn der Ausdruck zu Falsch ausgewertet
     oder ein ungültiges Argument angegeben wird.Wertet einen bedingten Ausdruck aus.

    Dieses Kommando entspricht dem Kommando »test«. Jedoch muss das
    letzte Argument ein »]« sein, welches die öffnende Klammer »[«
    schließt.Führt die Pipelie aus (die auch ein einzelnes Kommando sein kann) und
    negiert deren Rückgabewert.
    
    Rückgabewert:
    Die logische Negation des Rückgabewerts der Pipeline.Führt ein einfaches Kommando aus oder zeigt Informationen über Kommandos an.

    Führt das Kommando mit den angegebenen Argumenten aus, ohne
    Shell-Funktion nachzuschlagen oder zeigt Informationen über die
    Kommandos an. Dadurch können auch dann Kommandos ausgeführt
    werden, wenn eine Shell-Funktion gleichen Namens existiert.

    Optionen:
      -p        Es wird ein Standardwert für PATH verwendet, der garantiert,
                dass alle Standard-Dienstprogramme gefunden werden.
      -v        Ausgabe eines einzelnen Worts, welches das Kommando oder
                den Dateinamen des aufrufenden Kommandos angibt.
                Ähnlich dem eingebauten Kommando »type«.
      -V        Eine ausführlichere Beschreibung jedes Kommandos ausgeben.

    Rückgabewert:
    Gibt den Rückgabewert des Kommandos zurück, oder eine Fehlermeldung, wenn
    das Kommando nicht gefunden worden ist.Führt die Argumente als Shellkommando aus.

    Fügt die Argumente zu einer Zeichenkette zusammen und verwendet
    das Ergebnis als Eingebe in eine Shell, welche die enthaltenen
    Kommandos ausführt.

    Rückgabewert:
    Der Status des Kommandos oder Erfolg, wenn das Kommando leer war.Führt die Kommandos aus, so lange der Test fehlschlägt.
    
    Führt die Kommandos aus, so lange das letzte Kommando vom Test ein
    Rückgabewert ungleich Null hat.
    
    Rückgabewert:
    Meldet den Rückgabewert des zuletzt ausgeführten Kommandos.Führt die Kommandos aus, so lange der Test erfolgreich ist.
    
    Führt die Kommandos aus, so lange das letzte Kommando vom Test ein
    Rückgabewert gleich Null hat.
    
    Rückgabewert:
    Meldet den Rückgabewert des zuletzt ausgeführten Kommandos.Führt bedingt Befehle aus.

    Zuerst wird die „if Kommandos“ Liste ausgeführt. Ist dessen
    Rückgabewert Null, wird die Liste „then Kommandos“ ausgeführt. Sonst
    wird jede Liste „elif Kommandos“ nacheinander ausgeführt. Ist ihr
    Rückgabewert Null, wird die zugehörige „then Kommandos“ Liste
    ausgeführt und der if-Befehl abgeschlossen. Andernfalls wird, wenn
    vorhanden, die Liste „else Kommandos“ ausgeführt. Der Rückgabewert
    des gesamten Befehls ist der Rückgabwert des zuletzt ausgeführten
    Kommandos oder Null, wenn keine Bedingung erfüllt ist.

    Rückgabewert:
    Gibt den Status des zuletzt ausgeführten Befehls zurück.Befehle basierend auf Mustervergleichen ausführen.

    Befehle basierend auf Mustern ausführen. Mit „|“ können mehrere
    Muster getrennt werden.

    Rückgabewert:
    Gibt den Status des zuletzt ausgeführten Befehls zurück.Führt Befehle für jeden Listeneintrag aus.
    
    Die `for' Schleife führt eine Befehlsfolge für jeden Listeneintrag aus. Wenn
    das Schlüsselwort `in Wort ...;' fehlt, wird `in "$@"' angenommen. Für jeden
    Eintrag in "Wort" wird die Variable "Name" gesetzt und die angegebenen
    Kommandos ausgeführt.
    
    Rückgabewert:
    Der Status des zuletzt ausgeführten Kommandos.Führt Befehle einer Datei in der aktuellen Shell aus.

    Führt die Befehle in der angegebenen Datei in der aktuellen Shell aus.
    Mit der `-p' Option wird dessen Argument als mit Doppelpunkten
    getrennte Verzeichnisliste behandelt, in denen nach der Datei gesucht
    werden soll. Sonst wird der Standardsuchpfad durchsucht. Eventuell
    angegebene Argumente werden als Positionsparameter an die Datei
    übergeben.

    Rückgabewert:
    Gibt den Status des letzten in ausgeführten Befehls zurück, oder
    `Fehler', wenn die Datei nicht gelesen werden konnte.Erweiterte Vergleiche.
    
    Der Status 0 oder 1 wird abhängig vom Vergleichsergebnis zurückgegeben.
    Es werden die gleichen Ausdrücke wie in der »test« Funktion unterstützt,
    die mit folgenden Operatoren verbunden werden können:
    
      ( AUSDRUCK )	Ergibt den Wert des AUSDRUCKs
      ! Ausdruck		Negiert den AUSDRUCK
      AUSDR1 && AUSDR2	Und Verknüpfung der Ausdrücke
      AUSDR1 || AUSDR2	Oder Verknüpfung der Ausdrücke
    
    Die `==' und `!=' Operatoren ermöglichen einen Mustervergleich mit dem
    rechten Ausdruck als Muster.
    Der `=~' Operator führt einen Vergleich mit dem regulären Ausdruck
    in der rechten Seite aus.
    
    Die && und || Operatoren werten AUSDR2 nur aus, wenn nicht bereits
    AUSDR1 das gesamte Ergebnis bestimt.
    
    Rückgabewert:
    0 oder 1 abhängig vom Wert des AUSDRUCKs.Führt ein in der Shell definiertes Kommando aus.

    Führt ein in der Shell definiertes Kommando ohne vorherige
    Befehlssuche aus. Dies ist dann nützlich, wenn das Kommando als
    Shell-Funktion reimplementiert werden soll, aber das Kommando
    innerhalb der neuen Funktion aufgerufen wird.

    Rückgabewert: 
    Der Rückgabewert des aufgerufenen Kommandos oder »falsch«, wenn
    dieses nicht existiert.Exit %dBeendet eine Login-Shell.

    Beendet eine Login-Shell mit dem Rückgabewert »n«. Wenn logout
    nicht von einer Login-Shell aus ausgeführt wurde, wird ein Fehler
    zurückgegeben.Verlässt for-, while- oder until-Schleifen.

    Break beendet eine »for«-, »while«- oder »until«- Schleife. Wenn »n«
    angegeben ist, werden entsprechend viele geschachtelte Schleifen beendet.

    Rückgabewert:
    Der Rückgabewert ist 0, außer »n« ist nicht größer oder gleich 1.Beendet die aktuelle Shell.

    Beendet die aktuelle Shell mit dem Rückgabewert N. Wenn N nicht angegeben
    ist, wird der Rückgabewert des letzten ausgeführten Kommandos übernommen.Grenze für DateigrößeGleitkommafehlerFormatierte Ausgabe der ARGUMENTE.

    Optionen:
      -v var	Die formatierte Ausgabe wird der Variable "var" zugewiesen
              und nicht an die Standardausgabe gesendet.

    Die "Format" Anweisung kann einfache Zeichen enthalten, die unverändert an
    die Standardausgabe geschickt werden. Escape-Sequenzen werden umgewandelt
    und an die Standardausgabe geschickt sowie Formatanweisungen, welche das
    nachfolgende "Argument" auswerten und ausgeben.

    Zusätzich zu den in printf(3) beschriebenen Standardformatzeichen:
    csndiouxXeEfFgGaA werden ausgewertet:

      %b	Erweitert Backslasch-Escapesequenzen im angegebenen Argument.
      %q	Schützt nicht druckbare Zeichen, dass sie als Shelleingabe
          verwendet werden können.
      %Q  Wie %q, es wird zusätzlich die angegebene Genauigkeit vor dem
          Ausgeben angewendet.
      %(Fmt)T	Ausgabe des in "Fmt" angegebenen Zeitausdrucks, dass sie
          als Eingabe für strftime(3) verwendet werden kann.

    Die Formatangabe wird wiederverwendet, bis alle Argumente ausgewertet
    sind. Wenn weniger Argumente als Formatangaben vorhanden sind, werden für
    die Argumente Nullwerte bzw. leere Zeichenketten eingesetzt.

    Rückgabewert:
    Gibt `Erfolg' zurück, außer es wird eine ungültige Option angegeben
    oder es tritt ein Aus- bzw. Zuweisungsfehler auf.GNU bash, Version %s (%s)
GNU bash, Version %s-(%s)
Lange GNU-Optionen:
Allgemeine Hilfe für GNU-Software: <https://www.gnu.org/gethelp/>
Kommandos als Einheit gruppieren.
    
    Führt eine gruppierte Reihe von Kommandos aus. Dies ist eine Möglichkeit, um
    die Ausgabe von mehreren Kommandos umzuleiten.
    
     Rückgabewert:
     Gibt den Status des zuletzt ausgeführten Befehls zurück.HFT Eingabedaten ausstehendHFT-Monitormodus erlaubtHFT-Monitormodus abgeschaltetHFT-Tonfolge beendetHOME ist nicht zugewiesen.AufgelegtIch habe keinen Benutzernamen!E/A fertigINFO: Ungültige Anweisung.InformationsanforderungUnterbrochen (Interrupt)Abgebrochen (Killed)Lizenz GPLv3+: GNU GPL Version 3 oder jünger <http://gnu.org/licenses/gpl.html>
Markiert Shellvariablen als unveränderlich.
    
     Mariert jeden angegebenen Namen als schreibgeschützt. Deren Werte
     können nicht mehr geändert werden. Wenn ein Wert angegeben ist,
     wird er den Variablen vor dem Schreibschützen zugewiesen.
    
     Optionen:
       -a bezieht sich auf indizierte Arrayvariablen
       -A bezieht sich auf assoziative Arrayvariablen
       -f bezieht sich auf Shellfunktionen
       -p zeigt eine Liste aller schreibgeschützten Variablen oder
          Funktionen an, abhängig davon, ob die Option -f angegeben ist
          oder nicht
    
     Das Argument „--“ beendet die weitere Optionsverarbeitung.
    
     Rückgabewert:
     Gibt Erfolg zurück, wenn keine ungültige Option angegeben und
     der Name gültig ist.Shell-Ressourcenlimits einstellen.

    Ermöglicht die Kontrolle der Shell-Ressourcen und den von ihr
    gestarteten Prozesse, für Systeme, die eine solche Kontrolle
    ermöglichen.

    Optionen:
    -S	Verwendet das „weiche“ Ressourcenlimit.
    -H	Verwendet das „harte“ Ressourcenlimit.
    -a	Anzeige der aktuellen Limits.
    -b	Die Socket-Puffergröße.
    -c	Die maximale Größe der erstellten Speicherabzüge.
    -d	Die maximale Größe des Prozess-Datensegments.
    -e	Die maximale Scheduling-Priorität („nice“).
    -f	Die maximale Größe der von der Shell und ihren Kindern
    		geschriebenen Dateien.
    -i	Die maximale Anzahl ausstehender Signale.
    -k	Die maximale Anzahl der diesem Prozess zugewiesenen Kqueues.
    -l	Die maximale Größe, die ein Prozess in den Speicher sperren kann.
    -m	Die maximale Größe der „Resident Set Size (RSS)“.
    -n	Die maximale Anzahl geöffneter Dateideskriptoren.
    -p	Die Pipe-Puffergröße.
    -q	Die maximale Anzahl von Bytes in POSIX-Nachrichtenwarteschlangen.
    -r	Die maximale Echtzeit-Scheduling-Priorität.
    -s	Die maximale Stack-Größe.
    -t	Die maximale CPU-Zeit in Sekunden.
    -u	Die maximale Anzahl von Benutzerprozessen.
    -v	Die Größe des virtuellen Speichers.
    -x	Die maximale Anzahl von Dateisperren.
    -P	Die maximale Anzahl von Pseudoterminals.
    -R	Die maximale Zeit für einen Echtzeitprozess vor dessen Blockieren.
    -T	Die maximale Threadanzahl.

    Nicht alle Optionen sind auf allen Plattformen verfügbar.

    Wenn eine Grenze angegeben ist, wird diese der neuen Wert der
    angegebenen Ressource. Die speziellen Grenzwerte „weich“, „hart“ und
    „unbegrenzt“ stehen jeweils für das aktuelle Soft-Limit, das aktuelle
    Hard-Limit bzw. unlimitiert.
    Andernfalls wird der aktuelle Wert der angegebenen Ressource
    ausgegeben. Wenn keine Option angegeben ist, wird -f angenommen.

    Werte werden in 1024-Byte-Schritten angegeben, mit Ausnahme von -t
    (in Sekunden), -p (in 512-Byte-Schritten), -R (in Mikrosekunden),
    -b (in Bytes) und -e, -i, -k, -n, -q, -r, -u, -x und -P, die
    unskalierte Werte akzeptieren.

    Im POSIX-Modus werden die mit -c und -f angegebenen Werte in
    512-Byte-Schritten angegeben.

    Rückabewert:
    Gibt Erfolg zurück, sofern keine ungültige Option angegeben wurde
    oder ein Fehler auftrat.Bringt einen Job in den Vordergrund.

    Bringt den mit JOB_SPEC bezeichneten Prozess als aktuellen Job in den
    Vordergrund. Wenn JOB_SPEC nicht angegeben ist, wird der zuletzt
    angehaltene Job verwendet.

    Rückgabewert:
    Status des in den Vordergrund geholten Jobs oder Fehler.Bringt einen Job in den Hintergrund.

    Bringt den mit JOB_SPEC bezeichneten Job in den Hintergrund,
    als ob er mit »&« gestartet wurde.

    Rückgabewert:
    Immer Erfolg, außer wenn die Jobsteuerung nicht verfügbar ist
    oder ein Fehler auftritt.Leeranweisung.

    Leeranweisung; das Kommando hat keine Wirkung.

    Rückgabewert:
    Das Kommando ist immer »wahr«.OLDPWD ist nicht zugewiesen.Verarbeitet Optionsargumente.

    Getopts wird von Shellprozeduren verwendet, um die
    Kommandozeilenoptionen auszuwerten.

    "Optionen" enthält die auszuwertenden Buchstaben. Ein Doppelpunkt
    nach dem Buchstaben zeigt an, dass ein Argument erwartet wird,
    welches durch ein Leerzeichen von der Option getrennt ist.

    Bei jedem Aufruf von »getopts« wird die nächste Option der
    $Variable zugewiesen. Diese wird angelegt, falls sie noch
    nicht existiert. Weiterhin wird der Index des nächsten zu
    verarbeitenden Arguments der Shell-Variablen OPTIND
    zugewiesen. OPTIND wird bei jedem Aufruf einer Shell oder eines
    Shell-Skripts mit 1 initialisiert. Wenn eine Option ein Argument
    benötigt, wird dieses OPTARG zugewiesen.

    Für Fehlermeldungen gibt es zwei Varianten. Wenn das erste
    Zeichen des Optionsstrings ein Doppelpunkt ist, wird der stille
    Fehlermodus von »getopts« verwendet. In diesem Modus wird keine
    Fehlermeldung ausgegeben. Wenn eine ungültige Option erkannt wird,
    wird das gefundene Optionenzeichen OPTARG zugewiesen. Wenn ein
    benötigtes Argument fehlt, wird ein »:« der Variable zugewiesen
    und OPTARG auf das gefundene Optionenzeichen gesetzt. Im anderen
    Fehlermodus wird ein »?« der Variable zugewiesen, OPTARG geleert
    und eine Fehlermeldung ausgegeben.

    Wenn die Shell-Variable OPTERR den Wert »0« hat, werden durch getopts
    keine Fehlermeldungen ausgegeben, auch wenn das erste Zeichen
    von OPTSTRING kein Doppelpunkt ist. OPTERR hat den Vorgabewert »1«.

    Wenn im Aufruf von »getops« die »Argumente« angegeben sind, werden diese
    verarbeitet. Ansonsten werden die von der Position abhängigen
    Parameter ($1, $2, etc.) verarbeitet.

    Rückgabewert:
    Gibt »Erfolg« zurück wenn eine Option gefunden wird und
    »gescheitert«, wenn das Ende der Optionen erreicht oder ein Fehler
    aufgetreten ist.Gibt den Namen des aktuellen Arbeitsverzeichnisses aus.

    Optionen:
      -L        Gibt den Inhalt der Variable $PWD aus, wenn sie das aktuelle
                Arbeitsverzeichnis enthält.
      -P        Gibt den physischen Verzeichnispfad aus, ohne symbolische
                Links.

    Standardmäßig wird immer die Option »-L« gesetzt.

    Rückgabewert:
    Ist 0, außer wenn eine ungültige Option angegeben oder das aktuelle
    Verzeichnis nicht lesbar ist.QuitLiest eine Zeile von der Standardeingabe und teilt sie in Felder auf.
    
    Liest eine Zeile von der Standardeingabe oder, mit der Option -u, dem
    Dateideskriptor FD. Die Zeile wird ähnlich der Wortaufteilung in Felder
    geteilt, und in der angegebenen Reihenfolge den Namen zugewiesen.
    Überzählige Felder werden dem letzten Namen zugewiesen. Die in $IFS
    enthaltenen Zeichen werden als Trennzeichen verwendet.
    
    Wenn keine NAMEn angegeben werden, wird die gelesene Zeile in der
    REPLY-Variablen gespeichert.
    
    Optionen:
      -a Feld	Weist die gelesenen Wörter mit aufeinanderfolgenden
      		Indizes mit Null beginnend der Array-Variable `Array' zu.
      -d Begrenzer	Bis zum ersten Zeichen von `Begrenzer' lesen, statt
      		statt bis zum Zeilenende.
      -e	Readline verwenden, um die Zeile zu lesen.
      -E	Readline verwenden die Zeile zu lesen, aber die Vervollständigung
    		der Bash anstatt der von Readline benutzen.
      -i Text	`Text' als Anfangstext für Readline verwenden.
      -n Zeichenenzahl	Liest maximal so viele Zeichen bis zu einem, ohne ein Zeilenumbruch
    		zu berücksichtigen. Worttrennzeichen werden ausgewertet.
      -N nchars Liest genau NCHARS Zeichen, bis EOF oder einer
    		Zeitüberschreitung. Worttrennzeichen werden ignoriert.
      -p prompt Gibt vor dem Lesen die Zeichenkette PROMPT ohne einen
    		abschließenden Zeilenumbruch aus.
      -r        lässt keine Backslashes als Escape-Zeichen zu
      -s        keine Echo-Eingabe von einem Terminal
      -t timeout
                Zeitüberschreitung und Rückgabe eines Fehlers, wenn
    		eine vollständige Eingabezeile nicht innerhalb von
    		TIMEOUT Sekunden gelesen wird. Die TMOUT Variable
    		enthält das Standard-Timeout.  TIMEOUT kann als
    		Bruchteil angegeben werden.  Wenn TIMEOUT gleich 0
    		ist, werden keine daten geleden und gibt Erfolg
    		zurück, wenn Daten dem angegebenen Dateideskriptor
    		verfügbar sind.  Der Rückgabewert ist größer als 128,
    		wenn die Zeitüberschreitung abgelaufen ist.
      -u fd Lesen von Dateideskriptor FD statt von der Standardeingabe
    
    Rückgabewert: 
    Der Rückgabewert ist Null. Es sei denn, das Dateiende wurde
    erreicht, die Lesezeit überschritten (in diesem Fall ist er größer
    als 128), ein Variablenzuweisungsfehler tritt auf oder ein
    ungültiger Dateideskriptor wurde als Argument von -u übergeben.Liest Zeilen einer Datei in eine Array-Variable.

    Ist ein Synonym für »mapfile«.Zeilen von der Standardeingabe in ein indiziertes Array einlesen.
    
    Liest Zeilen von der Standardeingabe in das angegebene indizierte Array.
    Mit der Option -u wird aus dem Dateideskriptor `fd' gelesen. Die
    Variable MAPFILE ist das Standard-Array.
    
    Optionen:
      -d Begrenzer	Verwendet den `Begrenzer' als Zeilenende statt newline
      -n Anzahl	Begrenzt die `Anzahl' gelesener Zeilen. Mit `Anzahl'
         gleich 0 werden alle Zeilen gelesen.
      -O Index	Weist die Werte dem Array beginnend mit dem `Index' zu.
      		Der Standardindex ist 0.
      -s Anzahl	Überspringen der ersten Zeilen.
      -t	Entfernt das letzte Zeichen von jeder gelesenen Zeile
         (standardmäßig newline).
      -u fd	Aus dem Dateideskriptor `fr' statt der Standardeingabe lesen.
      -C Callback	Den `Callback' jedes Mal auswerten, wenn die angegebene
         Zeilenanzahl gelesen worden ist.
      -c Anzahl	Zeilenanzahl für jeden Aufruf vom `Callback'.

    Argumente:
      Feldvariable	Name der zu verwendenden Array-Variablen.
    
    Wenn -C ohne -c angegeben wird, ist das Standardquantum 5000. Wenn CALLBACK
    ausgewertet wird, erhält es den Index des nächsten zuzuweisenden Array
    Elementes und die Zeile, die diesem Element zugewiesen werden soll als
    zusätzliche Argumente.
    
    Wenn kein expliziter Ursprung angegeben wird, löscht mapfile ARRAY, bevor
    bevor es zugewiesen wird.
    
    Rückgabewert:
    Gibt `Erfolg' zurück, es sei denn, es wird eine ungültige Option angegeben,
    das ARRAY ist schreibgeschützt oder kein indiziertes Array.Datei blockiertProgrampfade merken oder anzeigen.
    
    Ermittelt und speichert den vollständigen Pfadnamen jedes
    Kommandos NAME.  Wenn keine Argumente angegeben werden, werden
    Informationen über gespeicherte Kommandod angezeigt.
    
    Optionen:
      -d Vergessen des Speicherortes für jeden NAME
      -l Anzeige in einem Format, das als Eingabe wiederverwendet werden kann
      -p Pfadname verwendet PATHNAME als den vollständigen Pfadnamen von NAME
      -r vergisst alle gespeicherten Pfade
      
      -t gibt den Speicherort jedes NAMENS aus, wobei jedem
         Speicherort der entsprechende NAME vorangestellt wird,
         wenn mehrere NAMEs angegeben sind
                
    Argumente:
        NAME    Jeder NAME wird in $PATH gesucht und in die Liste
        der gespeicherten Befehle hinzugefügt.
    
    Exit-Status:
    Gibt Erfolg zurück, es sei denn, NAME wird nicht gefunden oder es
    wird eine ungültige Option angegeben.Entfernt Einträge vom Verzeichnisstapel.

    Entfernt Einträge vom Verzeichnisstapel. Ohne Argumente wird der
    oberste Eintrag entfernt und in das neue oberste Verzeichnis
    gewechselt.

    Optionen:
    -n	Entfernt nur den Verzeichniseintrag und wechselt nicht
       	das Verzeichnis.
          
    Argumente:
    +N	Entfernt den N-ten Eintrag von links, gezählt von
        Null, aus der von »dirs« anzeigten Liste. Beispielsweise
        entfernen »popd +0« den ersten und »popd +1« den zweiten
        Verzeichniseintrag.

    -N	Entfernt den N-ten Eintrag von rechts, gezählt von Null,
      	aus der von »dirs« angeigten Liste. Beispielsweise entfernen
        »popd -0« den letzten und »popd -1« den vorletzten
        Verzeichniseintrag.

        Mit »dirs« kann der Verzeichnisstapel angezeigt werden.

        Rückgabewert:
        Gibt 0 zurück, außer wenn ein ungültiges Argument angegeben
        wurde oder der Verzeichniswechsel nicht erfolgreich war.Entfernt jeden angegebenen Namen von der Aliasliste.

    Optionen:
      -a	Enfernt alle Alias-Definitionen.

    Gibt immer Erfolg zurück, außer wenn der Alias nicht existiert.Entfernt Aufträge aus der aktuellen Shell.
    
    Entfernt jedes JOBSPEC-Argument aus der Tabelle der aktiven
    Aufträge. Ohne JOBSPECs verwendet die Shell ihre Vorstellung vom
    aktuellen Auftrag.
    
    Optionen:
      -a entfernt alle Aufträge, wenn JOBSPEC nicht angegeben wird.
      -h JOBSPEC maskieren, so dass der Auftrag kein SIGHUP erhält,
         wenn die Shell ein SIGHUP empfängt.
      -r entfernt nur laufende Aufträge.
    
    Beenden Status:
    Gibt Erfolg zurück, außer wenn eine ungültige Option oder
    JOBSPEC angegeben wurde.Entfernt Einträge vom Stapel.  Ohne Argumente wird der oberste Eintrag
    gelöscht und anschließend in das das neue oben liegende Verzeichnis
    gewechselt.
    
    Optionen:
      -n	Vermeidet das Wechseln des Verzeichnisses, so dass
	nur der Verzeichnisstapel geändert wird.
    
    Argumente:
      +N	Entfernt den N-ten Eintrag von links, der von `dirs'
	angezeigt wird.  Dabei beginnt die Zählung von Null.  So
	entfernt z.B. »popd +0« den ersten und »popd +1« den zweiten
	Eintrag.
    
      -N	Entfernt den N-ten Eintrag von rechts, der von `dirs'
	angezeigt wird.  Dabei beginnt die Zählung von Null.  So
	entfernt z.B. »popd -0« den letzten und »popd +1« den vorletzten
	Eintrag.
    
    Das Kommando »dirs« zeigt den Verzeichnisstapel an.Ersetzt die Shell durch das angegebene Kommando.

    Führt das angegebene Kommando einschließlich dessen Optionen an
    Stelle der Shell aus. Wenn kein Kommando angegeben ist, wirken
    alle Weiterleitungen für die aktuellen Shell.

    Optionen:
      -a Name	Setzt den Namen als nulltes Argument für das Kommando.
      -c	Führt das Kommando in einer leeren Umgebung aus.
      -l	Setzt einen Strich in das nullte Argument für das Kommando.

    Wenn das Kommando nicht ausgeführt werden kann, wird eine nicht
    interaktive Shell beendet, außer die Shell-Option »execfail« ist
    gesetzt.

    Rückgabewert:
    Gibt »Erfolg« zurück, außer das Kommando wurde nicht gefunden oder
    ein Weiterleitungsfehler trat auf.Misst die für die Pipeline-Ausführung benötigte Zeit.

    Führt die Pipeline aus und gibt deren abgelaufene echte Zeit, die
    Benutzer-CPU-Zeit und die System-CPU-Zeit aus.

    Optionen:
    -p	Gibt die Zeitübersicht im portablen Posix-Format aus.

    Der Wert der TIMEFORMAT-Variable wird als Ausgabeformat verwendet.

    Rückgabewert:
    Der Rückgabewert entspricht dem der Pipeline.Springt zum Schleifenanfang von for, while, oder until Schleifen.

    Springt zum Schleifenanfang der aktuellen »for«, »while« oder »until«
    Schleife. Wenn »n« angegeben ist, wird zum Beginn der »n«-ten
    übergeordneten Schleife gesprungen.

    Rückgabewert:
    Der Rückgabewert ist 0, außer wenn »n« nicht größer oder gleich 1 ist.Job im Vordergrund fortsetzen.
    
    Entspricht dem JOB_SPEC-Argument des Befehls „fg“. Er nimmt einen gestoppten
    oder Hintergrundjob wieder auf. JOB_SPEC kann ein Jobname oder eine
    Jobnummer angeben. Ein nachfolgendes „&“ bringt den Job in den Hintergrund,
    ähnlich wie die Jobbezeichnung von „bg“.
    
    Exit-Status:
    Gibt den Status des wiederaufgenommenen Jobs zurück.Gibt »wahr« zurück.
    
    Rückgabewert:
    Immer »wahr«.Gibt »falsch« zurück.
    
    Rückgabewert:
    Immer »falsch«.Rückkehr aus einer Shell-Funktion.
    
    Bewirkt, dass eine Funktion oder ein geladenes Skript mit dem
    durch N angegebenen Rückgabewert beendet wird.  Wenn N weggelassen
    wird, wird als Rückgabewert der des zuletzt ausgeführten Befehls
    verwendet.
    
    Rückgabewert:
    Gibt N zurück, oder einen Fehler, wenn return außerhalb einer Funktion
    oder Skript aufgerufen wird.Gibt Informationen zum aktuellen Subroutinenaufruf aus.

    Ohne Argument wird die Zeilennummer und der Dateiname angezeigt. Mit
    Argument werden Zeilennummer, Subroutinenname und Dateiname ausgegeben.
    Mit diesen Informationen kann ein Stacktrace erzeugt werden.

    Das Argument gibt die angezeigte Position im Funktionsaufrufstapel an,
    wobei 0 der aktuelle Funktionsaufruf ist.

    Rückgabewert:
    Ist ungleich 0 wenn keine Shellfunktion ausgeführt wird oder das Argument
    ungültig ist, sonst 0.Gibt Informationen zum aktuellen Subroutinenaufruf aus.

    Ohne Argument wird \"$line $filename\" angezeigt. Mit Argument
    werden Zeilennummer, Subroutinenname und Dateiname ausgegeben.
    Mit diesen Informationen kann ein Stacktrace erzeugt werden.

    Das Argument gibt die angezeigte Position im Funktionsaufrufstapel an,
    wobei 0 der aktuelle Funktionsaufruf ist.

    Rückgabewert:
    Ist ungleich 0 wenn keine Shellfunktion ausgeführt wird oder das Argument
    ungültig ist, sonst 0.LäuftAdressierungsfehlerWählt Wörter aus einer Liste und führt anschließend das Kommando aus.
    
    Die angegebenen Wörter werden in eine Liste überführt. Diese wird
    auf die Standardausgabe mit einer vorangestellten Nummer gedruckt.
    Wenn keine Wörter angegeben sind, wird `in "$@"' verwendet. An-
    schließend wird der PS3 Prompt angezeigt und eine Zeile von der
    Standardeingabe gelesen. Wenn der gelesene Text einer angezeigten
    Nummer entspricht, wird der mit dem Wort bezeichnete Variable das
    angezeigte Wort zugewiesen. Wird eine leere Zeile gelesen, wird die
    Liste erneut angezeigt. Nachdem EOF (End of File) gelesen wurde,
    wird das Kommando beendet. Jeder andere Wert führt dazu, dass eine
    leere Zeichenkette zugewiesen wird. Die gelesene Zeile wird der
    Variable REPLY zugewiesen. Die Kommandos werden nach jeder Auswahl
    ausgeführt und durch Break beendet.
    
    Rückgabewert:
    Status des zuletzt ausgeführten Kommandos.Sendet ein Signal an einen Auftrag.
    
    Sendet den durch PID oder JOBSPEC identifizierten Prozessen das
    mit SIGSPEC oder SIGNUM anggebene Signal. Wenn weder SIGSPEC
    noch SIGNUM angegeben sind, dann wird wird SIGTERM gesendet.
    
    Optionen:
      -s sig SIG ist ein Signalname.
      -n sig SIG ist eine Signalnummer.
      -l listet die Signalnamen auf. Wenn Argumente auf `-l' folgen,
         werden für diese Signalnummern die Namen aufgelistet.
      -L Synonym für -l.
    
    Kill ist ein in die Shell eingebaute Funktion, da diese erlaubt,
    Auftrags- statt Prozessnummern anzugeben. Weierhin kann Kill
    Prozesse auch dann beenden, wenn die maximal erlaubte
    Prozessanzahl erreicht ist.
    
    Exit-Status:
    Gibt Erfolg zurück, es sei denn, es wurde eine ungültige Option
    angegeben oder es ist ein Fehler aufgetreten.Bestimmt Readline Tastenzuordnungen und Variablen.
    
    Weist eine Tastensequenz einer Readlinefunktion oder -makro zu
    oder setzt eine Readlinevariable.  Die Argumentsyntax ist zu
    den Einträgen in ~/.inputrc äquivalent, aber sie müssen als
    einzelnes Argument übergeben werden.  Z.B: bind '"\C-x\C-r":
    re-read-init-file'.
    
    Optionen:
      -m  Keymap         Benutzt KEYMAP as Tastaturbelegung für die Laufzeit
                         dieses Kommandos.  Gültige Keymapnamen sind: emacs,
                         emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,
                         vi-command und vi-insert.
      -l                 Listet Funktionsnamen auf.
      -P                 Listet Funktionsnamen und Tastenzuordnungen auf.
      -p                 Listet Funktionsnamen und Tastenzuordnungen so auf,
                         dass sie direkt als Eingabe verwendet werden können.
      -S                 Listet Tastenfolgen und deren Werte auf, die Makros 
                         aufrufen.
      -s                 Listet Tastenfolgen und deren Werte auf, die Makros 
                         aufrufen, dass sie als Eingabe wiederverwendet werden
                         können.
      -V                 Listet Variablennamen und Werte auf.
      -v                 Listet Variablennamen und Werte so auf, dass sie als
                         Eingabe verwendet werden können.
      -q  Funktionsname  Sucht die Tastenfolgen, welche die angegebene
                         Funktion aufrufen.
      -u  Funktionsname  Entfernt alle der Funktion zugeordneten Tastenfolgen.
      -r  Tastenfolge    Entfernt die Zuweisungen der angegebeben Tastenfolge.
      -f  Dateiname      Liest die Tastenzuordnungen aus der angegebenen Datei.
      -x  Tastenfolge:Shellkommando	Weist der Tastenfolge das Shellkommando
    					zu.
      -X                                Listet mit -x erzeugte
                                        Tastenfolgen und deren Werte
                                        auf, die Makros aufrufen, dass
                                        sie als Eingabe wiederverwendet werden
                                        können.
    
    Argumente, die zu keiner Option gehören, werden von der -p und -P
    Option als Readline-Kommando betrachtet und die Ausgabe auf diese
    Kommandos beschränkt.
    
    Rückgabewert: 
    Bind gibt 0 zurück, wenn keine unerkannte Option angegeben wurde
    oder ein Fehler eintrat.Setzt oder löscht Shell-Optionen.

    Ändert die in »Optionsnamen« genannten Shell-Optionen. Ohne
    Argumente wird eine Liste der Shell-Optionen und deren Status
    ausgegeben.

    Optionen:
      -o        Beschränkt die Optionsmanen auf die, welche mit 
                »set -o« definiert werden müssen.
      -p        Gibt alle Shelloptionen und deren Status aus.
      -q        Unterdrückt Ausgaben.
      -s        Setzt jede Option in »Optionsname.«
      -u        Deaktiviert jede Option in »Optionsname«.

    Rückgabewert:
    Gibt Erfolg zurück, wenn eine Option gesetzt worden ist. Wenn
    eine ungültige Option angegeben wurde oder eine Option deaktiviert
    worden ist, wird ein Fehler zurückgegeben.Exportattribut für Variablen setzen.
    
     Markiert jeden Namen für den Export in die Umgebung der später
     ausgeführte Befehle. Wenn ein Wert angegeben ist, wird dieser der
     Variablen vor den Exportieren zugewiesen.
    
     Optionen:
       -f	Bezieht sich auf Shellfunktionen.
       -n	Entfernt die Exporteigenschaft für jeden Namen.
       -p	Zeigt die exportierten Variablen und Funktionen an.
    
     Das Argument „--“ beendet die weitere Optionsverarbeitung.
    
     Rückgabewert:
     Gibt Erfolg zurück, wenn keine ungültige Option oder Name angegeben
     worden ist.Setzen oder Aufheben von Shell-Optionen und Positionsparametern.
    
    Den Wert von Shell-Attributen und Positionsparametern ändern, oder
    die Namen und Werte von Shell-Variablen anzeigen.
    
    Optionen:
      -a Markieren von Variablen die geändert oder erstellt wurden, für den Export.
      -b Sofortige Benachrichtigung über das Auftragsende.
      -e Sofortiger Abbruch, wenn ein Befehl mit einem Status ungleich Null beendet wird.
      -f Deaktiviert das Generieren von Dateinamen (globbing).
      -h Merkt sich den Speicherort von Befehlen, wenn sie nachgeschlagen werden.
      -k Alle Zuweisungsargumente werden in die Umgebung für einen
         Befehl in die Umgebung aufgenommen, nicht nur diejenigen,
         die dem Befehl vorangestellt sind.
      -m Die Auftragskontrolle ist aktiviert.
      -n Befehle lesen, aber nicht ausführen.
      -o Optionsname
          Setzt die Variable, die dem Optionsname entspricht:
              allexport wie -a
              braceexpand wie -B
              emacs verwendet eine emacsähnliche Schnittstelle zur Zeilenbearbeitung
              errexit gleich wie -e
              errtrace dasselbe wie -E
              functrace dasselbe wie -T
              hashall dasselbe wie -h
              histexpand gleich wie -H
              history Befehlshistorie aktivieren
              ignoreeof die Shell wird beim Lesen von EOF nicht beendet
              interaktive-Kommentare
                           erlaubt das Erscheinen von Kommentaren in interaktiven Befehlen
              keyword dasselbe wie -k
              monitor gleich wie -m
              noclobber dasselbe wie -C
              noexec gleich wie -n
              noglob gleich wie -f
              nolog wird derzeit akzeptiert, aber ignoriert
              notify gleich wie -b
              nounset dasselbe wie -u
              onecmd dasselbe wie -t
              physical wie -P
              pipefail der Rückgabewert einer Pipeline ist der Status
                       des des letzten Befehls, der mit einem Status
                       ungleich Null beendet wurde, oder Null, wenn
                       kein Befehl mit einem Status ungleich Null
                       beendet wurde.
             posix     Ändert das Verhalten der Bash, wo sie vom
                       Posix-Standard abweicht, dass sie mit dem
                       Standard übereinstimmt.
              privilegiert gleich wie -p
              verbose dasselbe wie -v
              vi eine vi-ähnliche Schnittstelle zur Zeilenbearbeitung verwenden
              xtrace dasselbe wie -x
      -p Wird eingeschaltet, wenn die realen und effektiven
         Benutzerkennungen nicht übereinstimmen.  Deaktiviert die
         Verarbeitung der $ENV-Datei und das Importieren von Shell
         Funktionen.  Wenn diese Option ausgeschalten ist, werden die
         effektive uid und gid auf die reale uid und gid gesetzt. 
      -t Beenden nach dem Lesen und Ausführen eines Befehls.
      -u Nicht gesetzte Variablen beim Substituieren als Fehler behandeln.
      -v Shell-Eingabezeilen ausgeben, wenn sie gelesen werden.
      -x Befehle und ihre Argumente ausgeben, wenn sie ausgeführt werden.
      -B Die Shell führt eine Klammererweiterung durch
      -C Dateien werden bei Ausgabeumleitung nicht überschrieben.
      -E Wenn gesetzt, wird die Fehlerfalle (trap) an Shell-Funktionen vererbt.
      -H Aktiviert die !-Stil Verlaufsersetzung.  Diese Option ist
         bei einer interaktiven Shell standardmäßig aktiviert.
      -P Symbolische Links werden nicht aufgelöst, wenn Befehle wie
         z.B. cd, das aktuelle Verzeichnis ändern.
      -T DEBUG und RETURN Fallen (trap) werden an Shellfunktionen vererbt.
      -- Weist alle verbleibenden Argumente den Positionsparametern
         zu.  Sind keine Argumente verblieben, werden die
         Positionsparameter nicht gesetzt.
      - Weist alle verbleibenden Argumente den Positionsparametern zu.
        Die Optionen -x und -v sind ausgeschaltet.
    
    Wenn -o ohne Optionsname angegeben ist, werden die gegenwärtig aktiven
    Einstellungen der Shell ausgegeben. Wenn +o ohne Optionsname angegeben
    ist, wird eine Serie von Kommandos ausgegeben, mit der die gegenwärtig
    aktiven Optionseinstellungen wiederhergestellt werden können.
    
    Durch Verwenden von + anstelle von - werden Option ausgeschaltet.
    Die Optionen können auch beim Shellaufruf verwendet werden.  Die
    aktuelle aktiven Optionen sind in $- gespeichert.  Die restlichen
    n ARGs sind positionale Parameter und werden der Reihe nach $1,
    $2, ... $n zugewiesen.  Wenn keine ARGs angegeben werden, werden
    alle Shell-Variablen ausgegeben.
    
    Rückgabewert:
    Gibt Erfolg zurück, es sei denn, eine ungültige Option wurde angegeben.Setzt Variablen Werte und Eigenschaften

    Synonym für »declare«. Siehe »help declare«.Setzt Variablenwerte und deren Attribute.

    Deklariert Variablen und weist ihnen Attribute zu. Wenn keine Namen
    angegeben sind, werden die Attribute und Werte aller Variablen ausgegeben.
    
    Optionen:
      -f        Schränkt Aktionen oder Anzeigen auf Funktionsnamen
                und Definitionen ein.
      -F        Zeigt nur Funktionsnamen an (inklusive Zeilennummer
                und Quelldatei beim Debuggen).
      -g        Deklariert globale Varieblen innerhalb einer
                Shellfunktion; wird ansonsten ignoriert.
      -I        Eine neue lokale Variable erhält die Attribute und Werte der
                Variable mit gleichen Namen im vorherigen Gültigkeitsbereich. 
      -p        Zeigt die Attribute und Werte jeder angegebenen
                Variable an.

    Attribute setzen:
      -a	Deklariert ein indiziertes Array (wenn unterstützt).
      -A	Deklariert ein assoziatives Array (wenn unterstützt).
      -i	Deklariert eine ganzzahlige Variable.
      -l	Konvertiert die übergebenen Werte zu Kleinbuchstaben.
      -n	Der Name wird als Variable interpretiert. 
      -r	Deklariert nur lesbare Variablen.
      -t	Weist das Attribut `trace' zu.
      -u	Konvertiert die übergebenen Werte in Großbuchstaben.
      -x	Exportiert die Variablen.

    Das Voranstellen von `+' anstelle von `-' schaltet die angegebenen
    Attribute ab, außer für -a, -A und -r.

    Für ganzzahlige Variablen werden bei der Zuweisung arithmetische
    Berechnungen durchgeführt (siehe `help let').

    Innerhalb einer Funktion werden lokale Variablen erzeugt. Die
    Option `-g' unterdrückt dieses Verhalten.

    Rückgabewert:
    Gibt `Erfolg' zurück, außer wenn eine ungültige Option angegeben,
    wurde oder ein Fehler auftrat.Shellkommando, auf das das Schlüsselwort zutrifft `Shell Kommandos auf die die Schlüsselwörter zutreffen `Shell-Optionen:
Verschiebt Positionsparameter.
    
    Benennt die Positionsparameter $N+1,$N+2 ... in $1,$2 ... um. Wenn N
    nicht angegeben ist, wird 1 verwendet.
    
    Rückgabewert:
    Gibt Erfolg zurück, wenn N positiv und kleiner gleich $# ist.Signal %dAngehaltenAngehalten (Signal)Angehalten (Terminaleingabe)Angehalten (Terminalausgabe)Angehalten(%s)Shell-Ausführung  aussetzen.
    
     Hält die die Shell so lange an, bis sie wieder ein SIGCONT-Signal empfängt.
     Anmelde-Shells und Shells ohne Jobsteuerung können nur ausgesetzt
     werden, wenn dies erzwungen wird.
    
     Optionen:
       -f erzwingt das Anhalten für eine Loginshell.
    
     Exit-Status:
     Gibt Erfolg zurück, außer bei inaktiver Jobsteuerung oder einem anderen
     Fehler.TIMEFORMAT: »%c«: Ungültiges Formatzeichen.Abgebrochen (Terminated)Die Post in %s wurde bereits gelesen.
Es gibt noch laufende Prozesse.
Es gibt noch angehaltene Prozesse.
Es wird keinerlei Garantie gewährt, soweit es das Gesetz zulässt.Diese Shellkommandos sind intern definiert. Geben Sie »help« ein, um diese
Liste zu sehen. Geben Sie »help Name« ein, um die Beschreibung der Funktion
»Name« zu sehen. Geben Sie »info bash« ein, um die vollständige Dokumentation
zu sehen. Geben Sie »man -k« oder »info« ein, um detaillierte Beschreibungen
der Shellkommandos zu sehen.

Ein Stern (*) neben dem Namen kennzeichnet deaktivierte Kommandos.

Dies ist freie Software. Sie darf verändert und weitergegeben werden.Verarbeitet Signale und andere Ereignisse.

    Definiert und aktiviert Handler für Signale oder andere Bedingungen,
    welche die Shell empfängt.

    Das Argument ist ein Befehl, der gelesen und ausgeführt wird, wenn die
    Shell eins der angegebenen Signale empfängt. Fehlt das Argument,
    und ist nur ein einzelnes Signal angegeben oder die Signalbezeichnung
    „-“ angegeben, wird jedes Signal auf seinen ursprünglichen Wert
    zurückgesetzt. Wenn das Argument eine leere Zeichenkette ist, wird
    jedes angegebene Signal von der Shell und den von ihr aufgerufenen
    Befehlen ignoriert.

    Wenn das angegebene Signal EXIT (0) ist, wird das Argument unmittelbar
    vor Beenden der Shell ausgeführt. Mit der Signalangabe DEBUG wird das
    Argument vor jedem einfachen Befehl und ausgewählten anderen Befehlen
    ausgeführt. Ist das Signal RETURN, wird das Argument jedes Mal
    ausgeführt, wenn eine Shellfunktion oder ein vom . oder source-
    Builtin ausgeführtes Skript endet. Eine Signalangabe ERR bedeutet,
    dass das Argument dann ausgeführt wird, sobald ein Fehler zum Beenden
    der Shell führen würde und die Shelloption -e aktiviert ist.

    Ohne Argumente gibt trap die Liste der mit jedem abgefangenen Signal
    verknüpften Befehle in einer Form aus, die als Shell-Eingabe
    wiederverwendet werden kann, um die gleichen Signaldispositionen
    wiederherzustellen.

    Optionen:
    -l	Gibt eine Liste der Signalnamen und der zugehörigen Nummern aus.
    -p	Zeigt die mit jedem Signal verknüpften Befehle in einer Form an,
    		die als Shell-Eingabe wiederverwendet werden kann oder für alle
        abgefangenen Signale, wenn keine Argumente angegeben werden.
    -P	Zeigt die mit jedem Signal verknüpften Befehle an. Mindestens
    		ein Signal muss angegeben werden. -P und -p schließen sich gegen-
        seitig aus.

    Jedes angegebene Signal ist entweder ein Signalname aus <signal.h>
    oder eine Signalnummer.
    Signalnamen berücksichtigen keine Groß- und Kleinschreibung und das
    Präfix SIG ist optional. Ein Signal kann mit „kill -signal $$“ an
    die Shell gesendet werden.

    Rückgabewert:
    Erfolg, sofern keine ungültige Signalspezifikation oder eine
    ungültige Option angegeben wurden.Mehr Informationen über Shell-Optionen sind mit »%s -c "help set"«
verfügbar.
Eingebaute Shell-Kommandos werden durch »%s -c help« beschrieben.
Unbekanntes Signal Nr.: %d.Unbekannter Fehler.Unbekannter StatusZurücksetzen der Werte und Attribute von Variablen und Funktionen.
    
     Entfernt für jeden NAMEN die entsprechende Variable oder Funktion.
    
     Optionen:
       -f behandelt jeden NAMEN als Shell-Funktion
       -v behandelt jeden NAMEN als Shell-Variable
       -n behandelt jeden NAMEN als Namensreferenz und setzt diese
          Variable zurück, statt der Variable, auf die es verweist
    
     Ohne Angabe einer Optionen versucht unset zunächst, eine Variable
     zu deaktivieren. Wenn dies fehlschlägt, versucht, eine Funktion zu
     deaktivieren.
    
     Einige Variablen können nicht deaktiviert werden. Siehe auch
     „schreibgeschützt“.
    
     Rückgabewert:
     Gibt Erfolg zurück, wenn keine ungültige Option oder ein
     schreibgeschützter NAME angegeben worden ist.Dringende IO-BedingungAufruf:	%s [Lange GNU-Option] [Option] ...
	%s [Lange GNU-Option] [Option] Script-Datei ...
Verwenden Sie »%s«, um die Shell zu verlassen.
Fehler bitte mit dem Kommando »bashbug« melden.
Nutzersignal 1Nutzersignal 2Wartet auf das Ende des angegebenen Prozesses und meldet dessen
    Rückgabewert.

    Wartet auf alle durch eine Prozess-ID oder Jobspezifikation
    angegebenen Prozesse und meldet deren Rückgabewert. Fehlt die
    Angabe wird auf alle aktuell aktiven Kindprozesse gewartet. Dann ist
    der Rückgabestatus Null. Ist eine Jobspezifikation angegeben, wird
    auf alle Prozesse der Jobpipeline gewartet.

    Mit der Option -n wird nur auf das Ende des ersten angegebenen Jobs
    gewartet. Ohne Angabe einer Prozess- oder Jobbezeichnung wird auf
    den Abschluss des nächsten Jobs gewartet und dessen Rückgabewert
    gemeldet.

    Mit der Option -p wird die Prozess- oder Jobbezeichnung des
    beendeten Jobs, der angegebenen Variable zugewiesen. Die Variable
    wird vor jeder Zuweisung gelöscht. Diese Option ist nur in
    Verbindung mit -n sinnvoll.

    Die Option -f bei aktivierter Jobsteuerung bewirkt, dass auf das
    Ende der angegebenen Prozesse gewartet wird, statt auf deren
    Statusänderung.

Rückgabewert:
    Gibt den Status der letzten Prozesses zurück. Der Befehl schlägt fehl,
    wenn die ID oder eine Option ungültig sind oder wenn -n angegeben ist
    und die Shell keine laufenden Kindsprozesse hat.Wartet auf das Prozessende und gibt dessen Rückgabewert aus.

    Wartet auf jeden durch eine PID angegebenen Prozess und meldet
    dessen Rückgabwert. Wenn keine PID angegeben ist, wird auf alle
    aktiven Kindsprozesse gewartet und der Rückgabestatus ist Null.
    Die PID muss eine Prozess-ID sein.

    Rückgabewert:
    Gibt den Status der letzten PID zurück; schlägt fehl, wenn die PID
    ungültig ist oder eine ungültige Option angegeben ist.Fenster geändertAusgabe der Argumente auf die Standardausgabe.

    Zeigt die Argumente auf der Standardausgabe an, gefolgt von einem
    Zeilenumbruch.

    Option:
      -n	keinen Zeilenumbruch anfügen.

    Rückgabewert:
    Gibt »Erfolg« zurück, außer nach einem Schreibfehler.Ausgabe der Argumente auf die Standardausgabe.

    Zeigt die angegebenen Argumente auf der Standardausgabe an. Diese
    sind jeweils durch ein Leerzeichen getrennt und mit einem
    Zeilenumbruch abgeschlossen.

    Optionen:
      -n	Keinen Zeilenumbruch anfügen
      -e	Interpretation der folgenden Escape-Sequenzen zulassen
      -E	Keine Interpretation der Escape-Sequenzen.

    `echo' interpretiert die folgenden Escape-Sequenzen:
      	Alarm (Glocke)
      \b	Rücktaste (Backspace)
      \c	weitere Ausgabe unterdrücken
      \e	Escape-Zeichen
      \E	Escape-Zeichen
      \f	Seitenvorschub
      \n	Zeilenumbruch
      \r	Wagenrücklauf
      \t	Horizontaler Tabulator
      \v	Vertikaler Tabulator
      \\  umgekehrter Schrägstrich (Backslash)
      \0nnn	Zeichen mit dem ASCII-Code »NNN« (oktal). »NNN« kann
    		  aus bis zu drei oktalen Ziffern bestehen.
      \xHH	Acht-Bit-Zeichen mit dem Wert »HH« (hexadezimal). »HH«
    		kann aus ein oder zwei hexadezimalen Ziffern bestehen.
      \uHHHH ein Unicode-Zeichen mit dem Hexadezimalwert HHHH. HHHH kann
          ein bis vier Zeichen lang sein.
      \UHHHHHHHH ein Unicode-Zeichen mit dem Hexadezimalwert HHHHHHHH.
          HHHHHHHH kann ein bis acht Zeichen lang sein.

    Rückgabewert:
    Gibt `Erfolg' zurück, außer ein Ausgabefehler tritt auf.Sie haben Post in $_.Sie haben neue Post in $_.[ Argument... ][[ Ausdruck ]]`%c': Falsches Kommando.»%c«: Ungültiges Formatierungszeichen.`%c': Ungültiges Zeichen im symbolischen Modus.`%c': Ungültiger Operator für den symbolischen Modus.»%c«: Ungültige Zeitformatangabe.»%s«: Bindung kann nicht gelöst werden.»%s«: Kommandozurdnung kann nicht aufgehoben werden. »%s«: Ungültiger Aliasname.»%s«: Ungültiger Tastenzuordnungs-Name.»%s«: Ungültiger Name für indirekte Variablenreferenz.»%s« ist eine spezielle eingebaute Funktion.»%s«: Fehlendes Formatierungszeichen.»%s«: Ist keine gültige Prozess-ID oder Jobbezeichnung.»%s«: Ist kein gültiger Bezeichner.%s: Unbekannter Funktionsname.»)« erwartet.»)« erwartet, %s gefunden.»:« für ein bedingten Ausdruck erwartet.alias [-p] [Name[=Wert] ... ]all_local_variables: no function context at current scopeMehrdeutige UmlenkungArgumentArgument erwartet.Arithmetischer Syntaxfehler im AusdruckArithmetischer Syntaxfehler in der VariablenzuweisungArithmetischer Syntaxfehler: Ungültiger arithmetischer OperatorArithmetischer Syntaxfehler: Operand erwartetDie Unterstützung für Arrayvariablen ist in dieser Shell nicht vorhanden.Versuchte Zuweisung zu etwas, das keine Variable ist.Falscher Feldindex.Falscher KommandotypDefekter InterpreterFalscher SprungFalsche Ersetzung: Kein schließendes »`« in %s.Falsche Ersetzung: Kein schließendes »%s« in »%s« enthalten.Bash-Homepage: <https://www.gnu.org/software/bash>
bash_execute_unix_command: Kann nicht die Tastenzuordnung für das Kommando finden.bg [Jobbezeichnung ...]bind [-lpsvPSVX] [-m Tastaturtabelle] [-f Dateiname] [-q Name] [-u Name]
	[-r Tastenfolge] [-x Tastenfolge:Shell Kommando]
	[Tastenfolge:readline-Funktion oder -Kommando]Klammererweiterung: Konnte keinen Speicher für %s zuweisen.Klammererweiterung: Konnte keinen Speicher für %s Elemente zuweisen.Klammererweiterung: Konnte keinen Speicher für »%s« zuweisen.break [n]Fehler: Falscher Zuweisungsoperator.builtin [Shellkommando [Argument ...]]caller [Ausdruck]»Return« ist nur aus einer Funktion oder einem mit »source« ausgeführten Skript möglich.Kann nur innerhalb einer Funktion benutzt werden.Kann keinen neuen Dateideskriptor für die Eingabe von fd %d zuweisen.Kann fd keiner Variable zuweisenKann die Regionaleinstellungen nicht ändernKann nicht erstellenKann die temporäre Datei für das Hier-Dokument nicht anlegenKann fd %d nicht auf fd %d verdoppeln.Kann die benannte Pipe %s nicht auf fd %d duplizieren.Kann nicht ausgeführt werdenBinärdatei kann nicht ausgeführt werdenKann %s nicht in der dynamischen Bibliothek finden %s: %sKann das Limit nicht ermittelnKann keinen Unterprozess für die Kommandoersetzung erzeugen.Kann den Kindsprozess für die Prozessersetzung nicht erzeugen.Kann keine Pipes für Kommandoersetzung erzeugen.Kann keine Pipe für die Prozessersetzung erzeugen.Kann das Limit nicht ändernKann nicht geöffnet werdenKann nicht die benannte Pipe %s zum Lesen öffnen.Kann nicht die benannte Pipe %s zum Schreiben öffnen.Kann die dynamische Bibliothek nicht laden %s: %sKann die temporäre Datei nicht öffnenKann existierende Datei nicht überschreibenNicht lesbarKann die Standardeingabe nicht von /dev/null umleitenKonnte den No-Delay-Modus für fd %d nicht wiederherstellen.Kann nicht Shelloptionen gleichzeitig aktivieren und deaktivieren.Konnte die GID nicht in %d ändern: Die effektive GID ist %dKann die Prozessgruppe des Terminals nicht setzen (%d).Konnte die UID nicht in %d ändern: Die effektive UID ist %dGleichzeitiges »unset« einer Funktion und einer Variable ist nicht möglich.Kann keinen Debugger starten. Der Debugmodus ist gesperrt.Kann die Shell nicht unterbrechen.Kann die Loginshell nicht unterbrechen.Mit »-f« können keine Funktionen erzeugt werden.Es darf höchstens eine Option aus -anrw angegeben werden.case Wort in [Muster [| Muster]...) Kommandos ;;]... esaccd [-L|[-P [-e]]] [-@] [Verzeichnis]command [-pVv] Kommando [Argument ...]Kommando nicht gefundenKommandoersetzung: NULL-Byte in der Eingabe ignoriert.command_substitute: Kann Pipe nicht als Dateideskriptor 1 duplizieren.compgen [-V Variablenname] [-abcdefgjksuv] [-o Option] [-A Aktion][-G Suchmuster] [-W Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S Suffix] [Wort]complete [-abcdefgjksuv] [-pr] [-DEI] [-o Option] [-A Aktion] [-G Suchmuster] [-W Wortliste]  [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S Suffix] [Name 
...]completion: Funktion »%s« nicht gefunden.compopt [-o|+o Option] [-DEI] [Name ...]continue [n]coproc [Name] Kommando [Umleitungen]Konnte das Verzeichnis »/tmp« nicht finden, bitte anlegen.cprintf: »%c«: Ungültiges Formatsymbol.gegenwärtigdeclare [-aAfFgiIlnrtux] [Name[=Wert] ...] oder declare -p [-aAfFilnrtux] [Name ...]Lösche den gestoppten Prozess %d der Prozessgruppe %ld.describe_pid: %ld: Prozessnummer existiert nicht.Der Verzeichnisstapel ist leer.Verzeichnisstapelindexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [Jobbezeichnung ... | pid ...]Division durch 0.Dynamisches Laden ist nicht verfügbar.echo [-n] [Argument ...]echo [-neE] [Argument ...]Fehlender Name für die Arrayvariable.Leerer Dateinameenable [-a] [-dnps] [-f Dateiname] [Name ...]Fehler beim Ermitteln der TerminalattributeFehler beim Importieren der Funktionsdefinition für »%s«.Fehler bei Abrufen des aktuellen VerzeichnissesFehler beim Einstellen der Terminalattributeeval [Argument ...]eval: Maximale Schachtelungstiefe überschritten (%d)exec [-cl] [-a Name] [Kommando [Argument ...]] [Umleitung ...]exit [n]»)« erwartet.Der Exponent ist kleiner als 0.export [-fn] [Name[=Wert] ...] oder export -p [-f]Ausdruck erwartet.Zu viele Rekursionen in Ausdruck.fc [-e Editor] [-lnr] [Anfang] [Ende] oder fc -s [Muster=Ersetzung] [Kommando]fg [Jobbezeichnung]Dateideskriptor außerhalb des gültigen Bereichs.Ein Dateiname wird als Argument benötigt.for (( Ausdr1; Ausdr2; Ausdr3 )); do Kommandos; donefor Name [in Wort ... ] ; do Kommandos; doneDie geforkte PID %d erscheint im laufenden Prozess %d.Formatleseproblem: %sFrame nicht gefundenfree: Wurde für bereits freigegebenen Speicherbereich aufgerufen.free: Wurde für nicht zugeordneten Speicherbereich aufgerufen.free: Beginn und Ende Segmentgrößen sind unterschiedlich.free: Underflow erkannt; magic8 beschädigt.free: Underflow erkannt; mh_nbytes außerhalb des Gültigkeitsbereichs.function Name { Kommandos ; } oder Name () { Kommandos ; }function_substitute: Kann die Standardausgabe nicht in einen anonyme Datei umlenkenZukünftige Versionen dieser Shell werden das Auswerten arithmetischer Ersetzungen erzwingen.getcwd: Kann auf die übergeordneten Verzeichnisse nicht zugreifen.getopts Optionen [Argumente ...]hash [-lr] [-p Pfadname] [-dt] [Name ...]Hashing deaktiviert.help [-dms] [Muster ...]In dieser Version ist keine Hilfe verfügbar.Das in der Zeile %d beginnende Here-Dokument geht bis zum Dateiende (erwartet wird »%s«).history [-c] [-d Offset] [n] oder history -anrw [Dateiname] oder history -ps Argument [Argument...]Kommandostapelposition.VerlaufsspezifikationTreffer	Befehl
Nach einem Präinkrement oder Prädekrement wird ein Bezeichner erwartet.if Kommandos; then Kommandos; [ elif Kommandos; then Kommandos; ]... [ else Kommandos; ] fiinitialize_job_control: getpgrp war nicht erfolgreich.initialize_job_control: line disciplineinitialize_job_control: Keine Jobsteuerung im Hintergrund.initialize_job_control: setpgidUngültige arithmetische Basis.Ungültige Basisinvalid character %d in exportstr for %sUngültiger DateideskriptorUngültiger Sortiertyp für GlobbingUngültige hexadezimale Zahl.Ungültige Ganzzahlenkonstante.Ungültige Zahl.Ungültige Oktalzahl.ungültiger regulärer Ausdruck `%s'ungültiger regulärer Ausdruck `%si': %sUngültige Signalnummer.Job %d wurde ohne Jobsteuerung gestartet.Jobbezeichnung [&]jobs [-lnprs] [Jobbez. ...] or jobs -x Kommando [Arg]kill [-s Signalname | -n Signalnummer | -Signalname] pid | jobspec ... oder kill -l [Signalname]Letztes Kommando: %s
let Argument [Argument ...]LimitZeile %d: Zeileneditierung ist nicht aktiviert.Die Ladefunktion von %s lieferte einen Fehler (%d), daher nicht geladen.local [Option] Name[=Wert] ...Abgemeldet
logout [n]Schleifenzählermake_here_document: Falscher Befehlstyp %d.make_local_variable: no function context at current scopeMalloc: Ein internet Speicherbereich (free list) wurde überschrieben.malloc: Zusicherung gescheitert: %s.
mapfile [-d Begrenzer] [-n Anzahl] [-O Index] [-s Anzahl] [-t] [-u fd]
        [-C Callback] [-c Anzahl] [Feldvariable]Verlege den Prozess auf einen anderen ProzessorFehlende »)«Fehlende »]«Fehlende hexadezimale Ziffer nach \x.Fehlende Unicode-Ziffer für \%c.Der Netzwerkbetrieb ist nicht unterstützt.no `=' in exportstr for %sfehlende schließende `%c' in %s.Kein Kommando gefunden.Kein passendes Hilfethema für »%s«. Probieren Sie »help help«, »man -k %s« oder »info %s«.Keine Jobsteuerung in dieser Shell.Keine Jobsteuerung in dieser Shell.Keine Entsprechung: %skein anderes VerzeichnisKeine weiteren Optionen mit `-x' erlaubt.Gegenwärtig wird keine Komplettierungsfunktion ausgeführt.Keine Loginshell: Mit »exit« abmelden!NULL VerzeichnisOktalzahlnur in einer for-, while- oder until-Schleife sinnvoll.Pipe-Fehlerpop_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]Spannungsausfall steht bevorDer hübsche Druckmodus wird in interaktiven Schells ignoriert.print_command: Falsches Verbindungszeichen »%d«.printf [-v var] Format [Argumente]Programmierfehlerpushd [-n] [+N | -N | Verzeichnis]pwd [-LP]read [-Eers] [-a Feld] [-d Begrenzer] [-i Text] [-n Zeichenanzahl] [-N Zeichenanzahl] [-p Prompt] [-t Zeitlimit] [-u fd] [Name ...]Lesefehlerreadarray [-d Begrenzer] [-n Anzahl] [-O Quelle] [-s Anzahl] [-t]
          [-u fd] [-C Callback] [-c Anzahl ] [Feldvariable]readonly [-aAf] [Name[=Wert] ...] oder readonly -prealloc: Mit nicht zugewiesenen Argument aufgerufen.realloc: Beginn und Ende Segmentgrößen sind unterschiedlich.<realloc: Underflow erkannt; magic8 beschädigt.realloc: Underflow erkannt; mh_nbytes außerhalb des Gültigkeitsbereichs.Rekursionsstapel leer.Umleitungsfehler: Verdoppeln des Dateibezeichners nicht möglich.register_alloc: %p ist bereits in der Speicherzuordnungstabelle als belegt gekennzeichnet?
register_alloc: Speicherzuordnungstabelle ist mit FIND_ALLOC gefüllt?
register_free: %p ist bereits in der Speicherzuordnungstabelle als frei gekennzeichnet?
eingeschränktEingeschränkt: Die Ausgabe kann nicht umgeleitet werdenreturn [n]run_pending_traps: Ungültiger Wert in trap_list[%d]: %psave_bash_input: Es existiert bereits ein Puffer für den neuen fd %d.select Wort [in Wörter ... ;] do Kommandos; doneset [-abefhkmnptuvxBCEHPT] [-o Optionsname] [--] [-] [Argument ...]Der Shell-Level (%d) ist zu hoch und wird auf 1 zurückgesetzt.shift [n]Verschiebeanzahlshopt [-pqsu] [-o] [Optionsname ...]sigprocmask: %d: Ungültige Operationsource [-p Pfad] Dateiname [Argumente]start_pipeline: pgrp pipeZeichenkettenlängesuspend [-f]SyntaxfehlerSyntaxfehler im bedingten Ausdruck.Syntaxfehler im bedingten Ausdruck: Unerwartetes Symbol »%s«.Syntaxfehler bei »%s«Syntaxfehler beim unerwarteten Symbol »%s«Syntaxfehler beim unerwarteten Token `%s' während dem Suchen nach `%c«'Syntax Fehler: »%s« unerwartet.Syntaxfehler: »((%s))«.Syntax Fehler: unerwartetes `;'.Syntaxfehler: Es wird ein arithmetischer Ausdruck benötigt.Syntaxfehler: Unerwartetes Dateiende.Syntaxfehler: Unerwartetes Dateiende vom Kommando `%s' in Zeile %d.Syntaxfehler: Unerwartetes Dateiende vom Kommando in Zeile %dSystemausfall steht bevortest [Ausdruck]time [-p] PipelineZu viele Argumente.trap [-Plp] [[Argument] Signalbezeichnung ...]Traphandler: Maximale Traphandler-Ebene überschritten (%d)trap_handler: Falsches Signal %d.type [-afptP] Name [Name ...]typeset [-aAfFgiIlnrtux] name[=Wert] ... oder typeset -p [-aAfFilnrtux] [Name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [Grenze]umask [-p] [-S] [Modus]unalias [-a] Name [Name ...]Dateiende beim Suchen nach »]]« erreicht.Dateiende beim Suchen nach »%c« erreicht.Dateiende beim Suchen nach zugehöriger »)« erreicht.Unerwartetes Zeichen: »%s« anstatt von »)«UnbekanntUnbekanntes Kommandounset [-f] [-v] [-n] [NAME ...]until Test; do Kommandos; doneDer Wert ist für die aktuelle Basis zu groß.variables - Namen und Bedeutung einiger Shellvariablenwait [-fn] [-p Variable] [id ...]wait [PID ...]wait: Prozess %ld wurde nicht von dieser Shell gestartet.wait_for_job: Der Job %d ist gestoppt.Warnung: Warnung: Die Option -C könnte unerwartete Ergebnisse liefern.Warnung: Die Option -F könnte unerwartete Ergebnisse liefern.while Test; do Kommandos; doneSchreibfehlerxtrace_set: %d: Ungültiger Dateideskriptor.{ Kommandos ; }