File: nl.gmo

package info (click to toggle)
bash 5.3-2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 44,432 kB
  • sloc: ansic: 134,747; sh: 8,866; yacc: 5,966; makefile: 4,697; perl: 4,105; asm: 48; awk: 23; sed: 16
file content (2942 lines) | stat: -rw-r--r-- 187,509 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
eD5l&@3*A3l3<3$3
333
4
4,4A4X4	n4x44444455 /5P5d5(5/5;5$6::6u66(6'6"67(7)E7o7377&7&7/!8/Q88.8+88/949E9c9"9999-9:%:B:(S:|::::::);8;W;u;;;;;; <!%<G<]<,w<< <<+<
=0)='Z=.==0==>,>?>O>b>y>>>>
>>?&+?R?h?/???)?@+@3:@n@@@@&@@@A
A!A@A _A9A#AAABBHEBIRIbIFnIJJJJ	J	J%K'Q
;Q[1\m2\]2]_]aYcT2gimhq+w'z||?j}r__g̡4u'v|g
F[v?Ƕ )0	@JSg	{N۷J],+=XfDQb	P@x
"g<5quFFNLqy>sv
Z|ID$%%	%g	&q*y******W,
,,,,5,O-Bc.x.B6Eb66
66}6V9Xj99*9
:
:(:>l@{@eAF#F
;FFFWFiF%F$F'FF%G5GNG.hGGG!GGH,H9H'PH0xHH9HIII%0I.VI4I)II$J)J=J
NJ\JlJ&uJ'J3J9J2K6DK6{KK.FL:uL3L	LL!M
)M37MkM=MMM
M)N2N'RNzNN&NN*N*O)2O)\OOO%O%O OP)PHP-TP#P1P&P&P&&Q5MQ.QQQ!Q!R:"R]RzR RR0R1R+SS#rT(T$TT$T#U':UbUSjU.UUV"V8V)OV
yVVVVVV,V%W!DW,fW"W!WW.W?X+VXXXX1XX#X@Y
XYfYY-Y,Y'Y!Z<Z.LZ,{Z&Z*Z0Z6+[Gb[:[P[(6\ _\)\\\"\?\T8]]]
]8]V]&R^'y^4^^^_(_D_\_s_____#_`"`@`5M`O````	`a5 aVava
~a
a+a9a;a$6b[bdyb$bc"c.c:cSc qccccHcd,dIdVd"id+dddd4d
%eD0e?ue,eee2
f!@f"bf"f0fff	gpg
gfg1g/%h)Uh-h3hh&h2"i5Ui,i
i"i
i1iI#j4mjj.j>j)'kNQk	kk k"k%k l
:lHlUl&bl=ll'lGmNmlmm,m$mAm<4nqnnnn&n6no3oQQo*ooo%p.(p-Wp7p6p2p1'q*Yq,q,q;q#r>rFr\r#|rr6rr
s*s"Gsjs6s	s-s-s#'tKt'Wt'tttt:rv/vDv,"wOw_www
w&www#w	
xx#'xKx,ixxx%xx)y+y"Ey1hy7y?y(zA;z}z$z1z3z'{?{/X{8{!{:{|25|)h|?|?|}8.}8g}}3}}-~5~2T~~~~2~~#>/Q/ LmҀ(>g0΁'݁0M7\18ƂD$c̃,)Ed!%Մ%:A|!,);(3d.dž3#'7Od$8ɇ&)<MYE-sS$
:H
P[#=a1BI%u4j/K`"]
@*(S	Ycr@
*7.ME/+%?G5=,K+E_Jn#"1
KVhx
p;	b	D=1Aol$
&	%&[0+g0558H<,=3@?tBfE`GH2I3I+ JLK5M3ODOTOSxV-_?behy`kyÒ+

ʆՆ#2&
.L4lJ6	?F˓'6N=
&K@rǗۗ}=Ohy)-*@&U|&2å-$0Ar4ڦ<LMl֧ߧ$3+O*{,,Ө,@V0g+9ĩGF5]5ɪ<F٫> 	_9i/ӬW->[l3ȭ!50Df=!+J4h2+Я)&B+R/~%!԰'1-@_:2۱02?:r;!;6Y=γ1%C5ZGش({&/˶$$-%RxZ:۷$;Pb/y#ݸ-/?'o-6Ź ,J8]<3Ӻ"6<s-V%&%L2r..Լ$(C<88)1>NOCݾU!Bw*'
%'>Lfd,C/Vo,$#<H!4	&Ea|"&'*F=`
#8Az

0M@?C&0(%!(@)iP&$Ka+q7 =JJSC8/<D))$61A	\f#6;;&,b46:-O1}7
:S<G1@$-eY	!%&)L&v
$=)(?Mh3$8C]>*+@V#X0*[s1=<><={98.,0[0H*1:Q&p7
4/S%Q@
@K&P.$?d
Jd}s./J?	SF<i\3Kh:nQ0#`v
NRM~UL]=H(&Xu|dr4H&!'O1P^WS aN$ Cm
1*=5E	`1%97tYcajmc/["+V];H*-QL,xW6I-2|3y\YPGh)eo+<@?Pl7eb,n";7t
8^8ZN\V[MFXgRT_Ip,:F@^Ul62BD]!Zp GUA/:If4K2;9s=[&V>qM_G0%K>{d)TTSEw$byB-rL#Zu}v"gD#A+b5?

94QacEq_@'e`3.Jz.O{(wOA05z(BkiC%~k	6f<)8>YxR*!X'C$DWjotimed out waiting for input: auto-logout
	-%s or -o option
	-ilrsD or -c command or -O shopt_option		(invocation only)

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

(( expression ))(core dumped) (wd now: %s)
++: assignment requires lvalue--: assignment requires lvalue. [-p path] filename [arguments]/dev/(tcp|udp)/host/port not supported without networking/tmp must be a valid directory name<no current directory>ABORT instructionAborting...Add directories to stack.
    
    Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    		directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    		from the left of the list shown by `dirs', starting with
    		zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    		from the right of the list shown by `dirs', starting with
    		zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    		new current working directory.
    
    The `dirs' builtin displays the directory stack.
    
    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    	directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    	from the left of the list shown by `dirs', starting with
    	zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    	from the right of the list shown by `dirs', starting with
    	zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    	new current working directory.
    
    The `dirs' builtin displays the directory stack.Alarm (profile)Alarm (virtual)Alarm clockArithmetic for loop.
    
    Equivalent to
    	(( EXP1 ))
    	while (( EXP2 )); do
    		COMMANDS
    		(( EXP3 ))
    	done
    EXP1, EXP2, and EXP3 are arithmetic expressions.  If any expression is
    omitted, it behaves as if it evaluates to 1.
    
    Exit Status:
    Returns the status of the last command executed.BPT trace/trapBad system callBogus signalBroken pipeBus errorCPU limitChange the shell working directory.
    
    Change the current directory to DIR.  The default DIR is the value of the
    HOME shell variable. If DIR is "-", it is converted to $OLDPWD.
    
    The variable CDPATH defines the search path for the directory containing
    DIR.  Alternative directory names in CDPATH are separated by a colon (:).
    A null directory name is the same as the current directory.  If DIR begins
    with a slash (/), then CDPATH is not used.
    
    If the directory is not found, and the shell option `cdable_vars' is set,
    the word is assumed to be  a variable name.  If that variable has a value,
    its value is used for DIR.
    
    Options:
      -L	force symbolic links to be followed: resolve symbolic
    		links in DIR after processing instances of `..'
      -P	use the physical directory structure without following
    		symbolic links: resolve symbolic links in DIR before
    		processing instances of `..'
      -e	if the -P option is supplied, and the current working
    		directory cannot be determined successfully, exit with
    		a non-zero status
      -@	on systems that support it, present a file with extended
    		attributes as a directory containing the file attributes
    
    The default is to follow symbolic links, as if `-L' were specified.
    `..' is processed by removing the immediately previous pathname component
    back to a slash or the beginning of DIR.
    
    Exit Status:
    Returns 0 if the directory is changed, and if $PWD is set successfully when
    -P is used; non-zero otherwise.Child death or stopCommon shell variable names and usage.
    
    BASH_VERSION	Version information for this Bash.
    CDPATH	A colon-separated list of directories to search
    		for directories given as arguments to `cd'.
    GLOBIGNORE	A colon-separated list of patterns describing filenames to
    		be ignored by pathname expansion.
    HISTFILE	The name of the file where your command history is stored.
    HISTFILESIZE	The maximum number of lines this file can contain.
    HISTSIZE	The maximum number of history lines that a running
    		shell can access.
    HOME	The complete pathname to your login directory.
    HOSTNAME	The name of the current host.
    HOSTTYPE	The type of CPU this version of Bash is running under.
    IGNOREEOF	Controls the action of the shell on receipt of an EOF
    		character as the sole input.  If set, then the value
    		of it is the number of EOF characters that can be seen
    		in a row on an empty line before the shell will exit
    		(default 10).  When unset, EOF signifies the end of input.
    MACHTYPE	A string describing the current system Bash is running on.
    MAILCHECK	How often, in seconds, Bash checks for new mail.
    MAILPATH	A colon-separated list of filenames which Bash checks
    		for new mail.
    OSTYPE	The version of Unix this version of Bash is running on.
    PATH	A colon-separated list of directories to search when
    		looking for commands.
    PROMPT_COMMAND	A command to be executed before the printing of each
    		primary prompt.
    PS1		The primary prompt string.
    PS2		The secondary prompt string.
    PWD		The full pathname of the current directory.
    SHELLOPTS	A colon-separated list of enabled shell options.
    TERM	The name of the current terminal type.
    TIMEFORMAT	The output format for timing statistics displayed by the
    		`time' reserved word.
    auto_resume	Non-null means a command word appearing on a line by
    		itself is first looked for in the list of currently
    		stopped jobs.  If found there, that job is foregrounded.
    		A value of `exact' means that the command word must
    		exactly match a command in the list of stopped jobs.  A
    		value of `substring' means that the command word must
    		match a substring of the job.  Any other value means that
    		the command must be a prefix of a stopped job.
    histchars	Characters controlling history expansion and quick
    		substitution.  The first character is the history
    		substitution character, usually `!'.  The second is
    		the `quick substitution' character, usually `^'.  The
    		third is the `history comment' character, usually `#'.
    HISTIGNORE	A colon-separated list of patterns used to decide which
    		commands should be saved on the history list.
ContinueCopyright (C) 2025 Free Software Foundation, Inc.Create a coprocess named NAME.
    
    Execute COMMAND asynchronously, with the standard output and standard
    input of the command connected via a pipe to file descriptors assigned
    to indices 0 and 1 of an array variable NAME in the executing shell.
    The default NAME is "COPROC".
    
    Exit Status:
    The coproc command returns an exit status of 0.DEBUG warning: Define local variables.
    
    Create a local variable called NAME, and give it VALUE.  OPTION can
    be any option accepted by `declare'.
    
    If any NAME is "-", local saves the set of shell options and restores
    them when the function returns.
    
    Local variables can only be used within a function; they are visible
    only to the function where they are defined and its children.
    
    Exit Status:
    Returns success unless an invalid option is supplied, a variable
    assignment error occurs, or the shell is not executing a function.Define or display aliases.
    
    Without arguments, `alias' prints the list of aliases in the reusable
    form `alias NAME=VALUE' on standard output.
    
    Otherwise, an alias is defined for each NAME whose VALUE is given.
    A trailing space in VALUE causes the next word to be checked for
    alias substitution when the alias is expanded.
    
    Options:
      -p	print all defined aliases in a reusable format
    
    Exit Status:
    alias returns true unless a NAME is supplied for which no alias has been
    defined.Define shell function.
    
    Create a shell function named NAME.  When invoked as a simple command,
    NAME runs COMMANDs in the calling shell's context.  When NAME is invoked,
    the arguments are passed to the function as $1...$n, and the function's
    name is in $FUNCNAME.
    
    Exit Status:
    Returns success unless NAME is readonly.Display directory stack.
    
    Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    		to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    		with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list
    		shown by dirs when invoked without options, starting with
    		zero.
    
      -N	Displays the Nth entry counting from the right of the list
    		shown by dirs when invoked without options, starting with
    		zero.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Display information about builtin commands.
    
    Displays brief summaries of builtin commands.  If PATTERN is
    specified, gives detailed help on all commands matching PATTERN,
    otherwise the list of help topics is printed.
    
    Options:
      -d	output short description for each topic
      -m	display usage in pseudo-manpage format
      -s	output only a short usage synopsis for each topic matching
    		PATTERN
    
    Arguments:
      PATTERN	Pattern specifying a help topic
    
    Exit Status:
    Returns success unless PATTERN is not found or an invalid option is given.Display information about command type.
    
    For each NAME, indicate how it would be interpreted if used as a
    command name.
    
    Options:
      -a	display all locations containing an executable named NAME;
    		includes aliases, builtins, and functions, if and only if
    		the `-p' option is not also used
      -f	suppress shell function lookup
      -P	force a PATH search for each NAME, even if it is an alias,
    		builtin, or function, and returns the name of the disk file
    		that would be executed
      -p	returns either the name of the disk file that would be executed,
    		or nothing if `type -t NAME' would not return `file'
      -t	output a single word which is one of `alias', `keyword',
    		`function', `builtin', `file' or `', if NAME is an alias,
    		shell reserved word, shell function, shell builtin, disk file,
    		or not found, respectively
    
    Arguments:
      NAME	Command name to be interpreted.
    
    Exit Status:
    Returns success if all of the NAMEs are found; fails if any are not found.Display or execute commands from the history list.
    
    fc is used to list or edit and re-execute commands from the history list.
    FIRST and LAST can be numbers specifying the range, or FIRST can be a
    string, which means the most recent command beginning with that
    string.
    
    Options:
      -e ENAME	select which editor to use.  Default is FCEDIT, then EDITOR,
    		then vi
      -l 	list lines instead of editing
      -n	omit line numbers when listing
      -r	reverse the order of the lines (newest listed first)
    
    With the `fc -s [pat=rep ...] [command]' format, COMMAND is
    re-executed after the substitution OLD=NEW is performed.
    
    A useful alias to use with this is r='fc -s', so that typing `r cc'
    runs the last command beginning with `cc' and typing `r' re-executes
    the last command.
    
    The history builtin also operates on the history list.
    
    Exit Status:
    Returns success or status of executed command; non-zero if an error occurs.Display or manipulate the history list.
    
    Display the history list with line numbers, prefixing each modified
    entry with a `*'.  An argument of N lists only the last N entries.
    
    Options:
      -c	clear the history list by deleting all of the entries
      -d offset	delete the history entry at position OFFSET. Negative
    		offsets count back from the end of the history list
      -d start-end	delete the history entries beginning at position START
    		through position END.
    
      -a	append history lines from this session to the history file
      -n	read all history lines not already read from the history file
    		and append them to the history list
      -r	read the history file and append the contents to the history
    		list
      -w	write the current history to the history file
    
      -p	perform history expansion on each ARG and display the result
    		without storing it in the history list
      -s	append the ARGs to the history list as a single entry
    
    If FILENAME is given, it is used as the history file.  Otherwise,
    if HISTFILE has a value, that is used. If FILENAME is not supplied
    and HISTFILE is unset or null, the -a, -n, -r, and -w options have
    no effect and return success.
    
    The fc builtin also operates on the history list.
    
    If the HISTTIMEFORMAT variable is set and not null, its value is used
    as a format string for strftime(3) to print the time stamp associated
    with each displayed history entry.  No time stamps are printed otherwise.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.Display or set file mode mask.
    
    Sets the user file-creation mask to MODE.  If MODE is omitted, prints
    the current value of the mask.
    
    If MODE begins with a digit, it is interpreted as an octal number;
    otherwise it is a symbolic mode string like that accepted by chmod(1).
    
    Options:
      -p	if MODE is omitted, output in a form that may be reused as input
      -S	makes the output symbolic; otherwise an octal number is output
    
    Exit Status:
    Returns success unless MODE is invalid or an invalid option is given.Display possible completions depending on the options.
    
    Intended to be used from within a shell function generating possible
    completions.  If the optional WORD argument is present, generate matches
    against WORD.
    
    If the -V option is supplied, store the possible completions in the indexed
    array VARNAME instead of printing them to the standard output.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Display process times.
    
    Prints the accumulated user and system times for the shell and all of its
    child processes.
    
    Exit Status:
    Always succeeds.Display status of jobs.
    
    Lists the active jobs.  JOBSPEC restricts output to that job.
    Without options, the status of all active jobs is displayed.
    
    Options:
      -l	lists process IDs in addition to the normal information
      -n	lists only processes that have changed status since the last
    		notification
      -p	lists process IDs only
      -r	restrict output to running jobs
      -s	restrict output to stopped jobs
    
    If -x is supplied, COMMAND is run after all job specifications that
    appear in ARGS have been replaced with the process ID of that job's
    process group leader.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.
    If -x is used, returns the exit status of COMMAND.Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    	to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    	with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list shown by
    	dirs when invoked without options, starting with zero.
    
      -N	Displays the Nth entry counting from the right of the list shown by
	dirs when invoked without options, starting with zero.DoneDone(%d)EMT instructionEnable and disable shell builtins.
    
    Enables and disables builtin shell commands.  Disabling allows you to
    execute a disk command which has the same name as a shell builtin
    without using a full pathname.
    
    Options:
      -a	print a list of builtins showing whether or not each is enabled
      -n	disable each NAME or display a list of disabled builtins
      -p	print the list of builtins in a reusable format
      -s	print only the names of Posix `special' builtins
    
    Options controlling dynamic loading:
      -f	Load builtin NAME from shared object FILENAME
      -d	Remove a builtin loaded with -f
    
    Without options, each NAME is enabled.
    
    On systems with dynamic loading, the shell variable BASH_LOADABLES_PATH
    defines a search path for the directory containing FILENAMEs that do
    not contain a slash. It may include "." to force a search of the current
    directory.
    
    To use the `test' found in $PATH instead of the shell builtin
    version, type `enable -n test'.
    
    Exit Status:
    Returns success unless NAME is not a shell builtin or an error occurs.Evaluate arithmetic expression.
    
    The EXPRESSION is evaluated according to the rules for arithmetic
    evaluation.  Equivalent to `let "EXPRESSION"'.
    
    Exit Status:
    Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise.Evaluate arithmetic expressions.
    
    Evaluate each ARG as an arithmetic expression.  Evaluation is done in
    fixed-width integers with no check for overflow, though division by 0
    is trapped and flagged as an error.  The following list of operators is
    grouped into levels of equal-precedence operators.  The levels are listed
    in order of decreasing precedence.
    
    	id++, id--	variable post-increment, post-decrement
    	++id, --id	variable pre-increment, pre-decrement
    	-, +		unary minus, plus
    	!, ~		logical and bitwise negation
    	**		exponentiation
    	*, /, %		multiplication, division, remainder
    	+, -		addition, subtraction
    	<<, >>		left and right bitwise shifts
    	<=, >=, <, >	comparison
    	==, !=		equality, inequality
    	&		bitwise AND
    	^		bitwise XOR
    	|		bitwise OR
    	&&		logical AND
    	||		logical OR
    	expr ? expr : expr
    			conditional operator
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	assignment
    
    Shell variables are allowed as operands.  The name of the variable
    is replaced by its value (coerced to a fixed-width integer) within
    an expression.  The variable need not have its integer attribute
    turned on to be used in an expression.
    
    Operators are evaluated in order of precedence.  Sub-expressions in
    parentheses are evaluated first and may override the precedence
    rules above.
    
    Exit Status:
    If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.Evaluate conditional expression.
    
    Exits with a status of 0 (true) or 1 (false) depending on
    the evaluation of EXPR.  Expressions may be unary or binary.  Unary
    expressions are often used to examine the status of a file.  There
    are string operators and numeric comparison operators as well.
    
    The behavior of test depends on the number of arguments.  Read the
    bash manual page for the complete specification.
    
    File operators:
    
      -a FILE        True if file exists.
      -b FILE        True if file is block special.
      -c FILE        True if file is character special.
      -d FILE        True if file is a directory.
      -e FILE        True if file exists.
      -f FILE        True if file exists and is a regular file.
      -g FILE        True if file is set-group-id.
      -h FILE        True if file is a symbolic link.
      -L FILE        True if file is a symbolic link.
      -k FILE        True if file has its `sticky' bit set.
      -p FILE        True if file is a named pipe.
      -r FILE        True if file is readable by you.
      -s FILE        True if file exists and is not empty.
      -S FILE        True if file is a socket.
      -t FD          True if FD is opened on a terminal.
      -u FILE        True if the file is set-user-id.
      -w FILE        True if the file is writable by you.
      -x FILE        True if the file is executable by you.
      -O FILE        True if the file is effectively owned by you.
      -G FILE        True if the file is effectively owned by your group.
      -N FILE        True if the file has been modified since it was last read.
    
      FILE1 -nt FILE2  True if file1 is newer than file2 (according to
                       modification date).
    
      FILE1 -ot FILE2  True if file1 is older than file2.
    
      FILE1 -ef FILE2  True if file1 is a hard link to file2.
    
    String operators:
    
      -z STRING      True if string is empty.
    
      -n STRING
         STRING      True if string is not empty.
    
      STRING1 = STRING2
                     True if the strings are equal.
      STRING1 != STRING2
                     True if the strings are not equal.
      STRING1 < STRING2
                     True if STRING1 sorts before STRING2 lexicographically.
      STRING1 > STRING2
                     True if STRING1 sorts after STRING2 lexicographically.
    
    Other operators:
    
      -o OPTION      True if the shell option OPTION is enabled.
      -v VAR         True if the shell variable VAR is set.
      -R VAR         True if the shell variable VAR is set and is a name
                     reference.
      ! EXPR         True if expr is false.
      EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.
      EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.
    
      arg1 OP arg2   Arithmetic tests.  OP is one of -eq, -ne,
                     -lt, -le, -gt, or -ge.
    
    Arithmetic binary operators return true if ARG1 is equal, not-equal,
    less-than, less-than-or-equal, greater-than, or greater-than-or-equal
    than ARG2.
    
    Exit Status:
    Returns success if EXPR evaluates to true; fails if EXPR evaluates to
    false or an invalid argument is given.Evaluate conditional expression.
    
    This is a synonym for the "test" builtin, but the last argument must
    be a literal `]', to match the opening `['.Execute PIPELINE, which can be a simple command, and negate PIPELINE's
    return status.
    
    Exit Status:
    The logical negation of PIPELINE's return status.Execute a simple command or display information about commands.
    
    Runs COMMAND with ARGS suppressing  shell function lookup, or display
    information about the specified COMMANDs.  Can be used to invoke commands
    on disk when a function with the same name exists.
    
    Options:
      -p    use a default value for PATH that is guaranteed to find all of
            the standard utilities
      -v    print a single word indicating the command or filename that
            invokes COMMAND
      -V    print a more verbose description of each COMMAND
    
    Exit Status:
    Returns exit status of COMMAND, or failure if COMMAND is not found.Execute arguments as a shell command.
    
    Combine ARGs into a single string, use the result as input to the shell,
    and execute the resulting commands.
    
    Exit Status:
    Returns exit status of command or success if command is null.Execute commands as long as a test does not succeed.
    
    Expand and execute COMMANDS-2 as long as the final command in COMMANDS has
    an exit status which is not zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands as long as a test succeeds.
    
    Expand and execute COMMANDS-2 as long as the final command in COMMANDS has
    an exit status of zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on conditional.
    
    The `if COMMANDS' list is executed.  If its exit status is zero, then the
    `then COMMANDS' list is executed.  Otherwise, each `elif COMMANDS' list is
    executed in turn, and if its exit status is zero, the corresponding
    `then COMMANDS' list is executed and the if command completes.  Otherwise,
    the `else COMMANDS' list is executed, if present.  The exit status of the
    entire construct is the exit status of the last command executed, or zero
    if no condition tested true.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on pattern matching.
    
    Selectively execute COMMANDS based upon WORD matching PATTERN.  The
    `|' is used to separate multiple patterns.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands for each member in a list.
    
    The `for' loop executes a sequence of commands for each member in a
    list of items.  If `in WORDS ...;' is not present, then `in "$@"' is
    assumed.  For each element in WORDS, NAME is set to that element, and
    the COMMANDS are executed.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands from a file in the current shell.
    
    Read and execute commands from FILENAME in the current shell. If the
    -p option is supplied, the PATH argument is treated as a colon-
    separated list of directories to search for FILENAME. If -p is not
    supplied, $PATH is searched to find FILENAME. If any ARGUMENTS are
    supplied, they become the positional parameters when FILENAME is executed.
    
    Exit Status:
    Returns the status of the last command executed in FILENAME; fails if
    FILENAME cannot be read.Execute conditional command.
    
    Returns a status of 0 or 1 depending on the evaluation of the conditional
    expression EXPRESSION.  Expressions are composed of the same primaries used
    by the `test' builtin, and may be combined using the following operators:
    
      ( EXPRESSION )	Returns the value of EXPRESSION
      ! EXPRESSION		True if EXPRESSION is false; else false
      EXPR1 && EXPR2	True if both EXPR1 and EXPR2 are true; else false
      EXPR1 || EXPR2	True if either EXPR1 or EXPR2 is true; else false
    
    When the `==' and `!=' operators are used, the string to the right of
    the operator is used as a pattern and pattern matching is performed.
    When the `=~' operator is used, the string to the right of the operator
    is matched as a regular expression.
    
    The && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to
    determine the expression's value.
    
    Exit Status:
    0 or 1 depending on value of EXPRESSION.Execute shell builtins.
    
    Execute SHELL-BUILTIN with arguments ARGs without performing command
    lookup.  This is useful when you wish to reimplement a shell builtin
    as a shell function, but need to execute the builtin within the function.
    
    Exit Status:
    Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is
    not a shell builtin.Exit %dExit a login shell.
    
    Exits a login shell with exit status N.  Returns an error if not executed
    in a login shell.Exit for, while, or until loops.
    
    Exit a FOR, WHILE or UNTIL loop.  If N is specified, break N enclosing
    loops.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Exit the shell.
    
    Exits the shell with a status of N.  If N is omitted, the exit status
    is that of the last command executed.File limitFloating point exceptionFormats and prints ARGUMENTS under control of the FORMAT.
    
    Options:
      -v var	assign the output to shell variable VAR rather than
    		display it on the standard output
    
    FORMAT is a character string which contains three types of objects: plain
    characters, which are simply copied to standard output; character escape
    sequences, which are converted and copied to the standard output; and
    format specifications, each of which causes printing of the next successive
    argument.
    
    In addition to the standard format characters csndiouxXeEfFgGaA described
    in printf(3), printf interprets:
    
      %b	expand backslash escape sequences in the corresponding argument
      %q	quote the argument in a way that can be reused as shell input
      %Q	like %q, but apply any precision to the unquoted argument before
    		quoting
      %(fmt)T	output the date-time string resulting from using FMT as a format
    	        string for strftime(3)
    
    The format is re-used as necessary to consume all of the arguments.  If
    there are fewer arguments than the format requires,  extra format
    specifications behave as if a zero value or null string, as appropriate,
    had been supplied.
    
    Exit Status:
    Returns success unless an invalid option is given or a write or assignment
    error occurs.GNU bash, version %s (%s)
GNU bash, version %s-(%s)
GNU long options:
General help using GNU software: <http://www.gnu.org/gethelp/>
Group commands as a unit.
    
    Run a set of commands in a group.  This is one way to redirect an
    entire set of commands.
    
    Exit Status:
    Returns the status of the last command executed.HFT input data pendingHFT monitor mode grantedHFT monitor mode retractedHFT sound sequence has completedHOME not setHangupI have no name!I/O readyINFORM: Illegal instructionInformation requestInterruptKilledLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
Mark shell variables as unchangeable.
    
    Mark each NAME as read-only; the values of these NAMEs may not be
    changed by subsequent assignment.  If VALUE is supplied, assign VALUE
    before marking as read-only.
    
    Options:
      -a	refer to indexed array variables
      -A	refer to associative array variables
      -f	refer to shell functions
      -p	display a list of all readonly variables or functions,
    		depending on whether or not the -f option is given
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Modify or display completion options.
    
    Modify the completion options for each NAME, or, if no NAMEs are supplied,
    the completion currently being executed.  If no OPTIONs are given, print
    the completion options for each NAME or the current completion specification.
    
    Options:
    	-o option	Set completion option OPTION for each NAME
    	-D		Change options for the "default" command completion
    	-E		Change options for the "empty" command completion
    	-I		Change options for completion on the initial word
    
    Using `+o' instead of `-o' turns off the specified option.
    
    Arguments:
    
    Each NAME refers to a command for which a completion specification must
    have previously been defined using the `complete' builtin.  If no NAMEs
    are supplied, compopt must be called by a function currently generating
    completions, and the options for that currently-executing completion
    generator are modified.
    
    Exit Status:
    Returns success unless an invalid option is supplied or NAME does not
    have a completion specification defined.Modify shell resource limits.
    
    Provides control over the resources available to the shell and processes
    it creates, on systems that allow such control.
    
    Options:
      -S	use the `soft' resource limit
      -H	use the `hard' resource limit
      -a	all current limits are reported
      -b	the socket buffer size
      -c	the maximum size of core files created
      -d	the maximum size of a process's data segment
      -e	the maximum scheduling priority (`nice')
      -f	the maximum size of files written by the shell and its children
      -i	the maximum number of pending signals
      -k	the maximum number of kqueues allocated for this process
      -l	the maximum size a process may lock into memory
      -m	the maximum resident set size
      -n	the maximum number of open file descriptors
      -p	the pipe buffer size
      -q	the maximum number of bytes in POSIX message queues
      -r	the maximum real-time scheduling priority
      -s	the maximum stack size
      -t	the maximum amount of cpu time in seconds
      -u	the maximum number of user processes
      -v	the size of virtual memory
      -x	the maximum number of file locks
      -P	the maximum number of pseudoterminals
      -R	the maximum time a real-time process can run before blocking
      -T	the maximum number of threads
    
    Not all options are available on all platforms.
    
    If LIMIT is given, it is the new value of the specified resource; the
    special LIMIT values `soft', `hard', and `unlimited' stand for the
    current soft limit, the current hard limit, and no limit, respectively.
    Otherwise, the current value of the specified resource is printed.  If
    no option is given, then -f is assumed.
    
    Values are in 1024-byte increments, except for -t, which is in seconds;
    -p, which is in increments of 512 bytes; -R, which is in microseconds;
    -b, which is in bytes; and -e, -i, -k, -n, -q, -r, -u, -x, and -P,
    which accept unscaled values.
    
    When in posix mode, values supplied with -c and -f are in 512-byte
    increments.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Move job to the foreground.
    
    Place the job identified by JOB_SPEC in the foreground, making it the
    current job.  If JOB_SPEC is not present, the shell's notion of the
    current job is used.
    
    Exit Status:
    Status of command placed in foreground, or failure if an error occurs.Move jobs to the background.
    
    Place the jobs identified by each JOB_SPEC in the background, as if they
    had been started with `&'.  If JOB_SPEC is not present, the shell's notion
    of the current job is used.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.Null command.
    
    No effect; the command does nothing.
    
    Exit Status:
    Always succeeds.OLDPWD not setParse option arguments.
    
    Getopts is used by shell procedures to parse positional parameters
    as options.
    
    OPTSTRING contains the option letters to be recognized; if a letter
    is followed by a colon, the option is expected to have an argument,
    which should be separated from it by white space.
    
    Each time it is invoked, getopts will place the next option in the
    shell variable $name, initializing name if it does not exist, and
    the index of the next argument to be processed into the shell
    variable OPTIND.  OPTIND is initialized to 1 each time the shell or
    a shell script is invoked.  When an option requires an argument,
    getopts places that argument into the shell variable OPTARG.
    
    getopts reports errors in one of two ways.  If the first character
    of OPTSTRING is a colon, getopts uses silent error reporting.  In
    this mode, no error messages are printed.  If an invalid option is
    seen, getopts places the option character found into OPTARG.  If a
    required argument is not found, getopts places a ':' into NAME and
    sets OPTARG to the option character found.  If getopts is not in
    silent mode, and an invalid option is seen, getopts places '?' into
    NAME and unsets OPTARG.  If a required argument is not found, a '?'
    is placed in NAME, OPTARG is unset, and a diagnostic message is
    printed.
    
    If the shell variable OPTERR has the value 0, getopts disables the
    printing of error messages, even if the first character of
    OPTSTRING is not a colon.  OPTERR has the value 1 by default.
    
    Getopts normally parses the positional parameters, but if arguments
    are supplied as ARG values, they are parsed instead.
    
    Exit Status:
    Returns success if an option is found; fails if the end of options is
    encountered or an error occurs.Print the name of the current working directory.
    
    Options:
      -L	print the value of $PWD if it names the current working
    		directory
      -P	print the physical directory, without any symbolic links
    
    By default, `pwd' behaves as if `-L' were specified.
    
    Exit Status:
    Returns 0 unless an invalid option is given or the current directory
    cannot be read.QuitRead a line from the standard input and split it into fields.
    
    Reads a single line from the standard input, or from file descriptor FD
    if the -u option is supplied.  The line is split into fields as with word
    splitting, and the first word is assigned to the first NAME, the second
    word to the second NAME, and so on, with any leftover words assigned to
    the last NAME.  Only the characters found in $IFS are recognized as word
    delimiters. By default, the backslash character escapes delimiter characters
    and newline.
    
    If no NAMEs are supplied, the line read is stored in the REPLY variable.
    
    Options:
      -a array	assign the words read to sequential indices of the array
    		variable ARRAY, starting at zero
      -d delim	continue until the first character of DELIM is read, rather
    		than newline
      -e	use Readline to obtain the line
      -E	use Readline to obtain the line and use the bash default
    		completion instead of Readline's default completion
      -i text	use TEXT as the initial text for Readline
      -n nchars	return after reading NCHARS characters rather than waiting
    		for a newline, but honor a delimiter if fewer than
    		NCHARS characters are read before the delimiter
      -N nchars	return only after reading exactly NCHARS characters, unless
    		EOF is encountered or read times out, ignoring any
    		delimiter
      -p prompt	output the string PROMPT without a trailing newline before
    		attempting to read
      -r	do not allow backslashes to escape any characters
      -s	do not echo input coming from a terminal
      -t timeout	time out and return failure if a complete line of
    		input is not read within TIMEOUT seconds.  The value of the
    		TMOUT variable is the default timeout.  TIMEOUT may be a
    		fractional number.  If TIMEOUT is 0, read returns
    		immediately, without trying to read any data, returning
    		success only if input is available on the specified
    		file descriptor.  The exit status is greater than 128
    		if the timeout is exceeded
      -u fd	read from file descriptor FD instead of the standard input
    
    Exit Status:
    The return code is zero, unless end-of-file is encountered, read times out
    (in which case it's greater than 128), a variable assignment error occurs,
    or an invalid file descriptor is supplied as the argument to -u.Read lines from a file into an array variable.
    
    A synonym for `mapfile'.Read lines from the standard input into an indexed array variable.
    
    Read lines from the standard input into the indexed array variable ARRAY, or
    from file descriptor FD if the -u option is supplied.  The variable MAPFILE
    is the default ARRAY.
    
    Options:
      -d delim	Use DELIM to terminate lines, instead of newline
      -n count	Copy at most COUNT lines.  If COUNT is 0, all lines are copied
      -O origin	Begin assigning to ARRAY at index ORIGIN.  The default index is 0
      -s count	Discard the first COUNT lines read
      -t	Remove a trailing DELIM from each line read (default newline)
      -u fd	Read lines from file descriptor FD instead of the standard input
      -C callback	Evaluate CALLBACK each time QUANTUM lines are read
      -c quantum	Specify the number of lines read between each call to
    			CALLBACK
    
    Arguments:
      ARRAY	Array variable name to use for file data
    
    If -C is supplied without -c, the default quantum is 5000.  When
    CALLBACK is evaluated, it is supplied the index of the next array
    element to be assigned and the line to be assigned to that element
    as additional arguments.
    
    If not supplied with an explicit origin, mapfile will clear ARRAY before
    assigning to it.
    
    Exit Status:
    Returns success unless an invalid option is given or ARRAY is readonly or
    not an indexed array.Record lockRemember or display program locations.
    
    Determine and remember the full pathname of each command NAME.  If
    no arguments are given, information about remembered commands is displayed.
    
    Options:
      -d	forget the remembered location of each NAME
      -l	display in a format that may be reused as input
      -p pathname	use PATHNAME as the full pathname of NAME
      -r	forget all remembered locations
      -t	print the remembered location of each NAME, preceding
    		each location with the corresponding NAME if multiple
    		NAMEs are given
    Arguments:
      NAME	Each NAME is searched for in $PATH and added to the list
    		of remembered commands.
    
    Exit Status:
    Returns success unless NAME is not found or an invalid option is given.Remove directories from stack.
    
    Removes entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    		directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    		shown by `dirs', starting with zero.  For example: `popd +0'
    		removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    		shown by `dirs', starting with zero.  For example: `popd -0'
    		removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.
    
    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.Remove each NAME from the list of defined aliases.
    
    Options:
      -a	remove all alias definitions
    
    Return success unless a NAME is not an existing alias.Remove jobs from current shell.
    
    Removes each JOBSPEC argument from the table of active jobs.  Without
    any JOBSPECs, the shell uses its notion of the current job.
    
    Options:
      -a	remove all jobs if JOBSPEC is not supplied
      -h	mark each JOBSPEC so that SIGHUP is not sent to the job if the
    		shell receives a SIGHUP
      -r	remove only running jobs
    
    Exit Status:
    Returns success unless an invalid option or JOBSPEC is given.Removes entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    	directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    	shown by `dirs', starting with zero.  For example: `popd +0'
    	removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    	shown by `dirs', starting with zero.  For example: `popd -0'
    	removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.Replace the shell with the given command.
    
    Execute COMMAND, replacing this shell with the specified program.
    ARGUMENTS become the arguments to COMMAND.  If COMMAND is not specified,
    any redirections take effect in the current shell.
    
    Options:
      -a name	pass NAME as the zeroth argument to COMMAND
      -c	execute COMMAND with an empty environment
      -l	place a dash in the zeroth argument to COMMAND
    
    If the command cannot be executed, a non-interactive shell exits, unless
    the shell option `execfail' is set.
    
    Exit Status:
    Returns success unless COMMAND is not found or a redirection error occurs.Report time consumed by pipeline's execution.
    
    Execute PIPELINE and print a summary of the real time, user CPU time,
    and system CPU time spent executing PIPELINE when it terminates.
    
    Options:
      -p	print the timing summary in the portable Posix format
    
    The value of the TIMEFORMAT variable is used as the output format.
    
    Exit Status:
    The return status is the return status of PIPELINE.Resume for, while, or until loops.
    
    Resumes the next iteration of the enclosing FOR, WHILE or UNTIL loop.
    If N is specified, resumes the Nth enclosing loop.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Resume job in foreground.
    
    Equivalent to the JOB_SPEC argument to the `fg' command.  Resume a
    stopped or background job.  JOB_SPEC can specify either a job name
    or a job number.  Following JOB_SPEC with a `&' places the job in
    the background, as if the job specification had been supplied as an
    argument to `bg'.
    
    Exit Status:
    Returns the status of the resumed job.Return a successful result.
    
    Exit Status:
    Always succeeds.Return an unsuccessful result.
    
    Exit Status:
    Always fails.Return from a shell function.
    
    Causes a function or sourced script to exit with the return value
    specified by N.  If N is omitted, the return status is that of the
    last command executed within the function or script.
    
    Exit Status:
    Returns N, or failure if the shell is not executing a function or script.Return the context of the current subroutine call.
    
    Without EXPR, returns "$line $filename".  With EXPR, returns
    "$line $subroutine $filename"; this extra information can be used to
    provide a stack trace.
    
    The value of EXPR indicates how many call frames to go back before the
    current one; the top frame is frame 0.
    
    Exit Status:
    Returns 0 unless the shell is not executing a shell function or EXPR
    is invalid.Returns the context of the current subroutine call.
    
    Without EXPR, returns "$line $filename".  With EXPR, returns
    "$line $subroutine $filename"; this extra information can be used to
    provide a stack trace.
    
    The value of EXPR indicates how many call frames to go back before the
    current one; the top frame is frame 0.
    
    Exit Status:
    Returns 0 unless the shell is not executing a shell function or EXPR
    is invalid.RunningSegmentation faultSelect words from a list and execute commands.
    
    The WORDS are expanded, generating a list of words.  The
    set of expanded words is printed on the standard error, each
    preceded by a number.  If `in WORDS' is not present, `in "$@"'
    is assumed.  The PS3 prompt is then displayed and a line read
    from the standard input.  If the line consists of the number
    corresponding to one of the displayed words, then NAME is set
    to that word.  If the line is empty, WORDS and the prompt are
    redisplayed.  If EOF is read, the command completes.  Any other
    value read causes NAME to be set to null.  The line read is saved
    in the variable REPLY.  COMMANDS are executed after each selection
    until a break command is executed.
    
    Exit Status:
    Returns the status of the last command executed.Send a signal to a job.
    
    Send the processes identified by PID or JOBSPEC the signal named by
    SIGSPEC or SIGNUM.  If neither SIGSPEC nor SIGNUM is present, then
    SIGTERM is assumed.
    
    Options:
      -s sig	SIG is a signal name
      -n sig	SIG is a signal number
      -l	list the signal names; if arguments follow `-l' they are
    		assumed to be signal numbers for which names should be listed
      -L	synonym for -l
    
    Kill is a shell builtin for two reasons: it allows job IDs to be used
    instead of process IDs, and allows processes to be killed if the limit
    on processes that you can create is reached.
    
    Exit Status:
    Returns success unless an invalid option is given or an error occurs.Set Readline key bindings and variables.
    
    Bind a key sequence to a Readline function or a macro, or set a
    Readline variable.  The non-option argument syntax is equivalent to
    that found in ~/.inputrc, but must be passed as a single argument:
    e.g., bind '"\C-x\C-r": re-read-init-file'.
    
    Options:
      -m  keymap         Use KEYMAP as the keymap for the duration of this
                         command.  Acceptable keymap names are emacs,
                         emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,
                         vi-command, and vi-insert.
      -l                 List names of functions.
      -P                 List function names and bindings.
      -p                 List functions and bindings in a form that can be
                         reused as input.
      -S                 List key sequences that invoke macros and their values
      -s                 List key sequences that invoke macros and their values
                         in a form that can be reused as input.
      -V                 List variable names and values
      -v                 List variable names and values in a form that can
                         be reused as input.
      -q  function-name  Query about which keys invoke the named function.
      -u  function-name  Unbind all keys which are bound to the named function.
      -r  keyseq         Remove the binding for KEYSEQ.
      -f  filename       Read key bindings from FILENAME.
      -x  keyseq:shell-command	Cause SHELL-COMMAND to be executed when
    				KEYSEQ is entered.
      -X                 List key sequences bound with -x and associated commands
                         in a form that can be reused as input.
    
    If arguments remain after option processing, the -p and -P options treat
    them as readline command names and restrict output to those names.
    
    Exit Status:
    bind returns 0 unless an unrecognized option is given or an error occurs.Set and unset shell options.
    
    Change the setting of each shell option OPTNAME.  Without any option
    arguments, list each supplied OPTNAME, or all shell options if no
    OPTNAMEs are given, with an indication of whether or not each is set.
    
    Options:
      -o	restrict OPTNAMEs to those defined for use with `set -o'
      -p	print each shell option with an indication of its status
      -q	suppress output
      -s	enable (set) each OPTNAME
      -u	disable (unset) each OPTNAME
    
    Exit Status:
    Returns success if OPTNAME is enabled; fails if an invalid option is
    given or OPTNAME is disabled.Set export attribute for shell variables.
    
    Marks each NAME for automatic export to the environment of subsequently
    executed commands.  If VALUE is supplied, assign VALUE before exporting.
    
    Options:
      -f	refer to shell functions
      -n	remove the export property from each NAME
      -p	display a list of all exported variables or functions
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Set or unset values of shell options and positional parameters.
    
    Change the value of shell attributes and positional parameters, or
    display the names and values of shell variables.
    
    Options:
      -a  Mark variables which are modified or created for export.
      -b  Notify of job termination immediately.
      -e  Exit immediately if a command exits with a non-zero status.
      -f  Disable file name generation (globbing).
      -h  Remember the location of commands as they are looked up.
      -k  All assignment arguments are placed in the environment for a
          command, not just those that precede the command name.
      -m  Job control is enabled.
      -n  Read commands but do not execute them.
      -o option-name
          Set the variable corresponding to option-name:
              allexport    same as -a
              braceexpand  same as -B
              emacs        use an emacs-style line editing interface
              errexit      same as -e
              errtrace     same as -E
              functrace    same as -T
              hashall      same as -h
              histexpand   same as -H
              history      enable command history
              ignoreeof    the shell will not exit upon reading EOF
              interactive-comments
                           allow comments to appear in interactive commands
              keyword      same as -k
              monitor      same as -m
              noclobber    same as -C
              noexec       same as -n
              noglob       same as -f
              nolog        currently accepted but ignored
              notify       same as -b
              nounset      same as -u
              onecmd       same as -t
              physical     same as -P
              pipefail     the return value of a pipeline is the status of
                           the last command to exit with a non-zero status,
                           or zero if no command exited with a non-zero status
              posix        change the behavior of bash where the default
                           operation differs from the Posix standard to
                           match the standard
              privileged   same as -p
              verbose      same as -v
              vi           use a vi-style line editing interface
              xtrace       same as -x
      -p  Turned on whenever the real and effective user ids do not match.
          Disables processing of the $ENV file and importing of shell
          functions.  Turning this option off causes the effective uid and
          gid to be set to the real uid and gid.
      -t  Exit after reading and executing one command.
      -u  Treat unset variables as an error when substituting.
      -v  Print shell input lines as they are read.
      -x  Print commands and their arguments as they are executed.
      -B  the shell will perform brace expansion
      -C  If set, disallow existing regular files to be overwritten
          by redirection of output.
      -E  If set, the ERR trap is inherited by shell functions.
      -H  Enable ! style history substitution.  This flag is on
          by default when the shell is interactive.
      -P  If set, do not resolve symbolic links when executing commands
          such as cd which change the current directory.
      -T  If set, the DEBUG and RETURN traps are inherited by shell functions.
      --  Assign any remaining arguments to the positional parameters.
          If there are no remaining arguments, the positional parameters
          are unset.
      -   Assign any remaining arguments to the positional parameters.
          The -x and -v options are turned off.
    
    If -o is supplied with no option-name, set prints the current shell
    option settings. If +o is supplied with no option-name, set prints a
    series of set commands to recreate the current option settings.
    
    Using + rather than - causes these flags to be turned off.  The
    flags can also be used upon invocation of the shell.  The current
    set of flags may be found in $-.  The remaining n ARGs are positional
    parameters and are assigned, in order, to $1, $2, .. $n.  If no
    ARGs are given, all shell variables are printed.
    
    Exit Status:
    Returns success unless an invalid option is given.Set variable values and attributes.
    
    A synonym for `declare'.  See `help declare'.Set variable values and attributes.
    
    Declare variables and give them attributes.  If no NAMEs are given,
    display the attributes and values of all variables.
    
    Options:
      -f	restrict action or display to function names and definitions
      -F	restrict display to function names only (plus line number and
    		source file when debugging)
      -g	create global variables when used in a shell function; otherwise
    		ignored
      -I	if creating a local variable, inherit the attributes and value
    		of a variable with the same name at a previous scope
      -p	display the attributes and value of each NAME
    
    Options which set attributes:
      -a	to make NAMEs indexed arrays (if supported)
      -A	to make NAMEs associative arrays (if supported)
      -i	to make NAMEs have the `integer' attribute
      -l	to convert the value of each NAME to lower case on assignment
      -n	make NAME a reference to the variable named by its value
      -r	to make NAMEs readonly
      -t	to make NAMEs have the `trace' attribute
      -u	to convert the value of each NAME to upper case on assignment
      -x	to make NAMEs export
    
    Using `+' instead of `-' turns off the given attribute, except for a,
    A, and r.
    
    Variables with the integer attribute have arithmetic evaluation (see
    the `let' command) performed when the variable is assigned a value.
    
    When used in a function, `declare' makes NAMEs local, as with the `local'
    command.  The `-g' option suppresses this behavior.
    
    Exit Status:
    Returns success unless an invalid option is supplied or a variable
    assignment error occurs.Shell commands matching keyword `Shell commands matching keywords `Shell options:
Shift positional parameters.
    
    Rename the positional parameters $N+1,$N+2 ... to $1,$2 ...  If N is
    not given, it is assumed to be 1.
    
    Exit Status:
    Returns success unless N is negative or greater than $#.Signal %dSpecify how arguments are to be completed by Readline.
    
    For each NAME, specify how arguments are to be completed.  If no options
    or NAMEs are supplied, display existing completion specifications in a way
    that allows them to be reused as input.
    
    Options:
      -p	print existing completion specifications in a reusable format
      -r	remove a completion specification for each NAME, or, if no
    		NAMEs are supplied, all completion specifications
      -D	apply the completions and actions as the default for commands
    		without any specific completion defined
      -E	apply the completions and actions to "empty" commands --
    		completion attempted on a blank line
      -I	apply the completions and actions to the initial (usually the
    		command) word
    
    When completion is attempted, the actions are applied in the order the
    uppercase-letter options are listed above. If multiple options are supplied,
    the -D option takes precedence over -E, and both take precedence over -I.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.StoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stopped(%s)Suspend shell execution.
    
    Suspend the execution of this shell until it receives a SIGCONT signal.
    Unless forced, login shells and shells without job control cannot be
    suspended.
    
    Options:
      -f	force the suspend, even if the shell is a login shell or job
    		control is not enabled.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.TIMEFORMAT: `%c': invalid format characterTerminatedThe mail in %s has been read
There are running jobs.
There are stopped jobs.
There is NO WARRANTY, to the extent permitted by law.These shell commands are defined internally.  Type `help' to see this list.
Type `help name' to find out more about the function `name'.
Use `info bash' to find out more about the shell in general.
Use `man -k' or `info' to find out more about commands not in this list.

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

This is free software; you are free to change and redistribute it.Trap signals and other events.
    
    Defines and activates handlers to be run when the shell receives signals
    or other conditions.
    
    ACTION is a command to be read and executed when the shell receives the
    signal(s) SIGNAL_SPEC.  If ACTION is absent (and a single SIGNAL_SPEC
    is supplied) or `-', each specified signal is reset to its original
    value.  If ACTION is the null string each SIGNAL_SPEC is ignored by the
    shell and by the commands it invokes.
    
    If a SIGNAL_SPEC is EXIT (0) ACTION is executed on exit from the shell.
    If a SIGNAL_SPEC is DEBUG, ACTION is executed before every simple command
    and selected other commands. If a SIGNAL_SPEC is RETURN, ACTION is
    executed each time a shell function or a script run by the . or source
    builtins finishes executing.  A SIGNAL_SPEC of ERR means to execute ACTION
    each time a command's failure would cause the shell to exit when the -e
    option is enabled.
    
    If no arguments are supplied, trap prints the list of commands associated
    with each trapped signal in a form that may be reused as shell input to
    restore the same signal dispositions.
    
    Options:
      -l	print a list of signal names and their corresponding numbers
      -p	display the trap commands associated with each SIGNAL_SPEC in a
    		form that may be reused as shell input; or for all trapped
    		signals if no arguments are supplied
      -P	display the trap commands associated with each SIGNAL_SPEC. At least
    		one SIGNAL_SPEC must be supplied. -P and -p cannot be used
    		together.
    
    Each SIGNAL_SPEC is either a signal name in <signal.h> or a signal number.
    Signal names are case insensitive and the SIG prefix is optional.  A
    signal may be sent to the shell with "kill -signal $$".
    
    Exit Status:
    Returns success unless a SIGSPEC is invalid or an invalid option is given.Type `%s -c "help set"' for more information about shell options.
Type `%s -c help' for more information about shell builtin commands.
Unknown Signal #%dUnknown errorUnknown statusUnset values and attributes of shell variables and functions.
    
    For each NAME, remove the corresponding variable or function.
    
    Options:
      -f	treat each NAME as a shell function
      -v	treat each NAME as a shell variable
      -n	treat each NAME as a name reference and unset the variable itself
    		rather than the variable it references
    
    Without options, unset first tries to unset a variable, and if that fails,
    tries to unset a function.
    
    Some variables cannot be unset; also see `readonly'.
    
    Exit Status:
    Returns success unless an invalid option is given or a NAME is read-only.Urgent IO conditionUsage:	%s [GNU long option] [option] ...
	%s [GNU long option] [option] script-file ...
Use "%s" to leave the shell.
Use the `bashbug' command to report bugs.
User signal 1User signal 2Wait for job completion and return exit status.
    
    Waits for each process identified by an ID, which may be a process ID or a
    job specification, and reports its termination status.  If ID is not
    given, waits for all currently active child processes, and the return
    status is zero.  If ID is a job specification, waits for all processes
    in that job's pipeline.
    
    If the -n option is supplied, waits for a single job from the list of IDs,
    or, if no IDs are supplied, for the next job to complete and returns its
    exit status.
    
    If the -p option is supplied, the process or job identifier of the job
    for which the exit status is returned is assigned to the variable VAR
    named by the option argument. The variable will be unset initially, before
    any assignment. This is useful only when the -n option is supplied.
    
    If the -f option is supplied, and job control is enabled, waits for the
    specified ID to terminate, instead of waiting for it to change status.
    
    Exit Status:
    Returns the status of the last ID; fails if ID is invalid or an invalid
    option is given, or if -n is supplied and the shell has no unwaited-for
    children.Wait for process completion and return exit status.
    
    Waits for each process specified by a PID and reports its termination status.
    If PID is not given, waits for all currently active child processes,
    and the return status is zero.  PID must be a process ID.
    
    Exit Status:
    Returns the status of the last PID; fails if PID is invalid or an invalid
    option is given.Window changedWrite arguments to the standard output.
    
    Display the ARGs on the standard output followed by a newline.
    
    Options:
      -n	do not append a newline
    
    Exit Status:
    Returns success unless a write error occurs.Write arguments to the standard output.
    
    Display the ARGs, separated by a single space character and followed by a
    newline, on the standard output.
    
    Options:
      -n	do not append a newline
      -e	enable interpretation of the following backslash escapes
      -E	explicitly suppress interpretation of backslash escapes
    
    `echo' interprets the following backslash-escaped characters:
      \a	alert (bell)
      \b	backspace
      \c	suppress further output
      \e	escape character
      \E	escape character
      \f	form feed
      \n	new line
      \r	carriage return
      \t	horizontal tab
      \v	vertical tab
      \\	backslash
      \0nnn	the character whose ASCII code is NNN (octal).  NNN can be
    		0 to 3 octal digits
      \xHH	the eight-bit character whose value is HH (hexadecimal).  HH
    		can be one or two hex digits
      \uHHHH	the Unicode character whose value is the hexadecimal value HHHH.
    		HHHH can be one to four hex digits.
      \UHHHHHHHH the Unicode character whose value is the hexadecimal value
    		HHHHHHHH. HHHHHHHH can be one to eight hex digits.
    
    Exit Status:
    Returns success unless a write error occurs.You have mail in $_You have new mail in $_[ arg... ][[ expression ]]`%c': bad command`%c': invalid format character`%c': invalid symbolic mode character`%c': invalid symbolic mode operator`%c': invalid time format specification`%s': cannot unbind`%s': cannot unbind in command keymap`%s': invalid alias name`%s': invalid keymap name`%s': invalid variable name for name reference`%s': is a special builtin`%s': missing format character`%s': not a pid or valid job spec`%s': not a valid identifier`%s': unknown function name`)' expected`)' expected, found %s`:' expected for conditional expressionadd_process: pid %5ld (%s) marked as still alivealias [-p] [name[=value] ... ]all_local_variables: no function context at current scopeambiguous redirectargumentargument expectedarithmetic syntax error in expressionarithmetic syntax error in variable assignmentarithmetic syntax error: invalid arithmetic operatorarithmetic syntax error: operand expectedarray variable support requiredattempted assignment to non-variablebad array subscriptbad command typebad connectorbad interpreterbad jumpbad substitution: no closing "`" in %sbad substitution: no closing `%s' in %sbash home page: <http://www.gnu.org/software/bash>
bash_execute_unix_command: cannot find keymap for commandbg [job_spec ...]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]brace expansion: cannot allocate memory for %sbrace expansion: failed to allocate memory for %s elementsbrace expansion: failed to allocate memory for `%s'break [n]bug: bad expassign tokenbuiltin [shell-builtin [arg ...]]caller [expr]can only `return' from a function or sourced scriptcan only be used in a functioncannot allocate new file descriptor for bash input from fd %dcannot assign fd to variablecannot change localecannot createcannot create temp file for here-documentcannot duplicate fd %d to fd %dcannot duplicate named pipe %s as fd %dcannot executecannot execute binary filecannot find %s in shared object %s: %scannot get limitcannot make child for command substitutioncannot make child for process substitutioncannot make pipe for command substitutioncannot make pipe for process substitutioncannot modify limitcannot opencannot open named pipe %s for readingcannot open named pipe %s for writingcannot open shared object %s: %scannot open temp filecannot overwrite existing filecannot readcannot redirect standard input from /dev/nullcannot reset nodelay mode for fd %dcannot set and unset shell options simultaneouslycannot set gid to %d: effective gid %dcannot set terminal process group (%d)cannot set uid to %d: effective uid %dcannot simultaneously unset a function and a variablecannot start debugger; debugging mode disabledcannot suspendcannot suspend a login shellcannot use `-f' to make functionscannot use more than one of -anrwcase WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esaccd [-L|[-P [-e]]] [-@] [dir]child setpgid (%ld to %ld)command [-pVv] command [arg ...]command not foundcommand substitution: ignored null byte in inputcommand_substitute: cannot duplicate pipe as fd 1compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: function `%s' not foundcompopt [-o|+o option] [-DEI] [name ...]conditional binary operator expectedcontinue [n]coproc [NAME] command [redirections]could not find /tmp, please create!cprintf: `%c': invalid format charactercurrentdeclare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]deleting stopped job %d with process group %lddescribe_pid: %ld: no such piddirectory stack emptydirectory stack indexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]division by 0dynamic loading not availableecho [-n] [arg ...]echo [-neE] [arg ...]empty array variable nameempty filenameenable [-a] [-dnps] [-f filename] [name ...]error creating buffered streamerror getting terminal attributeserror importing function definition for `%s'error retrieving current directoryerror setting terminal attributeseval [arg ...]eval: maximum eval nesting level exceeded (%d)exec [-cl] [-a name] [command [argument ...]] [redirection ...]execute_coproc: coproc [%d:%s] still existsexit [n]expected `)'exponent less than 0export [-fn] [name[=value] ...] or export -p [-f]expression expectedexpression recursion level exceededfc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]fg [job_spec]file descriptor out of rangefilename argument requiredfor (( exp1; exp2; exp3 )); do COMMANDS; donefor NAME [in WORDS ... ] ; do COMMANDS; doneforked pid %d appears in running job %dformat parsing problem: %sframe not foundfree: called with already freed block argumentfree: called with unallocated block argumentfree: start and end chunk sizes differfree: underflow detected; magic8 corruptedfree: underflow detected; mh_nbytes out of rangefunction name { COMMANDS ; } or name () { COMMANDS ; }function_substitute: cannot duplicate anonymous file as standard outputfunction_substitute: cannot open anonymous file for outputfuture versions of the shell will force evaluation as an arithmetic substitutiongetcwd: cannot access parent directoriesgetopts optstring name [arg ...]hash [-lr] [-p pathname] [-dt] [name ...]hashing disabledhelp [-dms] [pattern ...]help not available in this versionhere-document at line %d delimited by end-of-file (wanted `%s')history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]history positionhistory specificationhits	command
identifier expected after pre-increment or pre-decrementif COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fiinitialize_job_control: getpgrp failedinitialize_job_control: line disciplineinitialize_job_control: no job control in backgroundinitialize_job_control: setpgidinvalid arithmetic baseinvalid baseinvalid character %d in exportstr for %sinvalid file descriptorinvalid glob sort typeinvalid hex numberinvalid integer constantinvalid numberinvalid octal numberinvalid regular expression `%s'invalid regular expression `%s': %sinvalid signal numberjob %d started without job controljob_spec [&]jobs [-lnprs] [jobspec ...] or jobs -x command [args]kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]last command: %s
let arg [arg ...]limitline %d: line editing not enabledload function for %s returns failure (%d): not loadedlocal [option] name[=value] ...logout
logout [n]loop countmake_here_document: bad instruction type %dmake_local_variable: no function context at current scopemake_redirection: redirection instruction `%d' out of rangemalloc: block on free list clobberedmalloc: failed assertion: %s
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]maximum here-document count exceededmigrate process to another CPUmissing `)'missing `]'missing hex digit for \xmissing unicode digit for \%cnetwork operations not supportedno `=' in exportstr for %sno closing `%c' in %sno command foundno help topics match `%s'.  Try `help help' or `man -k %s' or `info %s'.no job controlno job control in this shellno match: %sno other directoryno other options allowed with `-x'not currently executing completion functionnot login shell: use `exit'null directoryoctal numberonly meaningful in a `for', `while', or `until' looppipe errorpop_scope: head of shell_variables not a temporary environment scopepop_var_context: head of shell_variables not a function contextpop_var_context: no global_variables contextpopd [-n] [+N | -N]power failure imminentpretty-printing mode ignored in interactive shellsprint_command: bad connector `%d'printf [-v var] format [arguments]progcomp_insert: %s: NULL COMPSPECprogrammable_completion: %s: possible retry loopprogramming errorpushd [-n] [+N | -N | dir]pwd [-LP]read [-Eers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]read errorreadarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]readonly [-aAf] [name[=value] ...] or readonly -prealloc: called with unallocated block argumentrealloc: start and end chunk sizes differrealloc: underflow detected; magic8 corruptedrealloc: underflow detected; mh_nbytes out of rangerecursion stack underflowredirection error: cannot duplicate fdregister_alloc: %p already in table as allocated?
register_alloc: alloc table is full with FIND_ALLOC?
register_free: %p already in table as free?
restrictedrestricted: cannot redirect outputreturn [n]run_pending_traps: bad value in trap_list[%d]: %prun_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myselfsave_bash_input: buffer already exists for new fd %dscript file read errorselect NAME [in WORDS ... ;] do COMMANDS; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]shell level (%d) too high, resetting to 1shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncatedshift [n]shift countshopt [-pqsu] [-o] [optname ...]sigprocmask: %d: invalid operationsource [-p path] filename [arguments]start_pipeline: pgrp pipestring lengthsuspend [-f]syntax errorsyntax error in conditional expressionsyntax error in conditional expression: unexpected token `%s'syntax error near `%s'syntax error near unexpected token `%s'syntax error near unexpected token `%s' while looking for matching `%c'syntax error: `%s' unexpectedsyntax error: `((%s))'syntax error: `;' unexpectedsyntax error: arithmetic expression requiredsyntax error: unexpected end of filesyntax error: unexpected end of file from `%s' command on line %dsyntax error: unexpected end of file from command on line %dsystem crash imminenttest [expr]time [-p] pipelinetoo many argumentstrap [-Plp] [[action] signal_spec ...]trap handler: maximum trap handler level exceeded (%d)trap_handler: bad signal %dtype [-afptP] name [name ...]typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] [name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limit]umask [-p] [-S] [mode]unalias [-a] name [name ...]unexpected EOF while looking for `]]'unexpected EOF while looking for matching `%c'unexpected EOF while looking for matching `)'unexpected argument `%s' to conditional binary operatorunexpected argument `%s' to conditional unary operatorunexpected argument to conditional binary operatorunexpected argument to conditional unary operatorunexpected token %d in conditional commandunexpected token `%c' in conditional commandunexpected token `%s' in conditional commandunexpected token `%s', conditional binary operator expectedunexpected token `%s', expected `)'unknownunknown command errorunset [-f] [-v] [-n] [name ...]until COMMANDS; do COMMANDS-2; donevalue too great for basevariables - Names and meanings of some shell variableswait [-fn] [-p var] [id ...]wait [pid ...]wait: pid %ld is not a child of this shellwait_for: No record of process %ldwait_for_job: job %d is stoppedwaitchld: turning on WNOHANG to avoid indefinite blockwarning: warning: -C option may not work as you expectwarning: -F option may not work as you expectwhile COMMANDS; do COMMANDS-2; donewrite errorxtrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: invalid file descriptorxtrace_set: NULL file pointer{ COMMANDS ; }Project-Id-Version: bash-5.3-rc2
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2025-06-06 15:41+0200
Last-Translator: Benno Schulenberg <vertaling@coevern.nl>
Language-Team: Dutch <vertaling@vrijschrift.org>
Language: nl
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);
wachten op invoer duurde te lang -- automatisch afgemeld
	-%s,  of -o optie    (veranderbaar via 'set')
	-ilrsD,  of -c OPDRACHT,  of -O SHOPT-OPTIE    (enkel bij aanroep)

malloc(): %s:%d: controletest is mislukt
  (werkmap: %s) (geheugendump gemaakt) regel ! PIJPLIJN$%s: kan niet op deze manier toewijzen%c%c: ongeldige optie%s kan worden aangeroepen via *** %s heeft lege export-tekenreeks%s is %s
%s is een functie
%s is een ingebouwde shell-functie
%s is een shell-sleutelwoord
%s is een speciale ingebouwde shell-functie
%s is een alias voor '%s'
%s is gehasht (%s)
%s is aan geen enkele toets gebonden
%s valt buiten bereik%s%s%s: %s (het onjuiste symbool is "%s")%s: %s valt buiten bereik%s: Kan %s niet openen als BESTAND%s: %s: compatibiliteitswaarde valt buiten bereik%s: ongeldige waarde %s voor 'trace'-bestandsdescriptor%s: %s: een index is nodig bij toekenning aan associatief array%s: %s:%d: kan geen %lu bytes reserveren%s: %s:%d: kan geen %lu bytes reserveren (%lu bytes gereserveerd)%s: is een map%s: taakaanduiding is niet eenduidig%s: argumenten moeten proces-IDs of taak-IDs zijn%s: toekenning van geheel getal aan naamsverwijzing%s: ongeldige aanduiding van netwerkpad%s: ongeldige vervangingtweezijdige operator werd verwacht, %s gevonden%s: ingebouwde namen mogen geen schuine strepen bevatten%s: kan geen %lu bytes reserveren%s: kan geen %lu bytes reserveren (%lu bytes gereserveerd)%s: kan niet toewijzen%s: kan geen lijst toewijzen aan een array-element%s: niet-numerieke index is niet mogelijk%s: kan associatief array niet omzetten naar geïndexeerd array%s: kan geïndexeerd array niet omzetten naar associatief arrayKan %s niet verwijderen: %s%s: kan array-variabelen niet op deze manier verwijderen%s: kan niet uitvoeren: vereist bestand is niet gevondenKan '%s' niet exporteren%s: kan geen waarde overerven van incompatibel typeKan '%s' niet verwijderenKan '%s' niet verwijderen: %s is alleen-lezen%s: circulaire naamsverwijzing%s: dynamische ingebouwde functie is reeds geladen%s: expressiefout
%s: bestand is te groot%s: bestand niet gevonden%s: eerste teken dat geen witruimte is is niet '"'%s: de hash-tabel is leeg
%s: geschiedenisexpansie is mislukt%s: onbekende host%s: poging tot functiedefinitie wordt genegeerd%s: ongeldige optie -- %c
%s: geheel getal werd verwacht%s: ongeldige actienaam%s: ongeldig argument%s: ongeldig array-begin%s: ongeldige hoeveelheid%s: ongeldige aanduiding van bestandsdescriptor%s: ongeldige indirecte expansie%s: ongeldige taakaanduiding%s: ongeldige limietwaarde%s: ongeldig regelaantal%s: ongeldige optie%s: ongeldige optienaam%s: ongeldige service%s: ongeldige shell-optienaam%s: ongeldige signaalaanduiding%s: ongeldige aanduiding van tijdslimiet%s: ongeldig tijdsstempel%s: ongeldige variabelenaam%s: ongeldige variabelenaam voor naamsverwijzing%s: is een map%s: taak %d draait al op de achtergrond%s: taak is afgesloten%s: taakaanduiding vereist een voorafgaande '%%'%s: regel %d: %s: maximum functie-nestingsniveau is overschreden (%d)%s: maximum 'nameref'-diepte (%d) is overschreden%s: maximum 'source'-nestingsniveau is overschreden (%d)%s: ontbrekend scheidingsteken%s: zelfverwijzing door naamsverwijzingsvariabele is niet toegestaan%s: is geen completerings-aanduiding%s: geen lopende taken%s: geen taakbesturing%s: taak bestaat niet%s: is geen functie%s: is geen normaal bestand%s: is geen ingebouwde opdracht van de shell%s: is geen array-variabele%s: is geen geïndexeerd array%s: is niet dynamisch geladen%s: niet gevonden%s: vereist een numeriek argument%s: optie vereist een argument%s: optie vereist een argument -- %c
%s: parameter is niet ingesteld%s: lege parameter, of niet ingesteld%s: aangehaalde samengesteld-array-toekenning is verouderd%s: is een alleen-lezen functie%s: is een alleen-lezen variabele%s: verwijzingsvariabele mag geen array zijn%s: 'nameref'-eigenschap wordt verwijderd%s: beperkte modus%s: beperkte modus: '/' in opdrachtnamen is niet toegestaan%s: resultaat van deeltekenreeks is kleiner dan nuleenzijdige operator werd verwacht, %s gevonden%s: ongebonden variabele%s: Gebruik:  %s: aan variabele mag geen waarde toegewezen worden'

(( EXPRESSIE ))(geheugendump gemaakt) (werkmap is nu: %s)
++: toewijzing vereist 'lvalue'--: toewijzing vereist 'lvalue'. [-p PAD] BESTANDSNAAM [ARGUMENTEN]/dev/(tcp|udp)/host/port is niet mogelijk zonder netwerk/tmp dient een geldige mapnaam te zijn<geen huidige map>ABORT-instructieAfbreken...Mappen aan de mappenstapel toevoegen.

    Voegt een map toe aan de top van de mappenstapel, of roteert de stapel
    en maakt de huidige werkmap gelijk aan de nieuwe top van de stapel.
    Zonder argumenten worden de bovenste twee mappen verwisseld.

    Optie:
      -n   onderdrukt de verandering van map bij het toevoegen van mappen
             aan de stapel, zodat enkel de stapel wordt gemanipuleerd

    Argumenten:
      MAP  Voegt deze map toe aan de top van de mappenstapel, het de nieuwe
           werkmap makend.
      +N   Roteert de stapel zodat de N-de map (tellend vanaf links, van
           de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.
      -N   Roteert de stapel zodat de N-de map (tellend vanaf rechts, van
           de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.

    De opdracht 'dirs' toont de huidige mappenstapel.

    De afsluitwaarde is 0, tenzij een ongeldig argument gegeven werd of de
    mapwijziging mislukte.Voegt een map toe aan de top van de mappenstapel, of roteert de stapel
    en maakt de huidige werkmap gelijk aan de nieuwe top van de stapel.
    Zonder argumenten worden de bovenste twee mappen verwisseld.

    Optie:
      -n   de verandering van map onderdukken bij het toevoegen van mappen
             aan de stapel, zodat alleen de stapel wordt gemanipuleerd

    Argumenten:
      +N   Roteert de stapel zodat de N-de map (tellend vanaf links, van
           de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.
      -N   Roteert de stapel zodat de N-de map (tellend vanaf rechts, van
           de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.
      MAP  Voegt deze map toe aan de top van de mappenstapel, en maakt het
           de nieuwe werkmap.

    De opdracht 'dirs' toont de huidige mappenstapel.Alarm (profiel)Alarm (virtueel)WekkerEen rekenkundige 'for'-lus.

    Dit is het equivalent van:

        (( EXP1 )); while (( EXP2 )); do OPDRACHTEN; (( EXP3 )); done

    EXP1, EXP2, and EXP3 zijn rekenkundige expressies.  Als een expressie
    weggelaten wordt, wordt de waarde 1 ervoor in de plaats genomen.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.Traceer/breekpunt-instructieOnjuiste systeemaanroepNiet-bestaand signaalGebroken pijpBusfoutCPU-limietDe huidige map wijzigen.

    Wijzigt de huidige map naar de gegeven MAP.  Als geen MAP gegeven is,
    dan wordt de waarde van de variabele HOME gebruikt.  Als MAP "-" is, dan
    wordt dit omgezet naar $OLDPWD.

    De variabele CDPATH definieert de mappen waarin naar MAP gezocht wordt.
    De mapnamen in CDPATH worden gescheiden door dubbele punten (:); een
    lege mapnaam is hetzelfde als de huidige map (.).  Als MAP begint met
    een slash (/), dan wordt CDPATH niet gebruikt.

    Als de gegeven map niet wordt gevonden, en shell-optie 'cdable_vars'
    is ingeschakeld, dan wordt het gegeven woord als een variabelenaam
    begrepen, en als die variabele een naam bevat, dan gaat 'cd' naar de
    map met die naam.

    Opties:
      -L    symbolische koppelingen volgen; symbolische koppelingen in MAP
              worden herleid ná verwerking van instantiaties van '..'
      -P    de fysieke mappenstructuur gebruiken zonder symbolische koppelingen
              te volgen; symbolische koppelingen in MAP worden herleid vóór
              verwerking van instantiaties van '..'
      -e    als optie '-P' gegeven is en de huidige map kan niet bepaald worden,
              dan afsluiten met een niet-nul waarde
      -@    een bestand met uitgebreide kenmerken presenteren als een map die
              deze bestandskenmerken bevat (op systemen die het ondersteunen)

    Standaard worden symbolische koppelingen gevolgd, alsof '-L' gegeven is.
    Een '..' wordt verwerkt door het verwijderen van de direct voorafgaande
    padcomponent terug tot een slash of tot het begin van MAP.

    De afsluitwaarde is 0 als de gewenste map ingesteld kon worden, en als ook
    omgevingsvariabele PWD ingesteld kon worden als '-P' gegeven is, anders 1.Dochter is geëlimineerd of gestoptDe betekenis van enkele algemene shell-variabelen.

    Hieronder volgt de beschrijving van een aantal variabelen.  (In elke
    lijst worden de elementen van elkaar gescheiden door dubbele punten.)

    BASH_VERSION  versie-informatie van deze 'bash'
    CDPATH        lijst van mappen om te doorzoeken wanneer het argument van
                    'cd' niet in de huidige map voorkomt
    GLOBIGNORE    lijst van patronen die de bestandsnamen beschrijven die bij
                    bestandsnaamjokertekenexpansie genegeerd moeten worden
    HISTFILE      naam van het bestand dat uw opdrachtengeschiedenis bevat
    HISTFILESIZE  maximum aantal regels dat geschiedenisbestand mag bevatten
    HISTIGNORE    lijst van patronen die niet in geschiedenis moeten komen
    HISTSIZE      maximum aantal geschiedenisregels dat huidige shell gebruikt
    HOME          het volledige pad naar uw thuismap
    HOSTNAME      de naam van de computer waarop deze 'bash' wordt uitgevoerd
    HOSTTYPE      de soort CPU waarop deze 'bash' wordt uitgevoerd
    IGNOREEOF     het aantal te negeren Ctrl-D's alvorens de shell afsluit
    MACHTYPE      de soort machine waarop deze 'bash' wordt uitgevoerd
    MAILCHECK     hoe vaak (in seconden) 'bash' controleert op nieuwe mail
    MAILPATH      lijst van bestandsnamen die 'bash' controleert op nieuwe mail
    OSTYPE        de soort Unix waarop deze 'bash' wordt uitgevoerd
    PATH          lijst van mappen waar opdrachten in gezocht moeten worden
    PROMPT_COMMAND  uit te voeren opdracht vóór het tonen van primaire prompt
    PS1           tekenreeks die primaire prompt beschrijft
    PS2           tekenreeks die secundaire prompt beschrijft (standaard '> ')
    PWD           het volledige pad van de huidige map
    SHELLOPTS     lijst van ingeschakelde shell-opties
    TERM          soortnaam van de huidige terminal
    TIMEFORMAT    opmaakvoorschrift voor de uitvoer van 'time'
    auto_resume   niet-leeg betekent dat één opdrachtwoord op de opdrachtregel
                    eerst opgezocht wordt in de lijst van gepauzeerde taken,
                    en indien daar gevonden, dan wordt die taak in de voorgrond
                    geplaatst; de waarde 'exact' betekent dat het gegeven woord
                    exact moet overeenkomen met een opdracht in de lijst van
                    gepauzeerde taken; de waarde 'substring' betekent dat een
                    overeenkomst met een deeltekenreeks voldoende is; elke
                    andere waarde betekent dat het gegeven woord aan het begin
                    moet staan van de opdracht van een gepauzeerde taak
    histchars     tekens die geschiedenisexpansie en -vervanging besturen;
                    het eerste teken is het geschiedenisvervangingsteken,
                    gewoonlijk '!'; het tweede teken is het snelle
                    vervangingsteken, gewoonlijk '^'; het derde teken is het
                    geschiedeniscommentaarteken, gewoonlijk '#'
DoorgaanCopyright (C) 2025 Free Software Foundation, Inc.Een co-proces aanmaken genaamd NAAM.

    Voert OPDRACHT asynchroon uit, met standaardinvoer en -uitvoer via
    een pijp verbonden met bestandsdescriptors die toegewezen zijn aan
    indices 0 en 1 van array-variabele NAAM in de uitvoerende shell.
    De standaard-NAAM is "COPROC".

    De afsluitwaarde van coproc is 0.DEBUG-waarschuwing: Lokale variabelen definiëren.

    Maakt een lokale variabele NAAM aan, en kent deze de waarde WAARDE toe.
    OPTIE kan elke optie zijn die ook door 'declare' geaccepteerd wordt.

    Als een naam "-" is, dan bewaart 'local' de set van shell-opties en
    herstelt ze wanneer de functie terugkeert.

    'local' kan alleen binnen een functie gebruikt worden, en zorgt ervoor
    dat het geldigheidsbereik van de variabele NAAM beperkt wordt tot de
    betreffende functie en diens dochters.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd, er een
    toekenningsfout optrad, of de shell geen functie aan het uitvoeren is.Aliassen definiëren of tonen.

    Zonder argumenten, of met optie '-p', toont 'alias' op standaarduitvoer
    de huidige lijst van aliassen in de vorm: alias NAAM='VERVANGING'.

    Met argumenten, wordt er een alias gedefinieerd voor elke NAAM waarvoor
    een VERVANGING gegeven is.  Als de VERVANGING eindigt op een spatie, dan
    wordt bij aliasexpansie ook van het nakomende woord gecontroleerd of het
    een alias is.

    De afsluitwaarde is 0, tenzij er een NAAM gegeven is waarvoor geen alias
    gedefinieerd is.Een shell-functie definiëren.

    Maakt een shell-functie aan die met NAAM aangeroepen kan worden en die
    de gegeven OPDRACHTEN uitvoert in de context van de aanroepende shell.
    Wanneer NAAM aangeroepen wordt, worden de argumenten aan de functie
    doorgegeven als $0...$N, en de functienaam in $FUNCNAME.

    De afsluitwaarde is 0, tenzij NAAM onveranderbaar is.De mappenstapel tonen.

    Toont de huidige lijst van onthouden mappen.  Mappen worden aan deze
    lijst toegevoegd met de opdracht 'pushd', en verwijderd met 'popd'.

    Opties:
      -c   de mappenstapel wissen door alle elementen te verwijderen
      -l   paden volledig tonen, niet afgekort ten opzichte van uw thuismap
      -p   de mappenstapel tonen met één item per regel
      -v   als '-p', maar met elk item voorafgegeaan wordt door zijn positie
             in de stapel

    Argumenten:
      +N   Het N-de item tonen, tellend vanaf links, van de lijst getoond
           door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.
      -N   Het N-de item tonen, tellend vanaf rechts, van de lijst getoond
           door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.Informatie tonen over ingebouwde opdrachten.

    Toont korte hulpteksten voor ingebouwde opdrachten van de shell.
    Als een PATROON gegeven is, dan worden hulpteksten getoond voor alle
    opdrachten die aan dit PATROON voldoen, anders wordt een lijst met
    onderwerpen waarvoor hulp beschikbaar is getoond.

    Opties:
      -d   een korte omschrijving tonen voor elk onderwerp
      -m   gebruiksbericht tonen in pseudo-opmaak van een man-pagina
      -s   de uitvoer beperken tot een beknopt gebruiksbericht

    De afsluitwaarde is 0, tenzij niets aan PATROON voldoet of een ongeldige
    optie gegeven werd.Informatie tonen over een opdracht.

    Toont voor elke gegeven NAAM hoe deze zou worden geïnterpreteerd als
    deze als opdracht gebruikt zou worden.

    Opties:
     -a   alle plaatsen tonen met een uitvoerbaar bestand genaamd NAAM;
            dit omvat aliassen, ingebouwde shell-opdrachten, functies,
            sleutelwoorden, en bestanden op schijf (alleen zonder '-p')
     -f   functies negeren, alsof ze niet gedefinieerd zijn
     -P   naar elke gegeven naam zoeken in het huidige zoekpad (PATH), ook
            als het een alias, ingebouwde shell-opdracht of functie is
     -p   voor elke gegeven naam het volledige pad tonen van het bestand dat
            uitgevoerd zou worden, of niets als er een alias, functie,
            ingebouwde shell-opdracht of sleutelwoord met die naam is
     -t   alleen het type van de opgegeven namen tonen: 'alias', 'builtin',
            'file', 'function' of 'keyword', al naar gelang het een alias,
            een ingebouwde shell-opdracht, een bestand op schijf, een
            gedefinieerde functie of een sleutelwoord betreft; of niets
            als de naam onbekend is

    De afsluitwaarde is 0 als elke NAAM gevonden werd, anders 1.Opdrachten uit de geschiedenis tonen of uitvoeren.

    Kan gebruikt worden om oude opdrachten te tonen, of om deze te bewerken
    en opnieuw uit te voeren.  EERSTE en LAATSTE kunnen getallen zijn die een
    bereik opgeven, of EERSTE kan een tekenreeksje zijn waarmee de recentste
    opdracht wordt bedoeld die met die letters begint.

    Opties:
      -e EDITORNAAM   de te gebruiken editor; standaard wordt de waarde van
                        FCEDIT gebruikt, anders die van EDITOR, anders 'vi'
      -l   een lijst met opdrachten tonen (in plaats van ze te bewerken)
      -n   de lijst zonder nummers weergeven
      -r   de volgorde van de lijst omdraaien (nieuwste eerst)

    In de vorm 'fc -s [PATROON=VERVANGING]... [OPDRACHT]', wordt OPDRACHT
    opnieuw uitgevoerd nadat de aangegeven vervangingen zijn gedaan.

    Een handige alias bij deze functie is r='fc -s', zodat het typen van
    'r' de laatste opdracht opnieuw uitvoert, en het typen van 'r cc' de
    laatste opdracht die met 'cc' begon opnieuw uitvoert.

    De ingebouwde opdracht 'history' werkt ook op de geschiedenislijst.

    De afsluitwaarde is die van de uitgevoerde opdracht, of 0 als er niets
    uitgevoerd werd, of niet-nul als er een fout optrad.De opdrachtengeschiedenis tonen of bewerken.

    Geeft de lijst met uitgevoerde opdrachten weer (de "geschiedenis"),
    inclusief regelnummers; voor bewerkte items staat een '*'.  Met een
    argument van N worden alleen de laatste N opdrachten getoond.

    Opties:
      -c   huidige geschiedenis wissen: alle uitgevoerde opdrachten vergeten
      -d POSITIE     het geschiedenisitem op deze positie verwijderen; een
                       negatieve POSITIE telt terug vanaf het einde van de lijst
      -d BEGIN-EIND  de geschiedenisitems van BEGIN tot en met EIND verwijderen

      -a   huidige geschiedenis aan eind van geschiedenisbestand toevoegen
      -n   alle nog niet gelezen regels uit het geschiedenisbestand lezen
             en toevoegen aan het einde van huidige geschiedenis
      -r   het geschiedenisbestand lezen en toevoegen aan het einde van
             huidige geschiedenis
      -w   huidige geschiedenis naar het geschiedenisbestand schrijven

      -p   geschiedenisopzoeking uitvoeren voor elk ARGUMENT en het resultaat
             tonen zonder dit in de geschiedenis op te slaan
      -s   de ARGUMENTen als één enkel item aan de geschiedenis toevoegen

    Als een BESTANDSNAAM gegeven is, dan wordt dat bestand gebruikt als het
    geschiedenisbestand, anders de waarde van HISTFILE als deze niet leeg is.
    Zonder BESTANDSNAAM en zonder HISTFILE hebben de opties '-a', '-n', '-r',
    en '-w' geen effect en retourneren succes.

    De ingebouwde opdracht 'fc' werkt ook op de geschiedenislijst.

    Als de variabele HISTTIMEFORMAT ingesteld en niet leeg is, dan wordt de
    waarde ervan gebruikt als een opmaaktekenreeks for strftime(3), om een
    tijdsstempel bij elk geschiedenisitem weer te geven.  Anders worden geen
    tijdsstempels getoond.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.Het bestandsaanmaakmasker tonen of instellen.

    Stelt het bestandsaanmaakmasker van de gebruiker in op de gegeven MODUS.
    Als MODUS ontbreekt, dan wordt de huidige waarde van het masker getoond.

    Als MODUS begint met een cijfer, wordt het begrepen als een octaal getal,
    anders als een symbolische modus-tekenreeks zoals chmod (1) die kent.

    Opties:
      -p   als invoer herbruikbare uitvoer produceren (indien MODUS ontbreekt)
      -S   symbolische uitvoer produceren; anders octale getallen

    De afsluitwaarde is 0, tenzij MODUS ongeldig is of een ongeldige optie
    gegeven werd.De mogelijke completeringen tonen, afhankelijk van de gegeven opties.

    Bedoeld voor gebruik binnen een functie die mogelijke completeringen
    genereert.  Als het optionele argument WOORD aanwezig is, worden alleen
    de daarbij passende completeringen gegenereerd.

    Als optie '-V' gegeven is, worden de mogelijke completeringen opgeslagen
    in het array VARIABELENAAM in plaats van ze op standaarduitvoer te tonen.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.Procestijden tonen.

    Geeft de totaal verbruikte gebruikers- en systeemtijd weer; eerst de
    tijden verbruikt door de shell zelf, en daaronder de tijden verbruikt
    door de processen uitgevoerd door de shell.

    De afsluitwaarde is altijd 0.De status van taken tonen.

    Toont de actieve taken.  Een TAAKAANDUIDING beperkt de uitvoer tot alleen
    die taak.  Zonder opties wordt de status van alle actieve taken getoond.

    Opties:
      -l   ook de proces-ID's tonen, naast de gewone informatie
      -n   alleen processen tonen die sinds de vorige melding zijn veranderd
      -p   alleen de proces-ID's tonen
      -r   uitvoer beperken tot draaiende taken
      -s   uitvoer beperken tot gepauzeerde taken

    Als optie '-x' gegeven is, wordt de gegeven OPDRACHT uitgevoerd nadat
    alle gegeven taken (in ARGUMENTen) afgesloten zijn (dat wil zeggen: hun
    proces-ID is vervangen door dat van hun moederproces).

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er een
    fout optrad.  Met optie '-x' is de afsluitwaarde die van OPDRACHT.Toont de huidige lijst van onthouden mappen.  Mappen worden aan deze
    lijst toegevoegd met de opdracht 'pushd', en verwijderd met 'popd'.

    Opties:
      -c   de mappenstapel wissen door alle elementen te verwijderen
      -l   paden niet afkorten (relatief ten opzichte van uw thuismap)
             maar volledig weergegeven
      -p   de mappenstapel tonen met één item per regel
      -v   als '-p' maar met elk item voorafgegaan wordt door diens positie
             in de stapel

    Argumenten:
      +N   Toont het N-de item, tellend vanaf links, van de lijst getoond
           door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.
      -N   Toont het N-de item, tellend vanaf rechts, van de lijst getoond
           door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.KlaarKlaar(%d)EMT-instructieIngebouwde shell-opdrachten in- of uitschakelen.

    Schakelt ingebouwde opdrachten in of uit.  Dit laatste maakt het mogelijk
    om een bestand op schijf uit te voeren dat dezelfde naam heeft als een
    ingebouwde opdracht, zonder het volledige pad op te hoeven geven.

    Opties:
      -a   de ingebouwde opdrachten tonen en of ze in- of uitgeschakeld zijn
      -n   genoemde opdrachten uitschakelen of uitgeschakelde opdrachten tonen
      -p   uitvoer produceren die hergebruikt kan worden als invoer (standaard)
      -s   alleen de speciale POSIX ingebouwde opdrachten tonen

    Opties die het dynamisch laden besturen:
      -f   ingebouwde opdracht NAAM laden uit gedeeld object BESTANDSNAAM
      -d   opdracht die geladen is met '-f' verwijderen.

    Zonder opties wordt elke gegeven NAAM ingeschakeld.  Zonder namen worden
    de ingeschakelde opdrachten getoond (of met '-n' de uitgeschakelde).

    Op systemen met dynamisch laden definieert de shell-variabele
    BASH_LOADABLES_PATH een zoekpad voor de map die BESTANDSNAAMen bevat
    zonder schuine streep. Deze variabele mag ook "." bevatten om een
    doorzoeken van de huidige map af te dwingen.

    Voorbeeld: om in plaats van de ingebouwde 'test' het bestand 'test' te
    gebruiken dat zich in uw zoekpad PATH bevindt, typt u 'enable -n test'.

    De afsluitwaarde is 0, tenzij NAAM geen ingebouwde shell-opdracht is of
    er een fout optreedt.Een rekenkundige uitdrukking evalueren.

    Evalueert de gegeven expressie als een rekenkundige uitdrukking.
    Dit is equivalent aan 'let "EXPRESSIE"'.

    De afsluitwaarde is 1 als de EXPRESSIE tot 0 evalueert; anders 0.Rekenkundige uitdrukkingen evalueren.

    Evalueert elk ARGUMENT als een rekenkundige uitdrukking.
    De evaluatie gebeurt in gehele getallen zonder controle op overloop;
    maar deling door nul wordt gedetecteerd en wordt getoond als een fout.

    Onderstaande lijst toont de beschikbare operatoren in groepjes van gelijke
    voorrang; de groepjes zijn gerangschikt volgens afnemende voorrang.

        var++, var--    post-increment, post-decrement van variabele
        ++var, --var    pre-increment, pre-decrement van variabele
        -, +            eenzijdig minteken, eenzijdig plusteken
        !, ~            logisch tegengestelde, bitsgewijs tegengestelde
        **              machtsverheffing
        *, /, %         vermenigvuldiging, deling, rest
        +, -            optelling, aftrekking
        <<, >>          bitsgewijze verschuiving naar links, naar rechts
        <=, >=, <, >    vergelijkingen
        ==, !=          gelijkheid, ongelijkheid
        &               bitsgewijze AND
        ^               bitsgewijze XOR
        |               bitsgewijze OR
        &&              logische AND
        ||              logische OR

        expr ? expr : expr    voorwaardelijke uitdrukking

        =, *=, /=, %=, +=, -=, <<=, >>=,  &=, ^=, |=    toewijzingen

    Shell-variabelen zijn toegestaan als parameters.  De naam van een variabele
    wordt vervangen door zijn waarde (zonodig omgezet naar een geheel getal).
    Variabelen hoeven geen 'geheel getal'-eigenschap te hebben om gebruikt te
    kunnen worden in een expressie.

    Operatoren worden geëvalueerd in volgorde van voorrang.  Subexpressies
    tussen haakjes worden altijd eerst geëvalueerd en overstijgen zodoende
    bovengenoemde voorrangsregels.

    Als het laatste ARGUMENT evalueert tot 0, dan is de afsluitwaarde van
    'let' 1; anders 0.Een conditionele expressie evalueren.

    Evalueert de gegeven EXPRESSIE; afhankelijk van het resultaat is de
    afsluitwaarde 0 ("waar") of 1 ("onwaar").  De expressies kunnen
    eenzijdig of tweezijdig zijn; eenzijdige expressies worden vaak
    gebruikt om de toestand van een bestand te inspecteren.  Er zijn ook
    operatoren voor tekenreeksen en voor getalsmatige vergelijkingen.

    Het gedrag van 'test' is afhankelijk van het aantal argumenten.
    Lees de handleiding van 'bash' voor een complete beschrijving.

    Bestandsoperatoren:
        -a BESTAND     waar als bestand bestaat
        -b BESTAND     waar als bestand een blok-apparaat is
        -c BESTAND     waar als bestand een byte-apparaat is
        -d BESTAND     waar als bestand een map is
        -e BESTAND     waar als bestand bestaat
        -f BESTAND     waar als bestand een gewoon bestand is
        -G BESTAND     waar als uw groep het bestand effectief bezit
        -g BESTAND     waar als bestand SETGUID is
        -h BESTAND     waar als bestand een symbolische koppeling is
        -k BESTAND     waar als bestand "sticky"-bit aan heeft staan
        -L BESTAND     waar als bestand een symbolische koppeling is
        -N BESTAND     waar als bestand gewijzigd is sinds laatste lezing
        -O BESTAND     waar als u het bestand effectief bezit
        -p BESTAND     waar als bestand een benoemde pijp is
        -r BESTAND     waar als bestand voor u leesbaar is
        -S BESTAND     waar als bestand een socket is
        -s BESTAND     waar als bestand niet leeg is
        -t DESCRIPTOR  waar als bestandsdescriptor geopend is op een terminal
        -u BESTAND     waar als bestand SETUID is
        -w BESTAND     waar als bestand voor u schrijfbaar is
        -x BESTAND     waar als bestand door u uitvoerbaar is

      BEST1 -nt BEST2  waar als eerste bestand later gewijzigd is dan tweede
      BEST1 -ot BEST2  waar als eerste bestand eerder gewijzigd is dan tweede
      BEST1 -ef BEST2  waar als eerste bestand harde koppeling is naar tweede

    Tekenreeksoperatoren:
        -z REEKS       waar als tekenreeks leeg is
        -n REEKS       waar als tekenreeks niet leeg is
        REEKS          waar als tekenreeks niet leeg is
      RKS1 = RKS2      waar als de tekenreeksen gelijk zijn
      RKS1 != RKS2     waar als de tekenreeksen niet gelijk zijn
      RKS1 < RKS2      waar als eerste reeks lexicografisch voor de tweede komt
      RKS1 > RKS2      waar als eerste reeks lexicografisch na de tweede komt

    Andere operatoren:
        -o OPTIE       waar als deze shell-optie ingeschakeld is
        -v VARIABELE   waar als deze variabele een waarde heeft
        -R VARIABELE   waar als deze variabele een naamsverwijzing is
        ! EXPRESSIE    waar als EXPRESSIE onwaar is
      EXPR1 -a EXPR2   waar als beide expressies waar zijn
      EXPR1 -o EXPR2   onwaar als beide expressies onwaar zijn
      ARG1 VGL ARG2    waar als rekenkundige vergelijking klopt; VGL is één
                       van de volgende: -eq, -ne, -lt, -le, -gt, -ge;
                       ze betekenen: gelijk, ongelijk, kleiner dan,
                       kleiner of gelijk, groter dan, groter of gelijk

    De afsluitwaarde is 0 als EXPRESSIE waar is, 1 als EXPRESSIE onwaar is,
    en 2 als een ongeldig argument gegeven werd.Een conditionele expressie evalueren.

    Dit is een synoniem voor de ingebouwde functie 'test', behalve dat
    het laatste argument een ']' moet zijn, horend bij de begin-'['.Een PIJPLIJN uitvoeren (dit kan een enkele opdracht zijn) en diens afsluitwaarde
logisch omkeren.

De afsluitwaarde is de logische ontkenning van de afsluitwaarde van de PIJPLIJN.Een opdracht uitvoeren of informatie over een opdracht tonen.

    Voert de gegeven opdracht uit met de gegeven argumenten, waarbij een
    eventueel gelijknamige shell-functie genegeerd wordt.  Dit kan gebruikt
    worden om een programma op schijf uit te voeren wanneer er een functie
    met dezelfde naam bestaat.

    Opties:
      -p   een standaardwaarde voor PATH gebruiken, zodat alle
             standaardprogramma's gegarandeerd gevonden worden
      -v   tonen welke opdracht er uitgevoerd zou worden
      -V   als '-v' maar gedetailleerder

    De afsluitwaarde is die van de uitgevoerde OPDRACHT,
    of 1 als de OPDRACHT niet gevonden is.Argumenten uitvoeren als een shell-opdracht.

    Combineert de gegeven argumenten tot een enkele tekenreeks, gebruikt deze
    als invoer voor de shell, en voert de resulterende opdrachten uit.

    De afsluitwaarde is die van de uitgevoerde opdracht, of 0 als de opdracht
    leeg is.Opdrachten uitvoeren zolang een test niet slaagt.

    Voert de tweede reeks opdrachten uit zolang de laatste opdracht van
    de eerste reeks een afsluitwaarde ongelijk aan 0 heeft.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.Opdrachten uitvoeren zolang een test slaagt.

    Voert de tweede reeks opdrachten uit zolang de laatste opdracht van
    de eerste reeks een afsluitwaarde van 0 heeft.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.Opdrachten uitvoeren afhankelijk van voorwaarden.

    Voert eerst de opdrachten na 'if' uit; als de afsluitwaarde daarvan
    nul is, dan worden de opdrachten na de eerste 'then' uitgevoerd; anders
    de opdrachten na de eerstvolgende 'elif' (indien aanwezig) of de 'else'
    (indien aanwezig).  Als de afsluitwaarde van de opdrachten na een 'elif'
    nul is, dan worden de opdrachten na de bijbehorende 'then' uitgevoerd.
    Als er geen verdere 'elif' of 'else' meer is, of zodra de opdrachten na
    een 'then' zijn uitgevoerd, is de 'if'-opdracht voltooid.

    De afsluitwaarde van de gehele opdracht is die van de laatst uitgevoerde
    deelopdracht, of nul als geen enkele 'if' of 'elif' nul opleverde.Opdrachten uitvoeren afhankelijk van patroonovereenkomsten.

    Voert één van de gegeven sets met opdrachten uit, afhankelijk van met
    welk PATROON het WOORD overeenkomt.  Met '|' kunnen meerdere patronen
    gegroepeerd worden.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.Opdrachten uitvoeren voor elk element in een lijst.

    De 'for'-lus voert een reeks opdrachten uit voor elk element in een
    lijst van items.  Als 'in WOORDEN...;' afwezig is, wordt 'in "$@";'
    aangenomen.  Voor elk element in WOORDEN wordt NAAM gelijkgemaakt aan
    dat element en worden de OPDRACHTEN uitgevoerd.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.Opdrachten uit bestand in de huidige shell uitvoeren.

    Leest opdrachten uit het gegeven bestand en voert deze uit in de huidige
    shell.  Als optie '-p' gegeven is, dan wordt het PAD-argument begrepen als
    een dubbelepunt-gescheiden lijst van mappen waarin naar BESTANDSNAAM gezocht
    moet worden.  Zonder optie '-p', worden de mappen in $PATH nagezocht om het
    genoemde bestand te vinden.  Als er verder nog argumenten gegeven zijn, dan
    worden dit de positionele parameters tijdens de uitvoering van het bestand.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht in het gegeven
    bestand, of 1 als dit bestand niet gelezen kan worden.Een voorwaardelijke opdracht uitvoeren.

    Evalueert de gegeven conditionele expressie; afhankelijk van het resultaat
    is de afsluitwaarde 0 ("waar") of 1 ("onwaar").  De expressies bestaan uit
    dezelfde basiscomponenten als die van ingebouwde opdracht 'test', en kunnen
    worden gecombineerd met de volgende operatoren:

        ( EXPRESSIE )     de waarde van de gegeven expressie
        ! EXPRESSIE       waar als EXPRESSIE onwaar is, anders onwaar
        EXPR1 && EXPR2    waar als beide expressies waar zijn, anders onwaar
        EXPR1 || EXPR2    onwaar als beide expressies onwaar zijn, anders waar

    Als '==' of '!=' als operator gebruikt wordt, dan wordt de rechter
    tekenreeks als patroon begrepen en wordt patroonherkenning uitgevoerd.
    Als '=~' als operator gebruikt wordt, dan wordt de rechter tekenreeks
    als een reguliere expressie begrepen.

    De operatoren '&&' en '||' evalueren de tweede expressie níét als de waarde
    van de eerste voldoende is om het eindresulaat te bepalen.

    De afsluitwaarde is 0 of 1, afhankelijk van EXPRESSIE.Een ingebouwde shell-functie uitvoeren.

    Voert de gegeven ingebouwde shell-functie met de gegeven argumenten uit.
    Dit is handig als u de naam van een ingebouwde functie voor een eigen
    functie wilt gebruiken, maar toch de functionaliteit van de ingebouwde
    functie nodig hebt.

    De afsluitwaarde is die van de uitgevoerde shell-functie, of 1
    of 1 als INGEBOUWDE_SHELLFUNCTIE geen ingebouwde shell-functie is.Exit %dEen login-shell beëindigen.

    Beëindigt een login-shell met een afsluitwaarde van N.  Geeft een
    foutmelding als de huidige shell geen login-shell is.Een 'for'-, 'while'- of 'until'-lus beëindigen.

    Als N gegeven is, dan worden N niveaus van lussen beëindigd.

    De afsluitwaarde is 0, tenzij N kleiner dan 1 is.De shell beëindigen.

    Beëindigt de shell met een afsluitwaarde van N.  Zonder N is de
    afsluitwaarde die van de laatst uitgevoerde opdracht.BestandslimietDrijvendekomma-berekeningsfoutArgumenten volgens een opmaakvoorschrift opmaken en printen.

    Print de gegeven ARGUMENTEN, opgemaakt volgens de gegeven OPMAAK.

    Optie:
      -v VAR   de uitvoer in de variabele VAR plaatsen in plaats van deze
                 naar standaarduitvoer te sturen

    De OPMAAK-tekenreeks bestaat uit drie soorten tekens: gewone tekens,
    die simpelweg naar standaarduitvoer gekopieerd worden; stuurtekens,
    die omgezet worden en dan naar standaarduitvoer gekopieerd worden;
    en opmaaksymbolen, die elk steeds het volgende argument doen printen.

    Naast de standaard %-opmaaksymbolen van printf(1), "diouxXfeEgGaAcsn",
    betekent %b dat de backslash-stuurtekens in het betreffende argument
    omgezet moeten worden, en betekent %q dat het argument op zo'n manier
    aangehaald moet worden dat het als invoer voor de shell hergebruikt
    kan worden.  %Q is als %q, maar een precisie wordt toegepast op het
    onaangehaalde argument vóór het aanhalen.  Verder betekent %(OPMAAK)T
    dat datum-plus-tijd getoond moet worden door deze opmaak aan strftime(3)
    mee te geven.

    De gegeven opmaak wordt zo vaak hergebruikt als nodig is om alle argumenten
    te consumeren.  Als er minder argumenten zijn dan de opmaak verwacht, dan
    gedragen de overtollige opmaakspecificaties zich alsof (al naar gelang) de
    waarde nul of een lege tekenreeks gegeven werd.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een schrijf- of toekenningsfout optrad.GNU bash, versie %s (%s)
GNU bash, versie %s-(%s)
Lange opties:
Algemene hulp bij gebruik van GNU-software: <http://www.gnu.org/gethelp/>
Opdrachten als een eenheid groeperen.

    Voert een set opdrachten als een eenheid uit.  Dit is een manier om
    de in- en uitvoer van een hele set opdrachten om te kunnen leiden.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.HFT-invoergegevens staan te wachtenHFT-monitormodus is gegevenHFT-monitormodus is herroepenHFT-geluidssequentie is afgespeeldHOME is niet gedefinieerdOpgehangenIk heb geen naam!I/O is mogelijkinformatie: Ongeldige instructieVerzoek om informatieOnderbrokenGeëlimineerdDe licentie is GPLv3+: GNU GPL versie 3 of later.
Zie http://gnu.org/licenses/gpl.html voor de volledige tekst.
Shell-variabelen als onveranderbaar markeren.

    Markeert elke gegeven NAAM als alleen-lezen, zodat de waarde van deze
    NAAM niet meer veranderd kan worden door een latere toewijzing.  Als een
    WAARDE gegeven is, dan deze WAARDE toekennen alvorens deze te fixeren.

    Opties:
      -a   elke naam als een array begrijpen
      -A   elke naam als een associatief array begrijpen
      -f   gegeven namen verwijzen alleen naar functies
      -p   een lijst tonen van alle onveranderbare variabelen of functies,
             al naar gelang optie '-f' gegeven is

    Het argument '--' schakelt verdere optieverwerking uit.

    De afsluitwaarde is 0, tenzij een ongeldige optie of NAAM gegeven werd.Completeringsopties wijzigen of tonen.

    Wijzigt de completeringsopties van elke gegeven NAAM, of als geen NAAM
    gegeven is, die van de huidige completering.  Als geen OPTIE gegeven is,
    dan worden de completeringsopties van elke gegeven NAAM getoond, of die
    van de huidige completering.

    Opties:
      -o OPTIE   deze completeringsoptie inschakelen voor elke gegeven NAAM
      -D         opties wijzigen voor de standaardcompletering
      -E         opties wijzigen voor de completering van een lege opdracht
      -I         opties wijzigen voor de completering van initieel woord

    Het gebruik van '+o' i.p.v. '-o' schakelt de betreffende optie _uit_.

    Elke NAAM dient te refereren aan een opdracht waarvoor reeds een
    completeringsvoorschrift gedefinieerd is via de opdracht 'complete'.
    Als geen NAAM gegeven is, dan dient 'compopt' aangeroepen te worden door
    een functie die momenteel completeringen genereert; dan worden de opties
    voor die draaiende completeringsgenerator gewijzigd.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of voor
    NAAM geen completeringsvoorschrift gedefinieerd is.Grenzen van hulpbronnen aanpassen.

    Begrenst de beschikbare hulpbronnen voor processen gestart door deze shell
    -- op systemen die zulke begrenzing toestaan.

    Opties:
      -S    een "zachte" hulpbrongrens gebruiken
      -H    een "harde" hulpbrongrens gebruiken
      -a    alle huidige begrenzingen tonen
      -b    de maximum grootte van een socketbuffer
      -c    de maximum grootte van een core-bestand (in kB)
      -d    de maximum hoeveelheid gegevensgeheugen van een proces (in kB)
      -e    de maximum procespriotiteit (de 'nice'-waarde)
      -f    de maximum grootte van bestanden geschreven door shell of dochters
      -i    het maximum aantal nog wachtende signalen
      -l    de maximum hoeveelheid geheugen die een proces mag vastpinnen (kB)
      -k    het maximum aantal gereserveerde kqueues voor dit proces
      -m    de maximum hoeveelheid fysiek geheugen van een proces (in kB)
      -n    het maximum aantal open bestandsdescriptors
      -p    de maximum grootte van een pijpbuffer
      -q    het maximum aantal bytes in POSIX berichtwachtrijen
      -r    de maximum realtime-procesprioriteit
      -s    de maximum stapelgrootte (in kB)
      -t    de maximum hoeveelheid CPU-tijd (in seconden)
      -u    het maximum aantal gebruikersprocessen
      -v    de maximum hoeveelheid virtueel geheugen van een proces (in kB)
      -x    het maximum aantal bestandsvergrendelingen
      -P    het maximum aantal pseudoterminals
      -R    de maximum looptijd van een realtime-proces alvorens te blokkeren
      -T    het maximum aantal threads

    Niet alle opties zijn beschikbaar op alle platformen.

    Als een GRENSWAARDE opgegeven is, dan wordt dit de nieuwe waarde van de
    aangegeven hulpbron, anders wordt de huidige waarde ervan getoond.
    De speciale grenswaarden 'soft', 'hard' en 'unlimited' staan voor de
    huidige zachte grens, de huidige harde grens, en onbegrensd.
    Als geen optie gegeven is, dan wordt optie '-f' aangenomen.

    De waardes gaan in stappen van 1024 bytes -- behalve voor '-t', die in
    seconden is; voor '-p', die in stappen van 512 bytes gaat; voor '-R', die
    in microseconden is; voor '-b' die in bytes is; en voor '-e', '-i', '-k',
    '-n', '-q', '-r', '-u', '-x', en '-P' die ongeschaalde waarden accepteren.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.De gegeven taak in de voorgrond plaatsen.

    Plaatst de gegeven taak in de voorgrond, en maakt deze tot de huidige taak.
    Als er geen taak gegeven is, dan wordt dat wat volgens de shell de huidige
    taak is gebruikt.

    De afsluitwaarde is die van de in voorgrond geplaatste taak, of 1 als er
    een fout optreedt.De gegeven taken in de achtergrond plaatsen.

    Plaatst gegeven taken in de achtergrond, alsof deze gestart waren met '&'.
    Als er geen taak gegeven is, dan wordt dat wat volgens de shell de huidige
    taak is gebruikt.

    De afsluitwaarde is 0, tenzij taakbeheer uitgeschakeld is of er een fout
    optreedt.Doet niets; de opdracht heeft geen effect; de afsluitwaarde is 0.OLDPWD is niet gedefinieerdOpties ontleden.

    'getopts' kan door shell-scripts gebruikt worden om positionele parameters
    als opties te ontleden.

    De OPTIETEKENREEKS bevat de te herkennen optieletters; als een letter
    gevolgd wordt door een dubbele punt, dan hoort de optie een argument
    te hebben, ervan gescheiden door witruimte.

    Elke keer dat 'getopts' wordt aangeroepen, plaatst het de volgende
    gevonden optie in de gegeven shell-variabele NAAM, en het nummer van
    het daarna te behandelen argument in de variabele OPTIND.  Deze OPTIND
    wordt geïnitialiseerd op 1 elke keer als de shell of een shell-script
    wordt aangeroepen.  Als een optie een argument heeft, dan wordt dat
    argument in de shell-variabele OPTARG geplaatst.

    'getopts' kan fouten op twee manieren rapporteren: in stille modus of
    in normale modus.  Stille modus wordt gebruikt als het eerste teken
    van de optietekenreeks een dubbele punt is.  In deze modus worden er
    geen foutmeldingen geprint.  In stille modus geldt: als 'getopts' een
    ongeldige optie vindt, wordt dat teken in OPTARG geplaatst; als een
    vereist argument bij een optie ontbreekt, dan wordt een ':' in NAAM
    geplaatst en de optieletter in OPTARG.  In normale modus geldt: als
    'getopts' een ongeldige optie vindt, wordt een '?' in NAME geplaatst,
    en OPTARG leeggemaakt; als een vereist argument ontbreekt, dan wordt
    een ':' in NAAM geplaatst en de gevonden optieletter in OPTARG; in
    beide gevallen wordt er ook een foutmelding geprint.

    Als de shell-variabele OPTERR de waarde 0 heeft, wordt het printen
    van foutmeldingen uitgeschakeld, zelfs als het eerste teken van de
    optiereeks geen dubbele punt is.  De standaardwaarde van OPTERR is 1.

    Normaliter ontleedt 'getopts' de positionele parameters, maar als
    er argumenten gegeven worden, dan worden deze ontleed.

    De afsluitwaarde is 0 als er een optie gevonden werd, of niet-nul als
    het einde van de opties bereikt werd of als er een fout optrad.De naam van de huidige werkmap tonen.

    Opties:
      -L   de waarde van $PWD tonen (als het de huidige werkmap aangeeft)
      -P   het werkelijke, fysieke pad tonen, zonder symbolische koppelingen

    Zonder opties wordt optie '-L' aangenomen.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of de
    huidige map niet bepaald kon worden.AfgeslotenEen regel van standaardinvoer lezen en in velden opsplitsen.

    Leest één regel van standaardinvoer (of van de gegeven bestandsdescriptor
    als optie '-u' gegeven is) en wijst het eerste woord aan de eerste NAAM toe,
    het tweede woord aan de tweede NAAM, en zo verder; de resterende woorden
    worden toegewezen aan de laatste NAAM.  Alleen de tekens in de variabele
    IFS worden herkend als woordscheidingstekens.  Standaard ontdoet een
    backslash scheidingstekens en het nieuweregelteken van hun betekenis.

    Als er geen namen gegeven zijn, dan wordt de gelezen regel opgeslagen in
    de variabele REPLY.

    Opties:
      -a ARRAY   de gelezen woorden toekennen aan de opeenvolgende posities
                   van het genoemde array, beginnend bij index nul
      -d TEKEN   doorgaan met lezen tot TEKEN gelezen wordt (i.p.v. LF-teken)
      -e         'readline' gebruiken om de regel in te lezen
      -E         'readline' gebruiken om de regel in te lezen en de standaard
                   completering van 'bash' gebruiken i.p.v. die van 'readline'
      -i TEKST   door 'readline' te gebruiken begintekst
      -n AANTAL  stoppen na maximaal dit aantal tekens gelezen te hebben, of
                   na een LF-teken (i.p.v. altijd te wachten op een LF-teken)
      -N AANTAL  alleen stoppen na dit aantal tekens gelezen te hebben, of na
                   EOF of tijdsoverschrijding, elk scheidingsteken negerend
      -p PROMPT  deze tekenreeks tonen als prompt (zonder afsluitende nieuwe
                   regel) alvorens te beginnen met lezen
      -r         backslash-codes niet omzetten naar hun betekenis
      -s         invoer die van een terminal komt niet echoën
      -t AANTAL  na dit aantal seconden stoppen met wachten op invoer en
                   afsluiten met een code groter dan 128; de waarde van de
                   variabele TMOUT is de standaardwaarde voor het aantal te
                   wachten seconden; het aantal mag drijvendepuntgetal zijn;
                   als AANTAl 0 is, dan keert 'read' onmiddellijk terug zonder
                   enige data te lezen, maar is alleen succesvol als er op de
                   betreffende bestandsdescriptor invoer beschikbaar is
      -u BS.DS.  van deze bestandsdescriptor lezen i.p.v. van standaardinvoer

    De afsluitwaarde is 0, tenzij einde-van-bestand (EOF) bereikt werd,
    de tijdslimiet overschreden werd, er een toekenningsfout optrad, of
    een ongeldige bestandsdescriptor als argument van '-u' gegeven werd.Regels inlezen vanuit een bestand in een array-variabele.

    Een synoniem voor 'mapfile'.Regels inlezen in een geïndexeerde array-variabele.

    Leest regels van standaardinvoer in in de array-variabele ARRAY.
    De variabele MAPFILE wordt gebruikt als geen ARRAY gegeven is.

    Opties:
      -d TEKEN     dit teken (i.p.v. LF) gebruiken als einde van regel
      -n AANTAL    maximaal dit aantal regels kopiëren (0 = alles)
      -O BEGIN     met toekennen beginnen bij deze index (standaard 0)
      -s AANTAL    dit aantal regels overslaan
      -t           nieuweregelteken aan eind van elke gelezen regel verwijderen
      -u BES.DES.  uit deze bestandsdescriptor lezen i.p.v. uit standaardinvoer
      -C FUNCTIE   deze functie evalueren na elke HOEVEELHEID regels
      -c HOEVEELHEID  het aantal te lezen regels voor elke aanroep van FUNCTIE

    Argument:
      ARRAY        naam van variabele waarin regels ingelezen moeten worden

    Als '-C' gegeven is zonder '-c', is de standaard-HOEVEELHEID 5000.
    Wanneer FUNCTIE aangeroepen wordt, dan wordt hieraan de index van het
    volgende array-element en de daaraan toe te kennen regel als extra
    argumenten meegegeven.

    Als geen expliciet BEGIN gegeven is, wordt het array gewist alvorens
    met toekennen te beginnen.

    De afsluitwaarde is 0, tenzij ARRAY alleen-lezen is of geen array is, of
    een ongeldige optie gegeven werd.RecordvergrendelingProgrammalocaties onthouden of tonen.

    Bepaalt en onthoudt voor elke gegeven opdracht-NAAM het volledige pad.
    Als er geen argumenten gegeven zijn, dan wordt informatie over de
    onthouden paden getoond.

    Opties:
      -d           het pad van elke gegeven NAAM vergeten
      -l           uitvoer produceren die herbruikbaar is als invoer
      -p PADNAAM   te gebruiken PADNAAM van de opdracht NAAM
      -r           alle paden vergeten
      -t           voor elke gegeven naam het onthouden pad tonen

    Elke gegeven NAAM wordt opgezocht in $PATH en wordt toegevoegd aan de
    lijst met onthouden opdrachten.

    De afsluitwaarde is 0, tenzij NAAM niet gevonden wordt of een ongeldige
    optie gegeven werd.Mappen van de mappenstapel verwijderen.

    Verwijdert items van de mappenstapel.  Zonder argumenten verwijdert
    het de bovenste map van de stapel, en maakt de huidige werkmap
    gelijk aan de nieuwe bovenste map.

    Optie:
      -n   onderdrukt de verandering van map bij het toevoegen van mappen
             aan de stapel, zodat enkel de stapel wordt gemanipuleerd

    Argumenten:
      +N   Verwijdert het N-de item tellend vanaf links (van de lijst
           getoond door 'dirs', beginnend met nul).  Bijvoorbeeld:
           'popd +0' verwijdert de eerste map, 'popd +' de tweede.
      -N   Verwijdert het N-de item tellend vanaf rechts (van de lijst
           getoond door 'dirs', beginnend met nul).  Bijvoorbeeld:
           'popd -0' verwijdert de laatste map, 'popd -1' de voorlaatste.

    De opdracht 'dirs' toont de huidige mappenstapel.

    De afsluitwaarde is 0, tenzij een ongeldig argument gegeven werd of de
    mapwijziging mislukte.Elke gegeven NAAM verwijderen uit de lijst van gedefinieerde aliassen.

    Met optie '-a' worden alle gedefinieerde aliassen verwijderd.

    De afsluitwaarde is 0, tenzij NAAM geen bestaande alias is.Taken uit de huidige shell verwijderen.

    Verwijdert elke gegeven taak uit de tabel met actieve taken.  Zonder
    een TAAKAANDUIDING wordt dat wat volgens de shell de huidige taak is
    verwijderd.

    Opties:
      -a   alle taken verwijderen (als geen TAAKAANDUIDING gegeven is)
      -h   taken niet verwijderen maar zodanig markeren dat deze geen SIGHUP
             krijgen wanneer de shell een SIGHUP krijgt
      -r   alleen draaiende taken verwijderen

    De afsluitwaarde is 0, tenzij een ongeldige optie of TAAKAANDUIDING
    gegeven werd.Verwijdert items van de mappenstapel.  Zonder argumenten verwijdert
    het de bovenste map van de stapel, en maakt de huidige werkmap
    gelijk aan de nieuwe bovenste map.

    Optie:
      -n   de verandering van map onderdukken bij het toevoegen van mappen
             aan de stapel, zodat alleen de stapel wordt gemanipuleerd

    Argumenten:
      +N   Verwijdert het N-de item tellend vanaf links (van de lijst
           getoond door 'dirs', beginnend met nul).  Bijvoorbeeld:
           'popd +0' verwijdert de eerste map, 'popd +' de tweede.
      -N   Verwijdert het N-de item tellend vanaf rechts (van de lijst
           getoond door 'dirs', beginnend met nul).  Bijvoorbeeld:
           'popd -0' verwijdert de laatste map, 'popd -1' de voorlaatste.

    De opdracht 'dirs' toont de huidige mappenstapel.De shell vervangen door de gegeven opdracht.

    Voert de gegeven OPDRACHT uit, daarbij deze shell vervangend door dat
    programma.  Eventuele ARGUMENTen worden de argumenten van OPDRACHT.
    Als er geen OPDRACHT gegeven is, dan worden eventuele omleidingen van
    kracht voor deze shell zelf.

    Opties:
      -a NAAM   deze naam als nulde argument aan OPDRACHT meegeven
      -c        de opdracht uitvoeren met een lege omgeving
      -l        een koppelteken als nulde argument aan OPDRACHT meegeven

    Als de opdracht niet kan worden uitgevoerd, dan sluit een niet-interactieve
    shell af, tenzij de shell-optie 'execfail' aan staat.

    De afsluitwaarde is 0, tenzij OPDRACHT niet gevonden wordt of er een
    omleidingsfout optreedt.De door een pijplijn verbruikte tijd tonen.

    Voert de in de PIJPLIJN gegeven opdrachten uit en toont daarna een
    tijdssamenvatting: de totale verlopen tijd, de in gebruikersprocessen
    verbruikte processortijd , en de in systeemprocessen verbruikte
    processortijd.

    De uitvoer kan via de omgevingsvariabele TIMEFORMAT aangepast worden.
    Optie '-p' negeert deze omgevingsvariabele en toont de tijden in een
    overdraagbare standaardopmaak.

    De afsluitwaarde is die van de PIJPLIJN.De volgende herhaling van huidige 'for'-, 'while'- of 'until'-lus beginnen.
    Als N gegeven is, dan wordt N niveaus hoger doorgegaan.

    De afsluitwaarde is 0, tenzij N kleiner dan 1 is.Een taak hervatten in de voorgrond.

    Hervat de gegeven achtergrondtaak of gepauzeerde taak in de voorgrond.
    Dit is equivalent aan de opdracht 'fg'.  De taak kan met een nummer of
    met een naam aangeduid worden.

    Als na de taakaanduiding een '&' volgt, dan wordt de taak in de
    achtergrond geplaatst.  Dit is equivalent aan de opdracht 'bg'.

    De afsluitwaarde is die van de hervatte taak.Geeft altijd afsluitwaarde 0, horend bij "gelukt".Geeft altijd afsluitwaarde 1, horend bij "mislukt".Terugkeren uit een shell-functie.

    Doet een functie of gesourced script afsluiten met afsluitwaarde N.
    Zonder N is de afsluitwaarde die van de laatst uitgevoerde opdracht
    in functie of script.

    De afsluitwaarde is N, of 1 als de shell geen functie of script aan het
    uitvoeren is.De context van de aanroep van de huidige functie tonen.

    Zonder argument produceert het "$regelnummer $bestandsnaam"; met
    argument "$regelnummer $functienaam $bestandsnaam".  Deze tweede
    vorm kan gebruikt worden om een 'stack trace' te produceren.  De
    waarde van het argument geeft aan hoeveel frames er teruggegaan
    moet worden; het huidige frame heeft nummer 0.

    De afsluitwaarde is 0, tenzij de shell momenteel geen functie uitvoert
    of EXPRESSIE ongeldig is.De context van de aanroep van de huidige functie tonen.

    Zonder argument produceert het "$regelnummer $bestandsnaam"; met
    argument "$regelnummer $functienaam $bestandsnaam".  Deze tweede
    vorm kan gebruikt worden om een 'stack trace' te produceren.

    De waarde van het argument geeft aan hoeveel aanroepframes er teruggegaan
    moet worden vanaf de huidige; het bovenste frame is frame 0.

    De afsluitwaarde is 0, tenzij de shell momenteel geen functie uitvoert
    of EXPRESSIE ongeldig is.Wordt uitgevoerdSegmentatiefoutEen keuzelijst aanbieden en opdrachten uitvoeren.

    Toont een menu op standaardfoutuitvoer: een genummerde lijst met de
    gegeven woorden nadat alle shell-vervangingen erop zijn toegepast.
    Als het 'in'-gedeelte afwezig is, wordt 'in "$@";' aangenomen.

    Na het menu wordt de PS3-prompt getoond, en wordt een regel van
    standaardinvoer gelezen.  Als de gelezen regel één van de getoonde
    nummers is, dan wordt NAAM gelijkgemaakt aan het bijbehorende woord;
    als de regel leeg is, worden het menu en de prompt opnieuw getoond;
    als einde-van-bestand (Ctrl-D) wordt gelezen, dan wordt de opdracht
    beëindigd.  Elke andere waarde zorgt ervoor dat de variabele NAAM
    wordt leeggemaakt.  De gelezen regel wordt altijd opgeslagen in de
    variabele REPLY.  Na elke keuze worden de bijbehorende opdrachten
    uitgevoerd.  Dit gaat door totdat een 'break' de opdracht beëindigt.

    De afsluitwaarde is die van de laatst uitgevoerde opdracht.Een signaal naar een taak sturen.

    Stuurt de via PID of TAAKAANDUIDING aangeduide processen het gegeven
    signaal.  Als er geen signaal gegeven is, dan wordt SIGTERM gestuurd.

    Opties:
      -n NAAM     het signaal met deze naam sturen
      -s NUMMER   het signaal met dit nummer sturen
      -l          lijst met beschikbare signalen tonen; als na '-l' argumenten
                    volgen, dan wordt voor elk nummer de bijbehorende naam
                    getoond, en voor elke naam het bijbehorende nummer
      -L          synoniem van '-l'

    'kill' is om twee redenen een ingebouwde shell-opdracht: het accepteert
    ook taakaanduidingen in plaats van alleen proces-ID's, en als het maximum
    aantal processen bereikt is hoeft u geen nieuw proces te starten om een
    ander proces te elimineren.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.Toetsbindingen en variabelen van 'readline' instellen.

    Verbindt een toetsenreeks aan een 'readline'-functie of aan een macro,
    of stelt een 'readline'-variabele in.  De syntax van argumenten die geen
    opties zijn is gelijkaardig aan die voor ~/.inputrc, maar zij dienen één
    geheel te zijn, bijvoorbeeld: bind '"\C-x\C-r": re-read-init-file'.

    Opties:
      -f BESTANDSNAAM    de toetsbindingen uit dit bestand lezen
      -l                 alle bekende functienamen opsommen
      -m TOETSENKAART    deze toetsenkaart gebruiken voor de duur van deze
                           opdracht; mogelijke toetsenkaarten zijn 'emacs',
                           'emacs-standard', 'emacs-meta', 'emacs-ctlx',
                           'vi', 'vi-move', 'vi-insert' en 'vi-command'
      -P                 functienamen en hun bindingen tonen
      -p                 functienamen en hun bindingen tonen, in een vorm die
                           hergebruikt kan worden als invoer
      -r TOETSENREEKS    de binding voor deze toetsenreeks verwijderen
      -q FUNCTIENAAM     tonen welke toetsen deze functie aanroepen
      -S                 toetsenreeksen tonen die macro's aanroepen
      -s                 toetsenreeksen tonen die macro's aanroepen, in een
                           vorm die hergebruikt kan worden als invoer
      -u FUNCTIENAAM     verwijdert alle toetsbindingen aan deze functie
      -V                 variabelenamen en hun waarden tonen
      -v                 variabelenamen en hun waarden tonen, in een vorm die
                           hergebruikt kan worden als invoer
      -x TOETSENREEKS:SHELL-OPDRACHT  deze shell-opdracht uitvoeren als deze
                                        toetsenreeks ingevoerd wordt
      -X                 met '-x' gebonden toetsenreeksen en opdrachten tonen
                           in een vorm die hergebruikt kan worden als invoer

    Als er na optieverwerking argumenten overblijven, dan zien '-p' en '-P'
    deze als 'readline'-opdrachtnamen en beperken de uitvoer tot deze namen.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.Shell-opties in- of uitschakelen.

    Stelt de waarde in van elke gegeven OPTIENAAM -- van een shell-optie
    die bepaald shell-gedrag beïnvloedt.  Zonder opties wordt elke gegeven
    OPTIENAAM getoond, of alle shell-opties als geen OPTIENAAM gegeven is,
    met bij elke optie de vermelding of deze al dan niet ingeschakeld is.

    Opties:
      -o   de verzameling mogelijke OPTIENAMEN naar diegene die gedefinieerd
             zijn voor gebruik met 'set -o'
      -p   uitvoer produceren die herbruikbaar is als invoer
      -q   uitvoer onderdrukken
      -s   elke gegeven OPTIENAAM inschakelen
      -u   elke gegeven OPTIENAAM uitschakelen

    Zonder opties (of met alleen '-q') is de afsluitwaarde 0 indien OPTIENAAM
    ingeschakeld is, 1 indien uitgeschakeld.  De afsluitwaarde is ook 1 als
    een ongeldige optienaam gegeven werd, en de afsluitwaarde is 2 als een
    ongeldige optie gegeven werd.De export-eigenschap van shell-variabelen instellen.

    Markeert elke gegeven naam voor automatische export naar de omgeving
    van latere opdrachten.  Als een WAARDE gegeven is, dan wordt deze WAARDE
    toegekend alvorens te exporteren.

    Opties:
      -f   gegeven namen verwijzen alleen naar functies
      -n   voor de gegeven namen de exportmarkering juist verwijderen
      -p   een lijst van alle geëxporteerde namen tonen

    Het argument '--' schakelt verdere optieverwerking uit.

    De afsluitwaarde is 0, tenzij een ongeldige optie of NAAM gegeven werd.Waarden van shell-opties of positionele parameters instellen.

    Schakelt shell-eigenschappen in/uit, of verandert waarden van positionele
    parameters.  Zonder opties of argumenten toont 'set' de namen en waarden
    van alle gedefinieerde variabelen en functies, in een vorm die als invoer
    hergebruikt kan worden.  De volgende opties zijn beschikbaar (een '+' in
    plaats van een '-' schakelt de betreffende eigenschap _uit_ i.p.v. in):

      -a  nieuwe of gewijzigde variabelen en functies automatisch exporteren
      -B  accoladevervanging uitvoeren (is standaard, b.v. a{b,c} -> ab ac)
      -b  beëindiging van een taak direct melden (i.p.v. na huidige opdracht)
      -C  omleiding van uitvoer mag gewone bestanden niet overschrijven
      -E  een 'trap' op ERR door laten werken in functies en dochterprocessen
      -e  de shell afsluiten zodra afsluitwaarde van een opdracht niet nul is
      -f  jokertekens voor bestandsnamen uitschakelen (geen 'globbing')
      -H  geschiedenisopdracht '!' beschikbaar stellen (standaard)
      -h  het volledige pad van opdrachten onthouden na eerste keer opzoeken
      -k  ook nakomende toewijzingen aan variabelen in de omgeving plaatsen
      -m  taakbesturing beschikbaar stellen (standaard)
      -n  opdrachten wel lezen maar niet uitvoeren ("droogzwemmen")
      -o OPTIENAAM  deze optie inschakelen (zie verderop voor de lange namen)
      -P  geen symbolische koppelingen herleiden bij opdrachten als 'cd' die
          de huidige map wijzigen
      -p  geprivilegeerde modus: de bestanden aangeduid door ENV en BASH_ENV
          worden genegeerd, functies worden niet uit de omgeving geïmporteerd,
          en ook eventuele SHELLOPTS worden genegeerd; modus wordt automatisch
          ingeschakeld als effectieve en echte UID of GID niet overeenkomen;
          uitschakelen maakt dan effectieve UID en GID gelijk aan de echte
      -T  een 'trap' op DEBUG of RETURN door laten werken in functies en
          dochterprocessen
      -t  afsluiten na het lezen en uitvoeren van één opdracht
      -u  het gebruik van niet-bestaande variabelen behandelen als een fout
      -v  invoerregel weergeven ("echoën") zodra deze gelezen is
      -x  elke opdracht met argumenten weergeven voordat deze wordt uitgevoerd
      --  nakomende argumenten zijn positionele parameters; als er geen verdere
          argumenten zijn, worden de bestaande positionele parameters gewist
      -   opties -v en -x uitschakelen; nakomende argumenten zijn positionele
          parameters; maar zonder argumenten worden de bestaande niet gewist

    Als -o gegeven wordt zonder optienaam, dan toont 'set' de huidige optie-
    instellingen van de shell.  Als +o gegeven wordt zonder optienaam, dan
    toont 'set' een reeks opdrachten om de huidige instellingen te hermaken.

    De opties kunnen ook gebruikt worden bij het starten van de shell.
    De huidige toestand van de eigenschappen is te vinden in $-.  Eventuele
    extra argumenten van 'set' worden begrepen als positionele parameters
    en worden toegewezen aan $1, $2, ... $N.

    De lange namen voor gebruik met optie -o (of +o) zijn:
      allexport    == -a  (automatisch exporteren van nieuwen/gewijzigden)
      braceexpand  == -B  (accoladevervanging uitvoeren)
      emacs        regelbewerkingsinterface in stijl van 'emacs' gebruiken
      errexit      == -e  (shell afsluiten bij eerste fout)
      errtrace     == -E  ('trap' op ERR overal laten gelden)
      functrace    == -T  ('trap' op DEBUG overal laten gelden)
      hashall      == -h  (gevonden pad van opdrachten onthouden)
      histexpand   == -H  ('!'-opdracht beschikbaar stellen)
      history      opdrachtengeschiedenis beschikbaar stellen
      ignoreeof    Ctrl-D negeren; de shell niet afsluiten bij lezen van EOF
      interactive-comments  commentaar in interactieve opdrachten toestaan
      keyword      == -k  (nakomende toewijzingen ook meenemen)
      monitor      == -m  (taakbesturing beschikbaar stellen)
      noclobber    == -C  (omleidingen geen bestanden laten overschrijven)
      noexec       == -n  (opdrachten lezen maar niet uitvoeren)
      noglob       == -f  (jokertekens uitschakelen)
      nolog        (herkend maar genegeerd)
      notify       == -b  (beëindiging van een taak direct melden)
      nounset      == -u  (niet-bestaande variabelen als een fout beschouwen)
      onecmd       == -t  (afsluiten na uitvoeren van één opdracht)
      physical     == -P  (fysieke paden volgen i.p.v. symbolische)
      pipefail     de afsluitwaarde van een pijplijn gelijkmaken aan die van
                     de laatste niet-succesvolle opdracht in de reeks, of aan
                     0 als alle opdrachten succesvol waren
      posix        de voorschriften van de POSIX-standaard strict volgen
      privileged   == -p  (geprivilegeerde modus)
      verbose      == -v  (elke invoerregel echoën)
      vi           regelbewerkingsinterface in stijl van 'vi' gebruiken
      xtrace       == -x  (elke opdracht echoën)

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd.Waarden en eigenschappen van variabelen instellen.

    Een synoniem van 'declare'.  Zie 'help declare'.Waarden en eigenschappen van variabelen instellen.

    Declareert de gegeven variabelen en/of kent hen eigenschappen toe.
    Als er geen namen van variabelen gegeven zijn, dan worden de
    bestaande variabelen en hun waarden getoond.

    Opties:
      -f   alleen de gedefinieerde functies tonen (geen variabelen)
      -F   alleen de namen van de functies tonen, zonder de definities
      -g   globale variabelen aanmaken wanneer gebruikt in een shell-functie;
             elders genegeerd
      -I   bij aanmaken van lokale variabele, de eigenschappen en waarde van
             variabele met dezelfde naam uit vorig geldigheidsbereik overerven
      -p   van elke gegeven variabele de eigenschappen en waarde tonen

    Eigenschappen:
      -a   van gegeven variabelen arrays maken (indien mogelijk)
      -A   van gegeven variabelen associatieve arrays maken (indien mogelijk)
      -i   aan gegeven variabelen de 'geheel getal'-eigenschap toekennen
      -l   waarde van variabelen bij toekenning omzetten naar kleine letters
      -n   de gegeven variabele een verwijzing maken naar de variabele die
             gegeven is als waarde
      -r   de gegeven variabelen alleen-lezen maken
      -t   aan gegeven variabelen de 'trace'-eigenschap toekennen
      -u   waarde van variabelen bij toekenning omzetten naar hoofdletters
      -x   de gegeven variabelen exporteren

    Een '+' in plaats van een '-' voor de letter schakelt de betreffende
    eigenschap uit, behalve voor a, A, en r.

    Bij variabelen met de 'geheel getal'-eigenschap wordt bij toewijzingen
    een rekenkundige evaluatie gedaan (zie 'let').

    Als 'declare' wordt gebruikt in een functie, dan maakt het elke gegeven
    naam lokaal, net zoals de opdracht 'local'.  Optie '-g' onderdrukt dit.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een toekenningsfout optrad.Shell-opdrachten die overeenkomen met 'Shell-opdrachten die overeenkomen met 'Korte opties:
Positionele parameters opschuiven.

    Hernoemt positionele parameters $N+1,$N+2,... naar $1,$2,...
    Als N niet gegeven is, wordt de waarde 1 aangenomen.

    De afsluitwaarde is 0 tenzij N negatief is of groter dan $#.Signaal %dAangeven hoe argumenten door 'readline' gecompleteerd moeten worden.

    Geeft voor elke gegeven NAAM aan hoe de argumenten gecompleteerd dienen te
    worden.  Zonder argumenten worden de bestaande completeringsvoorschriften
    getoond (in een vorm die als invoer hergebruikt kan worden).

    Opties:
      -p   bestaande completeringsvoorschriften in herbruikbare vorm tonen
      -r   elk genoemd voorschrift verwijderen, of alle voorschriften als
             geen NAAM gegeven is
      -D   de gegeven completeringen en acties als standaard nemen voor
             opdrachten die geen specifieke eigen completering hebben
      -E   de gegeven completeringen en acties als standaard nemen voor
             lege opdrachten -- de completering van een lege regel
      -I   de gegeven completeringen en acties als standaard nemen voor
             het beginwoord (gewoonlijk een opdracht)

    Als completering geprobeerd wordt, dan worden de acties toegepast in
    de volgorde van bovenstaande hoofdletteropties.  Als meerdere opties
    gegeven zijn, dan gaat '-D' voor '-E', en beide gaan voor '-I'

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er
    een fout optrad.GepauzeerdGepauzeerd (signaal)Gepauzeerd (terminalinvoer)Gepauzeerd (terminaluitvoer)Gepauzeerd(%s)Uitvoering van de shell pauzeren.

    Pauzeert de uitvoering van deze shell totdat een SIGCONT-signaal ontvangen
    wordt.  Tenzij gedwongen, kunnen login-shells en shells zonder taakbeheer
    niet gepauzeerd worden.

    Optie:
      -f   pauzering afdwingen, ook als dit een login-shell of een shell zonder
             taakbeheer is

    De afsluitwaarde is 0, tenzij taakbeheer uitgeschakeld is of er een fout
    optreedt.TIMEFORMAT: '%c': ongeldig opmaaktekenBeëindigdDe post in %s is gelezen.
Er zijn nog draaiende taken.
Er zijn nog gepauzeerde taken.
Er is GEEN GARANTIE, voor zover de wet dit toestaat.Hieronder staan alle interne shell-opdrachten opgesomd.  Typ 'help' om dit
overzicht opnieuw te zien.  Typ 'help naam' voor meer informatie over de
opdracht met die naam.  Typ 'info bash' voor gedetailleerde informatie over
de gehele shell.  En gebruik 'man -k ...' of 'info ...' voor meer informatie
over andere opdrachten.

(Een sterretje (*) naast een naam betekent dat de functie uitgeschakeld is.)

Dit is vrije software; u mag het vrijelijk wijzigen en verder verspreiden.Signalen en andere gebeurtenissen opvangen.

    Definieert en activeert afhandelingsprocedures die uitgevoerd moeten
    worden wanneer de shell een signaal of andere gebeurtenissen ontvangt.

    ACTIE is een opdracht die gelezen en uitgevoerd moet worden wanneer de
    shell een van de opgegeven signalen ontvangt.  Als ACTIE ontbreekt en er
    één signaal gegeven is, of wanneer ACTIE '-' is, dan worden de opgegeven
    signalen teruggezet op de waarde die ze hadden bij het starten van deze
    shell.  Als ACTIE de lege tekenreeks is, dan worden de opgegeven signalen
    genegeerd door zowel deze shell als door alle dochterprocessen.

    Als EXIT (0) als signaal opgegeven wordt, dan wordt ACTIE uitgevoerd bij
    het afsluiten van de shell.  Als DEBUG als signaal opgegeven wordt, dan
    wordt ACTIE uitgevoerd vóór elke enkelvoudige opdracht.  Als RETURN als
    signaal opgegeven wordt, dan wordt ACTIE uitgevoerd elke keer als een
    functie (of een met 'source' aangeroepen script) terugkeert.  Als ERR
    als signaal opgegeven wordt, dan wordt ACTIE uitgevoerd elke keer als
    de mislukking van een opdracht de shell zou beëindigen als optie '-e'
    gegeven was.

    Als er geen enkel argument gegeven is, dan toont 'trap' welke opdrachten
    er met welke signalen verbonden zijn, in een vorm die gebruikt kan worden
    als shell-invoer om dezelfde signaalafvangingen te herstellen.

    Opties:
      -l   een overzicht tonen van signaalnummers en hun namen
      -p   voor elk gegeven signaal tonen welke opdracht ermee verbonden is, in
             een vorm die gebruikt kan worden als shell-invoer; als geen signaal
             gegeven is, dan de opdrachten voor alle afgevangen signalen tonen

    Signalen kunnen als naam of als nummer opgegeven worden, in hoofd- of in
    kleine letters, en het voorvoegsel 'SIG' is optioneel.  Merk op dat met
    'kill -signaal $$' een signaal naar de huidige shell gestuurd kan worden.

    De afsluitwaarde is 0, tenzij een ongeldige optie of SIGNAALAANDUIDING
    gegeven werd.Typ '%s -c "help set"' voor meer informatie over shell-opties.
Typ '%s -c help' voor meer informatie over ingebouwde shell-functies.
Onbekend signaal #%dOnbekende foutOnbekende afsluitwaardeShell-variabelen en -functies verwijderen.

    Verwijdert voor elke NAAM de bijbehorende variabele of functie.

    Opties:
      -f   elke NAAM als een shell-functie begrijpen
      -v   elke NAAM als een shell-variabele begrijpen
      -n   elke NAAM als een naamsverwijzing begrijpen en de variabele zelf
           verwijderen in plaats de variabele waar naar verwezen wordt

    Zonder opties zal 'unset' eerst een variabele proberen te verwijderen,
    en als dat niet lukt, dan een functie.  Sommige variabelen kunnen niet
    verwijderd worden; zie ook 'readonly'.

    De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een
    NAAM alleen-lezen is.Urgente in-/uitvoertoestandGebruik:  %s [opties]
          %s [opties] scriptbestand...
Gebruik "%s" om de shell te verlaten.
Gebruik de opdracht 'bashbug' om fouten in bash te rapporteren.
Gebruikerssignaal 1Gebruikerssignaal 2Op taakafsluiting wachten en de afsluitwaarde rapporteren.

    Wacht op elk proces aangeduid door een ID -- dat een taakaanduiding of
    een proces-ID mag zijn -- en rapporteert diens afsluitwaarde.  Als geen ID
    gegeven is, dan wordt er gewacht op alle actieve dochterprocessen, en is
    de afsluitwaarde van 'wait' automatisch 0.  Als ID een taakaanduiding is,
    dan wordt er gewacht op alle processen in de pijplijn van die taak.

    Als optie '-n' gegeven is, dan wordt gewacht op de eerstvolgende voltooiing
    van een taak en wordt diens afsluitwaarde geretourneerd.

    Als optie '-p' gegeven is, dan wordt het proces- of taaknummer van de taak
    waarop gewacht werd toegekend aan de gegeven variabele VAR.  De variabele
    is ongedefinieerd voordat de waarde toegekend wordt.  Deze optie is alleen
    nuttig samen met optie '-n'.

    Als optie '-f' gegeven is, en taakbesturing is ingeschakeld, dan wordt
    gewacht tot de taak met de gegeven ID beëindigd is, in plaats van te
    wachten op een toestandswijziging.

    De afsluitwaarde is die van de laatste ID; of niet-nul als ID ongeldig is,
    of als een ongeldige optie gegeven werd, of als '-n' gegeven werd maar de
    shell geen dochters heeft waarop gewacht wordt.Op procesafsluiting wachten en de afsluitwaarde rapporteren.

    Wacht op elk proces aangeduid door een PID en rapporteert diens
    afsluitwaarde.  Als geen PID gegeven is, dan wordt er gewacht op alle
    momenteel actieve dochterprocessen, en is de afsluitwaarde van 'wait'
    automatisch 0.  PID moet een proces-ID zijn.

    De afsluitwaarde is die van de laatste PID, 1 als PID ongeldig is,
    of 2 als een ongeldige optie gegeven werd.Venster is veranderdDe gegeven argumenten naar standaarduitvoer schrijven.

    Schrijft de gegeven argumenten naar standaarduitvoer, gevolgd door een
    nieuwe regel.  Optie '-n' onderdrukt deze afsluitende nieuwe regel.

    De afsluitwaarde is 0, tenzij een schrijffout optrad.De gegeven argumenten naar standaarduitvoer schrijven.

    Schrijft de gegeven argumenten naar standaarduitvoer, elke twee gescheiden
    door een spatie en aan het eind gevolgd door een nieuwe regel.

    Opties:
      -n   de afsluitende nieuwe regel onderdrukken
      -e   onderstaande backslash-stuurcodes interpreteren
      -E   onderstaande backslash-stuurcodes niet interpreteren

    'echo' kent de volgende stuurcodes:
      \a     geluidssignaal
      \b     backspace
      \c     geen verdere uitvoer produceren
      \e     escapecode
      \E     escapecode
      \f     nieuwe pagina (FF-teken)
      \n     nieuwe regel (LF-teken)
      \r     naar begin van huidige regel (CR-teken)
      \t     horizontale tab
      \v     verticale tab
      \\     een backslash (\)
      \0NNN  het teken met ASCII-code NNN (octaal, 1 tot 3 cijfers)
      \xHH   het teken met code HH (hexadecimaal, 1 of 2 cijfers)
      \uHHHH      het Unicode-teken met code HHHH
                   (hexadecimaal, 1 tot 4 cijfers)
      \UHHHHHHHH  het Unicode-teken met code HHHHHHHH
                   (hexadecimaal, 1 tot 8 cijfers)

    De afsluitwaarde is 0, tenzij een schrijffout optrad.U hebt post in $_U hebt nieuwe post in $_[ EXPRESSIE... ][[ EXPRESSIE ]]'%c': ongeldige opdracht'%c': ongeldig opmaakteken'%c': ongeldig teken in symbolische modus'%c': ongeldige operator in symbolische modus'%c': ongeldige aanduiding van tijdsopmaakKan %s niet losmakenKan '%s' niet losmaken in toetsenkaart'%s': ongeldige naam voor alias'%s': ongeldige naam voor toetsenkaart'%s': ongeldige variabelenaam voor naamsverwijzing'%s' is een speciale ingebouwde shell-functie'%s': ontbrekend opmaakteken'%s': is geen PID en geen geldige taakaanduiding'%s': is geen geldige naam'%s': onbekende functienaam')' werd verwacht')' werd verwacht; %s gevonden':' werd verwacht voor een voorwaardelijke expressieadd_process(): PID %5ld (%s) staat gemarkeerd als nog actiefalias [-p] [NAAM[=WAARDE] ... ]all_local_variables(): er is geen functiecontext in huidige geldigheidsbereikomleiding is niet eenduidigargumentargument werd verwachtrekenkundige syntaxfout in expressierekenkundige syntaxfout in toewijzing aan variabelesyntaxfout: ongeldige rekenkundige operatorrekenkundige syntaxfout: operator verwachtondersteuning van arrayvariabelen is vereistpoging tot toewijzing aan een niet-variabeleongeldige array-indexongeldig opdrachttypeongeldige verbinderongeldige interpreterongeldige sprongongeldige vervanging: geen afsluitende '`' in %songeldige vervanging: geen sluit-'%s' in %sWebpagina van 'bash': <http://www.gnu.org/software/bash>
bash_execute_unix_command(): kan voor opdracht geen toetsenkaart vindenbg [TAAKAANDUIDING...]bgp_delete: LUS: psi (%d) == storage[psi].bucket_nextbgp_search: LUS: psi (%d) == storage[psi].bucket_nextbind [-lpvsPSVX] [-m TOETSENKAART] [-f BESTANDSNAAM] [-q NAAM] [-u NAAM]
           [-r TOETSENREEKS] [-x TOETSENREEKS:SHELL-OPDRACHT]
           [TOETSENREEKS:READLINE-FUNCTIE | TOETSENREEKS:READLINE-OPDRACHT]accoladevervanging: onvoldoende geheugen beschikbaar voor %saccoladevervanging: onvoldoende geheugen beschikbaar voor %s elementenaccoladevervanging: onvoldoende geheugen beschikbaar voor '%s'break [N]**interne fout**: onjuist symbool in toewijzingsexpressiebuiltin [INGEBOUWDE_SHELLFUNCTIE [ARGUMENT...]]caller [EXPRESSIE]kan alleen een 'return' doen uit een functie of een uit script aangeroepen met 'source'kan alleen worden gebruikt binnen een functiekan geen nieuwe bestandsdescriptor reserveren voor bash-invoer vanuit bestandsdescriptor %dkan bestandsdescriptor niet toewijzen aan variabelekan niet van taalregio veranderenkan niet aanmakenkan geen tijdelijk bestand maken voor "hier"-documentkan bestandsdescriptor %d niet dupliceren naar bestandsdescriptor %dkan pijp genaamd %s niet dupliceren als bestandsdescriptor %dkan niet uitvoerenkan binair bestand niet uitvoerenkan %s niet vinden in gedeeld object %s: %skan de limiet niet verkrijgenkan geen dochterproces maken voor opdrachtvervangingkan geen dochterproces maken voor procesvervangingkan geen pijp maken voor opdrachtvervangingkan geen pijp maken voor procesvervangingkan de limiet niet wijzigenkan niet openenkan pijp genaamd %s niet openen om te lezenkan pijp genaamd %s niet openen om te schrijvenkan gedeeld object %s niet openen: %skan tijdelijk bestand niet openenkan bestaand bestand niet overschrijvenkan niet lezenkan standaardinvoer niet omleiden vanaf /dev/nullkan 'nodelay'-modus niet uitschakelen voor bestandsdescriptor %dkan shell-opties niet tegelijk inschakelen en uitschakelenkan GID niet op %d instellen; effectieve GID is %dkan procesgroep (%d) van terminal niet instellenkan UID niet op %d instellen; effectieve UID is %dkan niet tegelijk een functie en een variabele verwijderenkan debugger niet starten; debugging-modus is uitgeschakeldkan niet pauzerenkan een inlog-shell niet pauzeren'-f' kan niet gebruikt worden om een functie te definiërenslechts één van '-a', '-n', '-r' of '-w' is mogelijkcase WOORD in [PATROON [| PATROON]...) OPDRACHTEN ;;]... esaccd [-L|[-P [-e]]] [-@] [MAP]instellen van procesgroep %2$ld van dochter %1$ldcommand [-pVv] OPDRACHT [ARGUMENT...]opdracht niet gevondenopdrachtsubstitutie: null-byte in invoer is genegeerdcommand_substitute(): kan pijp niet dupliceren als bestandsdescriptor 1compgen [-V VARIABELENAAM] [-abcdefgjksuv] [-o OPTIE] [-A ACTIE]
                 [-C OPDRACHT] [-F FUNCTIE] [-G PATROON] [-P PREFIX]
                 [-S SUFFIX] [-W WOORDENLIJST] [-X FILTERPATROON]  [WOORD]complete [-abcdefgjksuv] [-pr] [-DEI] [-o OPTIE] [-A ACTIE]
                   [-C OPDRACHT] [-F FUNCTIE] [-G PATROON] [-P PREFIX]
                   [-S SUFFIX] [-W WOORDENLIJST] [-X FILTERPATROON]  [NAAM...]completion(): functie '%s' niet gevondencompopt [-o|+o OPTIE] [-DEI] [NAAM...]tweezijdige conditionele operator werd verwachtcontinue [N]coproc [NAAM] OPDRACHT [OMLEIDINGEN]Kan /tmp niet vinden; maak deze aan!cprintf(): '%c': ongeldig opmaaktekenhuidigedeclare [-aAfFgiIlnrtux] [NAAM[=WAARDE] ...]
     of: declare -p [-aAfFilnrtux] [NAAM ...]verwijderen van gepauzeerde taak %d met procesgroep %ld...describe_pid(): PID %ld bestaat nietmappenstapel is leegmappenstapelindexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [TAAKAANDUIDING... | PID...] deling door nuldynamisch-laden is niet beschikbaarecho [-n] [ARGUMENT...]echo [-neE] [ARGUMENT...]lege naam van array-variabelelege bestandsnaamenable [-a] [-dnps] [-f BESTANDSNAAM] [NAAM...]fout bij aanmaken van gebufferde streamfout bij verkrijgen van terminaleigenschappenfout tijdens importeren van functiedefinitie voor '%s'fout bij bepalen van huidige mapfout bij instellen van terminaleigenschappeneval [ARGUMENT...]eval: maximum 'eval'-nestingsniveau is overschreden (%d)exec [-cl] [-a NAAM] [OPDRACHT [ARGUMENT...]] [OMLEIDING...]execute_coproc(): coproc [%d:%s] bestaat nog steedsexit [N]')' werd verwachtexponent is kleiner dan 0export [-fn] [NAAM[=WAARDE] ...]   of:  export -p [-f]uitdrukking werd verwachtrecursieniveau van expressies is overschredenfc [-e EDITORNAAM] [-lnr] [EERSTE] [LAATSTE]
of: fc -s [PATROON=VERVANGING] [OPDRACHT]fg [TAAKAANDUIDING]bestandsdescriptor valt buiten bereikvereist een bestandsnaam als argumentfor (( EXPR1; EXPR2; EXPR3 )); do OPDRACHTEN; donefor NAAM [in WOORDEN...] ; do OPDRACHTEN; doneafgesplitst PID %d hoort bij draaiende taak %dprobleem bij ontleden van opmaak: %sframe niet gevondenfree(): aangeroepen met als argument een blok dat al vrijgegeven isfree(): aangeroepen met als argument een ongebruikt blokfree(): blokgroottes van begin en eind zijn verschillendfree(): onderloop: 'magic8' is beschadigdfree(): onderloop: 'mh_nbytes' valt buiten bereikfunction NAAM { OPDRACHTEN ; }   of:  NAAM () { OPDRACHTEN ; }function_substitute(): kan anoniem bestand niet dupliceren als standaarduitvoerfunction_substitute(): kan anoniem bestand niet openen voor uitvoertoekomstige versies van de shell zullen dit als een rekenkundige vervanging evaluerengetwd(): kan geen geen toegang verkrijgen tot bovenliggende mappengetopts OPTIETEKENREEKS NAAM [ARGUMENT...]hash [-lr] [-p PADNAAM] [-dt] [NAAM...]hashen is uitgeschakeldhelp [-dms] [PATROON...]hulp is niet beschikbaar in deze versieregel %d van "hier"-document eindigt met einde van bestand (verwachtte '%s')history [-c] [-d POSITIE] [N]
     of: history -anrw [BESTANDSNAAM]
     of: history -ps ARGUMENT...geschiedenispositiegeschiedenisaanduidingtreffers commando
naam verwacht na pre-increment of pre-decrementif OPDRACHTEN; then OPDRACHTEN; [elif OPDRACHTEN; then OPDRACHTEN;]...
                   [else OPDRACHTEN;] fiinitialize_job_control: getpgrp() is misluktinitialize_job_control: lijnprotocolinitialize_job_control: geen taakbesturing in de achtergrondinitialize_job_control: setpgid()ongeldige rekenkundige basisongeldige basis*** ongeldig teken '%d' in export-tekenreeks voor %songeldige bestandsdescriptorongeldig 'glob'-sorteringstypeongeldig hexadecimaal getalongeldige integerconstanteongeldig getalongeldig octaal getalongeldige reguliere expressie '%s'ongeldige reguliere expressie '%s': %songeldig signaalnummertaak %d is gestart zonder taakbesturingTAAKAANDUIDING [&]jobs [-lnprs] [TAAKAANDUIDING...]
  of: jobs -x OPDRACHT [ARGUMENT...]kill [-s SIGNAALNAAM | -n SIGNAALNUMMER | -SIGNAAL] PID | TAAKAANDUIDING
  of: kill -l [SIGNAAL]laatste opdracht: %s
let ARGUMENT...limietregel %d: regelbewerking is niet ingeschakeldlaadfunctie voor %s geeft foutcode (%d): is niet geladenlocal [OPTIE] NAAM[=WAARDE]...uitgelogd
logout [N]herhalingsaantalmake_here_document(): ongeldig instructietype %dmake_local_variable(): er is geen functiecontext in huidige geldigheidsbereikmake_redirection(): omleidingsinstructie '%d' valt buiten bereikmalloc(): een pointer op de lijst van vrije blokken is overschrevenmalloc(): controletest is mislukt: %s
mapfile [-d SCHEIDINGSTEKEN] [-n AANTAL] [-O BEGIN] [-s AANTAL] [-t]
                 [-u BESTANDSDESCRIPTOR] [-C FUNCTIE] [-c HOEVEELHEID] [ARRAY]maximum aantal "hier"-documenten is overschredenproces naar andere processor verplaatsenontbrekend ')'ontbrekende ']'ontbrekend hexadecimaal cijfer bij \xontbrekend Unicode-cijfer bij \%cnetwerkoperaties worden niet ondersteund*** geen '=' in export-tekenreeks voor %sgeen sluit-'%c' in %sgeen opdracht gevondenEr is geen hulptekst voor '%s'.
Probeer 'help help' of 'man -k %s' of 'info %s'.geen taakbesturinger is geen taakbesturing in deze shellgeen overeenkomst: %sgeen andere mapbij '-x' zijn geen andere opties toegestaaner wordt momenteel geen completeringsfunctie uitgevoerdgeen login-shell; gebruik 'exit'null-mapoctaal getalheeft alleen betekenis in een 'for'-, 'while'- of 'until'-luspijpfoutpop_scope(): top van 'shell_variables' is geen tijdelijk geldigheidsbereikpop_var_context(): top van 'shell_variables' is geen functiecontextpop_var_context(): er is geen 'global_variables'-contextpopd [-n] [+N | -N]stroomstoring dreigtpretty-printing-modus wordt genegeerd in interactieve shellsprint_command(): ongeldige verbinder '%d'printf [-v VARIABELE] OPMAAK [ARGUMENTEN]progcomp_insert(): %s: lege COMPSPECprogrammable_completion(): %s: mogelijke herprobeerlusprogrammeerfoutpushd [-n] [+N | -N | MAP]pwd [-LP]read [-Eers] [-a ARRAY] [-d SCHEIDINGSTEKEN] [-i TEKST] [-p PROMPT]
           [-n AANTAL_TEKENS] [-N AANTAL_TEKENS] [-t TIJDSLIMIET]
           [-u BESTANDSDESCRIPTOR]  [NAAM...]leesfoutreadarray [-d SCHEIDINGSTEKEN] [-n AANTAL] [-O BEGIN] [-s AANTAL]
           [-t] [-u BESTANDSDESCRIPTOR] [-C FUNCTIE] [-c HOEVEELHEID] [ARRAY]readonly [-aAf] [NAAM[=WAARDE] ...]   of:  readonly -prealloc(): aangeroepen met als argument een ongebruikt blokrealloc(): blokgroottes van begin en eind zijn verschillendrealloc(): onderloop: 'magic8' is beschadigdrealloc(): onderloop: 'mh_nbytes' valt buiten bereikrecursiestapel-onderloopomleidingsfout: kan bestandsdescriptor niet duplicerenregister_alloc(): %p staat al als gereserveerd in tabel??
register_alloc(): reserveringstabel is vol??
register_free(): %p staat al als vrij in tabel??
beperkte modusbeperkte modus: omleiden van uitvoer is niet toegestaanreturn [N]run_pending_traps(): ongeldige waarde in trap_list[%d]: %prun_pending_traps: signaalverwerker is SIG_DFL, herzenden van %d (%s) aan mezelf...check_bash_input(): buffer bestaat al voor nieuwe bestandsdescriptor %dleesfout in scriptbestandselect NAAM [in WOORDEN... ;] do OPDRACHTEN; doneset [-abefhkmnptuvxBCEHPT] [-o OPTIENAAM] [--] [-] [ARGUMENT...]shell-niveau is te hoog (%d); teruggezet op 1shell_getc(): lengte van invoerregel (%zu) overschrijdt SIZE_MAX (%lu): regel is afgekaptshift [N]shift-aantalshopt [-pqsu] [-o] [OPTIENAAM...]sigprocmask(): %d: ongeldige operatiesource [-p PAD] BESTANDSNAAM [ARGUMENTEN]start_pipeline(): procesgroep van pijptekenreekslengtesuspend [-f]syntaxfoutsyntaxfout in conditionele expressiesyntaxfout in conditionele expressie: onverwacht symbool '%s'syntaxfout nabij '%s'syntaxfout nabij onverwacht symbool '%s'syntaxfout nabij onverwacht symbool '%s' tijdens zoeken naar bijpassende '%c'syntaxfout: onverwachte '%s'syntaxfout: '((%s))'syntaxfout: onverwachte ';'syntaxfout: een rekenkundige uitdrukking is vereistsyntaxfout: onverwacht bestandseindesyntaxfout: onverwacht bestandseinde van '%s'-opdracht op regel %d syntaxfout: onverwacht bestandseinde van opdracht op regel %d systeemcrash dreigttest [EXPRESSIE]time [-p] PIJPLIJNte veel argumententrap [-Plp] [[ACTIE] SIGNAALAANDUIDING...]trap handler: maximum 'trap-handler'-niveau is overschreden (%d)trap_handler(): ongeldig signaal %dtype [-afptP] NAAM...typeset [-aAfFgiIlnrtux] NAAM[=WAARDE] ...
     of: typeset -p [-aAfFilnrtux] [NAAM ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [GRENSWAARDE]umask [-p] [-S] [MODUS]unalias [-a] NAAM [NAAM...]onverwacht bestandseinde tijdens zoeken naar ']]'onverwacht bestandseinde tijdens zoeken naar bijpassende '%c'onverwacht bestandseinde tijdens zoeken naar bijpassende ')'onverwacht argument '%s' bij tweezijdige conditionele operatoronverwacht argument '%s' bij eenzijdige conditionele operatoronverwacht argument bij tweezijdige conditionele operatoronverwacht argument bij eenzijdige conditionele operatoronverwacht symbool %d in conditionele opdrachtonverwacht symbool '%c' in conditionele opdrachtonverwacht symbool '%s' in conditionele opdrachtonverwacht symbool '%s'; tweezijdige conditionele operator werd verwachtonverwacht symbool '%s'; ')' werd verwachtonbekendonbekende opdrachtfoutunset [-f] [-v] [-n] [NAAM...]until OPDRACHTEN; do OPDRACHTEN2; donewaarde is te groot voor basisvar - namen en betekenissen van enkele shell-variabelenwait [-fn] [-p VAR] [ID ...]wait [-n] [PID ...]wait(): PID %ld is geen dochterproces van deze shellwait_for(): proces %ld is nergens geregistreerdwait_for_job(): taak %d is gepauzeerdwaitchld(): WNOHANG wordt ingeschakeld om een onbegrensde blokkering te vermijdenwaarschuwing: waarschuwing: optie -C functioneert mogelijk niet zoals verwachtwaarschuwing: optie -F functioneert mogelijk niet zoals verwachtwhile OPDRACHTEN; do OPDRACHTEN2; doneschrijffoutxtrace-bestandsdescriptor (%d) != bestandsnummer van xtrace-bestandspointer (%d)xtrace_set(): %d: ongeldige bestandsdescriptorxtrace_set(): bestandspointer is NIL{ OPDRACHTEN ; }