File: nl.gmo

package info (click to toggle)
coreutils 9.10-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 70,560 kB
  • sloc: ansic: 253,546; sh: 30,931; perl: 8,141; yacc: 1,846; makefile: 198; python: 47; sed: 16
file content (4246 lines) | stat: -rw-r--r-- 308,452 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
@
H'pip$!5~
lEz6IwTGMv>]Kww#+hO-bnX8pjnBBfiEJoFMkL`oS>&:|a=lhD+4"`X[YUIJUV
D6V`"rU$7HO^cFom+C1uyFM ^;7Fvs,T8O?REp`uEd~8MA::>vTB:B{K+	Tw	m	T:
	
uK{S[
N
L
zKPB>Z7=K/O{POWl@RXMWCOD9B~HI
JT7?e8DKG/wTHU=0>nBIIN Fo^u1?KLI(BPPSA3 ':!\b!C!d"h"##$n$A$a$7%%;%H:&&m''*'(eR(x(81)j).5*d*5++r,5--/i0"1i192/3L&4Zs667UV89;G7<=5H>%~>3>3>=?9J?K?.?&?W&@S~@(@F@OBA@A,ARBCSBBAC,YCAC4C;C29D?lDSD>ED?E<E*EEEG2FAzFCFDGGEG;GBG@HDMH2H/HVHFLIEIIIR#JDvJ;JHJL@K<K*KBKF8LUL@LCMAZMMM3M8NIWNN;.OLjOBO5OP0POP?PAQHSQZQ*Q<"RG_RHR;RJ,SFwSGS9TD@T4TNTL	U<VUAU)U/UH/V,xVOVEV-;WDiW7WFW4-X;bXHXaXFIYIYYGY3;Z-oZLZAZ>,[Dk[S[I\AN\F\3\1]-=]8k]A];]-"^CP^M^)^$_F1_Nx_M_S`.i`:`K`IaEia-aaEa<>bP{b<b	c"c:?c$zc0cOcF dGgdHd8d1eLe9"fF\fFfKf:6g>qg.gKgS+hAh9hThHPi5i>iGjQVjXjLkQNkTkUkKl*lCm*\mFmGmNnDenAnNn<;oGxo>o;oF;pMp<p5
qVCqCqEq?$r5drArKr<(s+esCsMs#t0tGu9XuQu;u1 vLRv v0v#vJwO`w2w;w?xJ_xSxxIyKay7yLyE2zZxz>zA{;T{3{J{S|c|N|94}0n}L}D}61~Mh~L~==A<;&2.RM0π;C<NBρL!<nA74%SZN,I*KtJ95E;{H+5G2};1JMiOJ9R>GˈOCcE@@.Ko+5DBbDFG15y-9݌V=n;O<8RuUȎU;tG23+I_FH49;n%9БN
MYN0t'A7ޓH#_4IєIHeA@41FfD83+8_KFE+HqMH=Q-y:7=r6FR.L:Λ?	IIAj՜J@D?Н/K@B.Ϟ98H<fE9<#S`mO?K$>uc0٪(
J3+~$%Ȭ*:8Bs?;ȯ>&C8j9#ݰ$!&EH=l;?&,"
"),L1y,@ص"P<$$F׶C bJ=η;LH+6JLC=>ι4
CB$HG4<:q7?Jw4¼4',;T23ý/='ue7۾5
ITY	e	oy&	0!,>'k ,MY$o.35+)a)"'-="]. #"F>c",0B*R}&,#"#$Fk/8.Nk$7H'Y*$ 
+"Adz".,&)S}".'5](n,.'(;dw"L4*_"r,0*.[0"2BS%o+)/(1.Z<1(,=(j,,(
.6/eA<)I?s6<"'#J>n%.+(.BW-"C-/)]'
,8<)u
	E5	{	K8@Ikh@
:ER3^(	AA9VC@190T?(.I$Uz(
F++E0q	1I
1<& &,=:BM}	 8Ol$(5FRdu|2

.<I
U`ej#*EQMeXi*HoM

,&@g
s~
#Hg
@u;Q9*&D2AwBr;:v'Tk7	 N4/>7n@FEYj

1'J}a

,(&U*|;cObr5w<#8DIL,$1
Va$w&%C+%QV
es#
#9.,h& '0	46	k	d



)TY~T(-VXj&c
j


LQc#S0w&"gy./1N(+~T=&^ |F@'Z"
!-$O t>'<T9ZUPVHG	HRfWF;B5N=> ; 3T / + ' #!0!P!l!<|!!!!!!*!"0"J"Ag"$""9"#9#2U#1##E#$!$A$#H$%l$,$0$$
%0%L%*]%%%%"%&%&BD&E&;& 	',*' W'!x'''+'#(#)(,M(0z(,(#(() -)N)j)))$)")
*'#*K*5e*'***!*!+ 7+X+q+++++++,#,=,(M,v,,.,,,,-%1-W-k-F-B-+.1A.s...*...)/D/
U/c/
/////)/0&+0'R0,z0<0:0.1!N1p1&11111122#&2'J2"r2&2222 3&3?3V3%m3!3333334)4@4,W4+4-444!4$ 5)E5o5855#566-6C63U626	6-667
77	17;7S7f7}7#7"77778,8=8+W888888889%"9H9+\999$9+9#
::1:!l:/:':::;*;E;+e;*;%;;#< $<E<%[<!<'<"<<="=4=S=,q= =$=)=!>!0>R>"k>>>>*>$?#,?%P?v?!??/??(@ C@3d@-@@@!@1 A'RA-zA2A1A.
B<BSBhBBBB)B!B!!C(CClCCC"C1CD((DQD
iDwDD;D=D8#E7\EEEE3E;F.CFrFFF$F$FDGLG^GrGGGGGG2G%,H%RHxHHH-HH)H@I=[I@I:IJ!3JUJ,gJJJJJ;J1KIKdK!}KKK KKKL('L PL!qLL"L(LLM/MCM*VM-MMMMMNN4NHNdN{N%NNN1N#O"9O:\OO
OOO"OP
P7+PcPvPPPPPPPQQ<Q"ZQ!}QQQQQ7R9RXReRuRRRRRRR"S9SYSrS SSSSST+T]@TTTGTU#U<URUqU!U*UUUUV/0V$`VVVVV2V;WVWoWWWQWKX_X(uXXX
XXX,X9&Y*`Y,Y-YY*YGZ_Z0}Z:Z,Z9[P[/e['[[7[8\
?\M\e\\/\-\
\.]4]N]#e]&])]]*]^$0^(U^~^^^+^1^"_?_\_s_#_$___$
`2`!R`!t`%``'`%`a(a7a"Vaya&a&a
a7ab=0bnbbbbb'bc&c
9cGc!_c-cCcc)d	2d<d'Md"ud0d?d,	e6e%:eK`eee4e4e /fPf&of&ff1f2f!.g-Pg7~g-g$g(	h2hGQh9hEh2iLiki"}i-iiiij1jGjcj!hjjjj>j6k"OkBrk
kkkk-k2 lSlfl5slllll	l	lm'm)Amkmmmm$mm-m7#n[nbnqnnn/nnnoo#9oJ]o
o$o)o'p-p$Jpop{p*ppppq	#q-qJq8^qq
q.q4qHrUXrGr>r55s?ks?s8s=$t;bt>t3tu(u!uNu[<v>v@vw#3w<Ww)w4wwx/&xVxqxxxxxxxxx
yy#y*+y!Vy7xy y"y3y)(zRzjzzzz.zz{0{*J{Cu{{{{|#.|BR|:|H|}4}H}b}<t}H}"}+~I~Jd~2~?~4"@W#$=:BVH4.,F<sE50A3r7cނBX"o
3Gу5jOh_#0,*3(I&r(†Ά
4/1(a7&‡ 
‰Dĉ	Nq":SR7F~m
d{e~Dqř7ĚuywgyUCXd@/7pM*xRF{GlP;:)d:"C7r{
V7Sn[WLm2dRiQSc$<'
E=$`-;i/}O3FWz"SvVMq_ZR
K:LjDP
P[HNPD2oP!>rAO7oKE9M$GryK4`}_D~<GGQKL0B}B'B+:nCJQ8GMJ Nk9MOBNB7$?\ANJ-ExN
M'NuGM|m	P9
O
@
NNG)
Mq

9BE|JP
8^LDK)'uOM&;nbSi%]$QpJ$w?R/{V/u0H&o1byB *S"~#i$F%%'>(pZ*
*+,8.Q012D`383C3C"4Cf4J4H40>5>o55M;6H6P6P#7Ot7A7S8KZ8|8?#9Hc9G9B9K7:4:L:I;HO;J;>;7"<NZ<Q<:<K6=H=L=N>Qg>G>L?;N?F?J?H@Ne@Q@wAB~A7ABAL<B:B/BKBO@CMCQCJ0DN{DPDGE7cEEEEPFO	GBYGFG}G~aH~HG_I6II8iJNJ?JN1KIK|KPGLHLALJ#M?nMPMRMJRN?N5N6OJJO)OROHP?[PIP:PI Q2jQJQNQ:7RMrROR-S?>S6~S0SHS;/T3kTFTTMjUKUHV5MV1V/VNVN4WEW,WQWHX)X.XD%YNjYNYNZ2WZ5ZDZM[MS[/[)[K[KG\G\H\)$]JN]1]1]7]L5^Q^H^M_Fk__Q`I`P8aIaLaJ b@kb0bKbM)cMwc)cNcL>d8dHdG
eKUePeLeP?ff ggGhJi9_iLiJiC1jMujFjI
k6TkBk>kC
lMQlOlClH3m|mOnQTnMnBnK7oo<p9NpFpOpqQ
rK_rKrrNs,sMt:Vt:t:tOuWu1uBvNNvQvLv-<wOjwJwAxMGxJxxCty7y<y7-zGezOz@zP>{H{6{P|H`|=|Q|O9}D}Q}J ~Qk~G~56;Lr>CHBNKڀ&K5DMƁ4@I;GƂ@NOIMA6:xHKKH0+Ņ8.*2YOL܆I)Ls?JPKQ0=N]MJF֊GLePIQM</܌LPYFNO@>NώMGl=O2BBuEGKF2Oő.+DFpNI4PJEiN)/(JXNNHA;;Ɩ9E<AMėH7[PPH5O~OΙDCc2ښIxR›<IREG>*CiPNMQΞO Op7OEHCҠCDF'<nG=C1`u֣yeߥ4L@ԭ:MP>Bݮ4 *U>AFCHrtDt@1G,1t1Gش, JMGKD0ru$1
2?r~*/@/.;^*Xź,,KLxLŻ#O69CO3TOMؽN&9uD?M4,PH9IACLN=;*YA;71:>lB<>
			=%]	8!%.3I} %" /Iev3>GAJ2>&e'}3!&
(4]4c&"+/$ET,+4"(Ke5~&05B-Y-.1.BD%&'"J1hK' /G*_G7
,$.Q,(!*G\%s95("Gj"+)631e0})#7&4'[&S?d*1!Sf%|8,.7R:n) +$0P$.&.->\1&*)?"i*&.K)ux&FA/FNv=F.J,yD2<4[?N@*`D48">a5|"

8<91v
  8qY	
'H9dlqlK
	K@a
PN
B\NO>;99u:	N4e?>/
>I9?
yG51K40)lgw:Y
-13ew
]Q6d.6B_y*6EQ]j{

  

%1AFUp$} )PW]gLu`Vl$
L&=d
p{
(0mLe7;s@/2(#YLPM9)X	g	.	}
F

#
	",
9DPcdM$m3AH
qQ
4
l
e|
;=IM
-;
HVc8s5+N]eMIY9a
M
0MYN`o{%
.Wv&E0lc+-2APdz
Y(
D5R8*)36JAp!4!V$x1L g~ e /L!|!\!!/"?"&"!"##h#?$ $4%,P%$}%+%t%C&;&!#'6E'%|':'y'W((F)/)#)o!*&**Yf+,+a+$O,$t,),',B,).-?X-a---.(.H.a.?{./w/\O0y0&1Y1UU222n2j23444[g6M6I7O[7M77?86T828.8*8&9"?9b99=99!9:::6:"T:$w:$:J:";/;GO;$;&;M;M1<<q<
=.=B=2J=$}=/=A=->B>Nb>">8>
?&-?-T?$??+?P?P>@F@#@0@$+A%PA#vA"A<A2A+-B3YB7B3B5B/CHC)bC)C(C%C*D20D&cD(D0D D=E/CEsEE&E&E*E%F@F`F"~F"F1F"F"G+<G&hGG6GGG8HTHgH"HH0HH$If0ICI+IDJLJ[J#qJ4JJ'J7KJKbK'xKKK!K%K,L1GL*yL?L4L2M2LMGM+M&MN+:N,fNN&N'NOO2O.HO*wO,O/OO!P%@P*fPP#P
P.P/Q!6QXQgQ&zQQQQQ3R7?R=wRRR+R.S0=S#nS:SS-ST/TETYTBrT9TT:T.U>UCUUUjUsUU!UU&U&V6VMV(cVVV V7VWC4WxWWWWW4WXG8XXX-X3X,Y@KY'Y6Y/YZ5ZTZnZ!Z4Z%Z)[$1[,V[)[[([*[2\,Q\&~\\\+\&\5"]/X]1]3]+](^C^3^^^^'^3^.&_'U_1}_/_&_`>`]`*y`&`/`3`*/aZa&ya=a0a6b4Fb4{b>b"b"c"5c Xc yc&c2c*c,d0Ld&}dd6d'd6#e(Ze/ee2eff;1f<mf5f6fg7g<g?Zg;g7gh%,h%Rh(xh,h:h	ii:iQigii*ii3i+j.Aj&pj!jj<jj9kIKkAkCk=l/Yl#ll;l2m;mUmlmT}mm%m n)8nbn{nnnnn5n%*o%Po$vo"o%ooop'p4;p7ppppppqq7qSqrqq/qqq2
r$=r+brKr&rss%s*?sjssCssst t>tStdtytt&t$tt#u:uQuluu6uuu
v v4vCvYvov)vv'v&vw,w'EwmwwwwwwmwkxxDxxxy+%yQy"hy<yyy$yz;=z6yz'z$z#z!{67{@n{{%{ {|I#|Em||&||}$}(6}#_}.}A}0}2%~4X~~:~M~A<J~-=57L7 E݀F#j|"!>; \BkȂ&6
A^-w ,݃
';4U9Ą%%
!0)R,|ą %&+2R2)І 2Nj22χK^9n"ˈ+6bu%E܉J"m.Ê4ۊ6:G?4‹2U.:@݌,)K+u+͍9ߍ-%G5mG50!&RyE7܏C'X38Ɛ22#Lp&*&#=!a?AÒ'=-kz/?ߓ4ID͔	*"*Al$"ҕ5D3MxƖ͖:&Z#''͗*Z { +%ޘ" C'K6sǙ"%
9>D
$+TO:PGۛ>#HbHCF8O@ϝ:K-7%I]5>ݟ4Q-pG50Mh8ء3H]s&Ģ);)Q+{7/ߣ)Fc?ؤ82MS*ԥ,,,+Y8OS`b%çK(9t4A%%TK?TD5az5ܪ%78Ep/Yb@FI54EjY*
458j99ݮ~%*'5#VYDij_OʱC#-g4/ʲ1.,([dz3ٳ1
(?3h& ôYR7
;VZT\tW2~o$
A&Hk+,9y!5%XepGbrB4Cx\lSrwIEI[6H~
E6R@?a(s\aYcRO5d1Vfe`Vv<q{H+<}c~c &4bGRgkml:AH29pk; 8</I-Dpdv>Fk}NJcfst@[hn'b5L;P#yE;rsC++cKCD@;DaT(@_de]^po|BL
SRzSjn[#Y4v4V	Gl(un>Eg@avx&oAlY..TTZ) !iL'G`uAi/L)XO3ZxGfd@F2,`3I}XvD~No8>_qD6SQCiz._!EPeaBLtUw*^<4yRQJMtr131I6ANws

'}iA"xGj":JFF)5cI
p=$#G/SE{,~
I=1&U	1g	j_W7K7N#tWjJ!Xh-W sBJy,8g0?wm ?-PW@p'h3r!:HS=<B7e78qvQ43t YV"\4n=Q3?UP&%
i6j*yWgu";	%1T#8{/
C2"bA#OJsYfXM*u,?pKm)0^U\K;(F[!F[F<FHMZ^49rZ%$D'UP|]K-ET=nL<{8(S2RO/.$m^Y=x
`_r5K}'_[6Q	,cX;-&Mh?|\{/na?j*}=	^VJ!+,Sx_gN>9/@`]u*l>.lm0G,|^~r`:|MHm2]MqW:+3-  i&8]zYNP}g"h!.eAwL?RK)9#1Dz#])=wfMQ>Cyjy'0ai6HO\:
z()h0%vOiB	|-vw+3T{$7Q8DnzyP2c1:toP$m7khsouN}(qZf~o[KM$Q*k_]`6	J95|(Uq"UNw

*'qBe9\/5nZb2&tgbpl%BVOX0`fC:L0<am.U[Td"d-{%jus+bd^o>I$z*{luEV7|]%~XbO5WCxhxf
0.z9>e
dq)kZk


BYTES is hex with 0x or 0X prefix, and may have a multiplier suffix:
  b    512
  KB   1000
  K    1024
  MB   1000*1000
  M    1024*1024
and so on for G, T, P, E, Z, Y, R, Q.
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.


TYPE is made up of one or more of these specifications:
  a          named character, ignoring high-order bit
  c          printable character or backslash escape


Traditional format specifications may be intermixed; they accumulate:

  ( EXPRESSION )               EXPRESSION is true
  ! EXPRESSION                 EXPRESSION is false
  EXPRESSION1 -a EXPRESSION2   both EXPRESSION1 and EXPRESSION2 are true
  EXPRESSION1 -o EXPRESSION2   either EXPRESSION1 or EXPRESSION2 is true

  ARG1 * ARG2       arithmetic product of ARG1 and ARG2
  ARG1 / ARG2       arithmetic quotient of ARG1 divided by ARG2
  ARG1 % ARG2       arithmetic remainder of ARG1 divided by ARG2

  ARG1 + ARG2       arithmetic sum of ARG1 and ARG2
  ARG1 - ARG2       arithmetic difference of ARG1 and ARG2

  ARG1 < ARG2       ARG1 is less than ARG2
  ARG1 <= ARG2      ARG1 is less than or equal to ARG2
  ARG1 = ARG2       ARG1 is equal to ARG2
  ARG1 != ARG2      ARG1 is unequal to ARG2
  ARG1 >= ARG2      ARG1 is greater than or equal to ARG2
  ARG1 > ARG2       ARG1 is greater than ARG2

  STRING : REGEXP   anchored pattern match of REGEXP in STRING

  match STRING REGEXP        same as STRING : REGEXP
  substr STRING POS LENGTH   substring of STRING, POS counted from 1
  index STRING CHARS         index in STRING where any CHARS is found, or 0
  length STRING              length of STRING

  b      create a block (buffered) special file
  c, u   create a character (unbuffered) special file
  p      create a FIFO

# users=%td

'[' honors --help and --version, but 'test' treats them as STRINGs.

'uniq' does not detect repeated lines unless they are adjacent.
You may want to sort the input first, or use 'sort -u' without 'uniq'.

--terse is equivalent to the following FORMAT:
    %s
A field is a run of blanks (usually spaces and/or TABs), then non-blank
characters.  Fields are skipped before chars.

A lightweight 'finger' program;  print user information.
The utmp file will be %s.

A mere - implies -i.  If no COMMAND, print the resulting environment.

ARRAYs are specified as strings of characters.  Most represent themselves.
Interpreted sequences are:

  \NNN            character with octal value NNN (1 to 3 octal digits)
  \\              backslash
  \a              audible BEL
  \b              backspace
  \f              form feed
  \n              new line
  \r              return
  \t              horizontal tab

ATTR_LIST is a comma-separated list of attributes. Attributes are 'mode' for
permissions (including any ACL and xattr permissions), 'ownership' for user
and group, 'timestamps' for file timestamps, 'links' for hard links, 'context'
for security context, 'xattr' for extended attributes, and 'all' for all
attributes.

Adding a z suffix to any type displays printable characters at the end of
each output line.

After any flags comes an optional field width, as a decimal number;
then an optional modifier, which is either
E to use the locale's alternate representations if available, or
O to use the locale's alternate numeric symbols if available.

All options that specify the date to display are mutually exclusive.
I.e.: --date, --file, --reference, --resolution.

An omitted EXPRESSION defaults to false.  Otherwise,
EXPRESSION is true or false and sets exit status.  It is one of:

As a special case, cp makes a backup of SOURCE when the force and backup
options are given and SOURCE and DEST are the same name for an existing,
regular file.

Beware that many operators need to be escaped or quoted for shells.
Comparisons are arithmetic if both ARGs are numbers, else lexicographical.
Pattern matches return the string matched between \( and \) or null; if
\( and \) are not used, they return the number of characters matched or 0.

Binary -a and -o are ambiguous.  Use 'test EXPR1 && test EXPR2'
or 'test EXPR1 || test EXPR2' instead.

Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they
must be omitted when TYPE is p.  If MAJOR or MINOR begins with 0x or 0X,
it is interpreted as hexadecimal; otherwise, if it begins with 0, as octal;
otherwise, as decimal.  TYPE may be:

By default or with --reflink=auto, cp will try a lightweight copy, where the
data blocks are copied only when modified, falling back to a standard copy
if this is not possible.  With --reflink[=always] cp will fail if CoW is not
supported, while --reflink=never ensures a standard copy is performed.

By default, rm does not remove directories.  Use the --recursive (-r or -R)
option to remove each listed directory, too, along with all of its contents.

By default, sparse SOURCE files are detected by a crude heuristic and the
corresponding DEST file is made sparse as well.  That is the behavior
selected by --sparse=auto.  Specify --sparse=always to create a sparse DEST
file whenever the SOURCE file contains a long enough sequence of zero bytes.
Use --sparse=never to inhibit creation of sparse files.

CHUNKS may be:
  N       split into N files based on size of input
  K/N     output Kth of N to standard output
  l/N     split into N files without splitting lines/records
  l/K/N   output Kth of N to standard output without splitting lines/records
  r/N     like 'l' but use round robin distribution
  r/K/N   likewise but only output Kth of N to standard output

Combination settings:

Comparisons honor the rules specified by 'LC_COLLATE'.

Consider using the printf(1) command instead,
as it avoids problems when outputting option-like strings.

Control settings:
   [-]clocal     disable modem control signals
   [-]cread      allow input to be received

DURATION is a floating point number with an optional suffix:
's' for seconds (the default), 'm' for minutes, 'h' for hours or 'd' for days.
A duration of 0 disables the associated timeout.

Default options are: -bt -d'\:' -fn -hn -i1 -l1 -n'rn' -s<TAB> -v1 -w6

CC are two delimiter characters used to construct logical page delimiters;
a missing second character implies ':'.  As a GNU extension one can specify
more than two characters, and also specifying the empty string (-d '')
disables section matching.

Delete FILE(s) if --remove (-u) is specified.  The default is not to remove
the files because it is common to operate on device files like /dev/hda,
and those files usually should not be removed.
The optional HOW parameter indicates how to remove a directory entry:
'unlink' => use a standard unlink call.
'wipe' => also first obfuscate bytes in the name.
'wipesync' => also sync each obfuscated byte to the device.
The default mode is 'wipesync', but note it can be expensive.


Display values are in units of the first available SIZE from --block-size,
and the %s_BLOCK_SIZE, BLOCK_SIZE and BLOCKSIZE environment variables.
Otherwise, units default to 1024 bytes (or 512 if POSIXLY_CORRECT is set).

Each FLAG symbol may be:

  append    append mode (makes sense only for output; conv=notrunc suggested)

Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.

Each PATTERN may be:
  INTEGER            copy up to but not including specified line number
  /REGEXP/[OFFSET]   copy up to but not including a matching line
  %REGEXP%[OFFSET]   skip to, but not including a matching line
  {INTEGER}          repeat the previous pattern specified number of times
  {*}                repeat the previous pattern as many times as possible

A line OFFSET is an integer optionally preceded by '+' or '-'

Examples:
  $ %s --to=si 1000
            -> "1.0k"
  $ %s --to=iec 2048
           -> "2.0K"
  $ %s --to=iec-i 4096
           -> "4.0Ki"
  $ echo 1K | %s --from=si
           -> "1000"
  $ echo 1K | %s --from=iec
           -> "1024"
  $ df -B1 | %s --header --field 2-4 --to=si
  $ ls -l  | %s --header --field 5 --to=iec
  $ ls -lh | %s --header --field 5 --from=iec --padding=10
  $ ls -lh | %s --header --field 5 --from=iec --format %%10f

Examples:
  %s -12 file1 file2  Print only lines present in both file1 and file2.
  %s -3 file1 file2  Print lines in file1 not in file2, and vice versa.

Examples:
  %s /usr/bin/          -> "/usr"
  %s dir1/str dir2/str  -> "dir1" followed by "dir2"
  %s stdio.h            -> "."

Examples:
  %s /usr/bin/sort          -> "sort"
  %s include/stdio.h .h     -> "stdio"
  %s -s .h include/stdio.h  -> "stdio"
  %s -a any/str1 any/str2   -> "str1" followed by "str2"

Examples:
  %s f - g  Output f's contents, then standard input, then g's contents.
  %s        Copy standard input to standard output.

Examples:
  %s root /u        Change the owner of /u to "root".
  %s root:staff /u  Likewise, but also change its group to "staff".
  %s -hR root /u    Change the owner of /u and subfiles to "root".

Examples:
  %s staff /u      Change the group of /u to "staff".
  %s -hR staff /u  Change the group of /u and subfiles to "staff".

Examples:
Convert seconds since the Epoch (1970-01-01 UTC) to a date
  $ date --date='@2147483647'

Show the time on the west coast of the US (use tzselect(1) to find TZ)
  $ TZ='America/Los_Angeles' date

Show the local time for 9AM next Friday on the west coast of the US
  $ date --date='TZ="America/Los_Angeles" 09:00 next Fri'

Except for -h and -L, all FILE-related tests dereference symbolic links.
Beware that parentheses need to be escaped (e.g., by backslashes) for shells.
INTEGER may also be -l STRING, which evaluates to the length of STRING.

Exit status is 0 if EXPRESSION is neither null nor 0, 1 if EXPRESSION is null
or 0, 2 if EXPRESSION is syntactically invalid, and 3 if an error occurred.

Exit status:
 0  if OK,
 1  if minor problems (e.g., cannot access subdirectory),
 2  if serious trouble (e.g., cannot access command-line argument).

FIELDS supports cut(1) style field ranges:
  N    N'th field, counted from 1
  N-   from N'th field, to end of line
  N-M  from N'th to M'th field (inclusive)
  -M   from first to M'th field (inclusive)
  -    all fields
Multiple fields/ranges can be separated with commas

FIELD_LIST is a comma-separated list of columns to be included.  Valid
field names are: 'source', 'fstype', 'itotal', 'iused', 'iavail', 'ipcent',
'size', 'used', 'avail', 'pcent', 'file' and 'target' (see info page).

FORMAT controls the output as in C printf.  Interpreted sequences are:

  \"      double quote

FORMAT controls the output.  Interpreted sequences are:

  %%   a literal %
  %a   locale's abbreviated weekday name (e.g., Sun)

FORMAT is one of:

  ln     left justified, no leading zeros
  rn     right justified, no leading zeros
  rz     right justified, leading zeros


Handle the tty line connected to standard input.  Without arguments,
prints baud rate, line discipline, and deviations from stty sane.  In
settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or
127; special values ^- or undef used to disable special characters.

If -e is in effect, the following sequences are recognized:


If FILE is -, shred standard output.

If FILE is not specified, use %s.  %s as FILE is common.
If ARG1 ARG2 given, -m presumed: 'am i' or 'mom likes' are usual.

If FILE is specified, read it to determine which colors to use for which
file types and extensions.  Otherwise, a precompiled database is used.
For details on the format of these files, run 'dircolors --print-database'.

If FIRST or INCREMENT is omitted, it defaults to 1.  That is, an
omitted INCREMENT defaults to 1 even when LAST is smaller than FIRST.
The sequence of numbers ends when the sum of the current number and
INCREMENT would become greater than LAST.
FIRST, INCREMENT, and LAST are interpreted as floating point values.
INCREMENT is usually positive if FIRST is smaller than LAST, and
INCREMENT is usually negative if FIRST is greater than LAST.
INCREMENT must not be 0; none of FIRST, INCREMENT and LAST may be NaN.

If MODE is '0' the corresponding stream will be unbuffered.

If MODE is 'L' the corresponding stream will be line buffered.
This option is invalid with standard input.

If first and second call formats both apply, the second format is assumed
if the last operand begins with + or (if there are 2 operands) a digit.
An OFFSET operand means -j OFFSET.  LABEL is the pseudo-address
at first byte printed, incremented when dump is progressing.
For OFFSET and LABEL, a 0x or 0X prefix indicates hexadecimal;
suffixes may be . for octal and b for multiply by 512.

If no command is given, run '"$SHELL" -i' (default: '/bin/sh -i').

If no option is specified, -P is assumed.

If standard input is a terminal, redirect it from an unreadable file.
If standard output is a terminal, append output to 'nohup.out' if possible,
'$HOME/nohup.out' otherwise.
If standard error is a terminal, redirect it to standard output.
To save output to FILE, use '%s COMMAND > FILE'.

If you use rm to remove a file, it might be possible to recover
some of its contents, given sufficient expertise and/or time.  For greater
assurance that the contents are unrecoverable, consider using shred(1).

Input settings:
   [-]brkint     breaks cause an interrupt signal
   [-]icrnl      translate carriage return to newline
   [-]ignbrk     ignore break characters
   [-]igncr      ignore carriage return
   [-]ignpar     ignore characters with parity errors

KEYDEF is F[.C][OPTS][,F[.C][OPTS]] for start and stop position, where F is a
field number and C a character position in the field; both are origin 1, and
the stop position defaults to the line's end.  If neither -t nor -b is in
effect, characters in a field are counted from the beginning of the preceding
whitespace.  OPTS is one or more single-letter ordering options [bdfgiMhnRrV],
which override global ordering options for that key.  If no key is given, use
the entire line as the key.  Use --debug to diagnose incorrect key usage.

SIZE may be followed by the following multiplicative suffixes:

Local settings:
   [-]crterase   echo erase characters as backspace-space-backspace

MODE determines behavior with write errors on the outputs:
  warn           diagnose errors writing to any output
  warn-nopipe    diagnose errors writing to any output not a pipe
  exit           exit on error writing to any output
  exit-nopipe    exit on error writing to any output not a pipe
The default MODE for the -p option is 'warn-nopipe'.
With "nopipe" MODEs, exit immediately if all outputs become broken pipes.
The default operation when --output-error is not specified, is to
exit immediately on error writing to a pipe, and diagnose errors
writing to non pipe outputs.

Mandatory arguments to long options are mandatory for short options too.

N and BYTES may be followed by the following multiplicative suffixes:
c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, xM=M,
GB=1000*1000*1000, G=1024*1024*1024, and so on for T, P, E, Z, Y, R, Q.
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.
If N ends in 'B', it counts bytes not blocks.

Each CONV symbol may be:


NOTE: If COMMAND adjusts the buffering of its standard streams ('tee' does
for example) then that will override corresponding changes by 'stdbuf'.
Also some filters (like 'dd' and 'cat' etc.) don't use streams for I/O,
and are thus unaffected by 'stdbuf' settings.

NUM may have a multiplier suffix:
b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,
GB 1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y, R, Q.
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.

NUM may have a multiplier suffix:
b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,
GB 1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y, R, Q.
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.


Optional - before SETTING indicates negation.  An * marks non-POSIX
settings.  The underlying system defines which settings are available.

Other options:


Otherwise MODE is a number which may be followed by one of the following:
KB 1000, K 1024, MB 1000*1000, M 1024*1024, and so on for G,T,P,E,Z,Y,R,Q.
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.
In this case the corresponding stream will be fully buffered with the buffer
size set to MODE bytes.

Output settings:

Owner is unchanged if missing.  Group is unchanged if missing, but changed
to login group if implied by a ':' following a symbolic OWNER.
OWNER and GROUP may be numeric as well as symbolic.

Print the value of EXPRESSION to standard output.  A blank line below
separates increasing precedence groups.  EXPRESSION may be:

  ARG1 | ARG2       ARG1 if it is neither null nor 0, otherwise ARG2

  ARG1 & ARG2       ARG1 if neither argument is null or 0, otherwise 0

Read standard input if FILE is -

SIG may be a signal name like 'PIPE', or a signal number like '13'.
Without SIG, all known signals are included.  Multiple signals can be
comma-separated.  An empty SIG argument is a no-op.

SIGNAL may be a signal name like 'HUP', or a signal number like '1',
or the exit status of a process terminated by a signal.
PID is an integer; if negative it identifies a process group.

SIZE is a number.  For TYPE in [doux], SIZE may also be C for
sizeof(char), S for sizeof(short), I for sizeof(int) or L for
sizeof(long).  If TYPE is f, SIZE may also be B for Brain 16 bit,
H for Half precision float, F for sizeof(float), D for sizeof(double),
or L for sizeof(long double).

SIZE may also be prefixed by one of the following modifying characters:
'+' extend by, '-' reduce by, '<' at most, '>' at least,
'/' round down to multiple of, '%' round up to multiple of.

STYLE is one of:

  a      number all lines
  t      number only nonempty lines
  n      number no lines
  pBRE   number only lines that contain a match for the basic regular
         expression, BRE

Sending a %s signal to a running 'dd' process makes it
print I/O statistics to standard error and then resume copying.

Options are:


Special characters:

Special settings:
   N             set the input and output speeds to N bauds

The SIZE argument is an integer and optional unit (example: 10K is 10*1024).
Units are K,M,G,T,P,E,Z,Y,R,Q (powers of 1024) or KB,MB,... (powers of 1000).
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.

The backup suffix is '~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.
The version control method may be selected via the --backup option or through
the VERSION_CONTROL environment variable.  Here are the values:


The data are encoded as described for the %s alphabet in RFC 4648.
When decoding, the input may contain newlines in addition to the bytes of
the formal %s alphabet.  Use --ignore-garbage to attempt to recover
from any other non-alphabet bytes in the encoded stream.

The following five options are useful only when verifying checksums:

The following options modify how a hierarchy is traversed when the -R
option is also specified.  If more than one is specified, only the final
one takes effect. %s is the default.


The options below may be used to select which counts are printed, always in
the following order: newline, word, character, byte, maximum line length.

The sums are computed as described in %s.

The valid format sequences for files (without --file-system):

  %a   permission bits in octal (see '#' and '0' printf flags)
  %A   permission bits and file type in human readable form
  %b   number of blocks allocated (see %B)
  %B   the size in bytes of each block reported by %b
  %C   SELinux security context string

This install program copies files (often just compiled) into destination
locations you choose.  If you want to download and install a ready-to-use
package on a GNU/Linux system, you should instead be using a package manager
like yum(1) or apt-get(1).

In the first three forms, copy SOURCE to DEST or multiple SOURCE(s) to
the existing DIRECTORY, while setting permission modes and owner/group.
In the 4th form, create all components of the given DIRECTORY(ies).

To remove a file whose name starts with a '-', for example '-foo',
use one of these commands:
  %s -- -foo

  %s ./-foo

UNIT options:

Upon timeout, send the TERM signal to COMMAND, if no other SIGNAL specified.
The TERM signal kills any process that does not block or catch that signal.
It may be necessary to use the KILL signal, since this signal can't be caught.

Use one, and only one of -b, -c or -f.  Each LIST is made up of one
range, or many ranges separated by commas.  Selected input is written
in the same order that it is read, and is written exactly once.

Use: '%s --coreutils-prog=PROGRAM_NAME --help' for individual program help.

Using -s ignores -L and -P.  Otherwise, the last option specified controls
behavior when a TARGET is a symbolic link, defaulting to %s.

Using color to distinguish file types is disabled both by default and
with --color=never.  With --color=auto, ls emits color codes only when
standard output is connected to a terminal.  The LS_COLORS environment
variable can change the settings.  Use the dircolors(1) command to set it.

When FILE1 or FILE2 (not both) is -, read standard input.

When decoding, the input may contain newlines in addition to the bytes of
the formal alphabet.  Use --ignore-garbage to attempt to recover
from any other non-alphabet bytes in the encoded stream.

With no FILE, or when FILE is -, read standard input.

With no options, produce three-column output.  Column one contains
lines unique to FILE1, column two contains lines unique to FILE2,
and column three contains lines common to both files.

Without any OPTION, print some useful set of identified information.

Write an unambiguous representation, octal bytes by default,
of FILE to standard output.  With more than one FILE argument,
concatenate them in the listed order to form the input.

Your shell may have its own version of %s, which usually supersedes
the version described here.  Please refer to your shell's documentation
for details about the options it supports.
        ???      --additional-suffix=SUFFIX
         append an additional SUFFIX to file names
      --attributes-only
         don't copy the file data, just the attributes
      --author
         with -l, print the author of each file
      --backup[=CONTROL]
         make a backup of each existing destination file
      --base64
         emit base64-encoded digests, not hexadecimal
      --batch-size=NMERGE
         merge at most NMERGE inputs at once; for more use temp files
      --check-order
         check that the input is correctly sorted,
         even if all input lines are pairable
      --color[=WHEN]
         color the output WHEN; more info below
      --compress-program=PROG
         compress temporaries with PROG; decompress them with PROG -d
      --context[=CTX]
         like -Z, or if CTX is specified then set the
         SELinux or SMACK security context to CTX
      --copy-contents
         copy contents of special files when recursive
      --debug
         annotate the part of the line used to sort,
         and warn about questionable usage to standard error
      --debug
         explain how a file is copied.  Implies -v
      --debug
         indicate which implementation used
      --debug
         print warnings about invalid input
      --dereference
         affect the referent of each symbolic link (this is
         the default), rather than the symbolic link itself
      --dereference
         affect the referent of each symbolic link,
         rather than the symbolic link itself
      --endian={big|little}
         swap input bytes according the specified order
      --exchange
         exchange source and destination
      --exclude=PATTERN
         exclude files that match PATTERN
      --field=FIELDS
         replace the numbers in these input fields (default=1);
         see FIELDS below for details
      --files0-from=F
         read input from the files specified by NUL-terminated names in file F;
         If F is -, read names from standard input
      --filter=COMMAND
         write to shell COMMAND; file name is $FILE
      --first-only
         convert only leading sequences of blanks (overrides -a)
      --format=FORMAT
         use printf style floating-point FORMAT;
         see FORMAT below for details
      --from-unit=N
         specify the input unit size (instead of the default 1)
      --from=CURRENT_OWNER:CURRENT_GROUP
         change the ownership of each file only if its
         current owner and/or group match those specified here.
         Either may be omitted, in which case a match
         is not required for the omitted attribute
      --from=UNIT
         auto-scale input numbers to UNITs; default is 'none';
         see UNIT below for details
      --grouping
         use locale-defined grouping of digits, e.g. 1,000,000.
         This has no effect in the C/POSIX locale
      --groups=G_LIST
         specify supplementary groups as g1,g2,..,gN
      --header[=N]
         print (without converting) the first N header lines;
         N defaults to 1 if not specified
      --hex-suffixes[=FROM]
         same as -x, but allow setting the start value
      --ignore-missing
         don't fail or report status for missing files
      --inodes
         list inode usage information instead of block usage
      --invalid=MODE
         failure mode for invalid numbers;
         MODE can be: abort (default), fail, warn, ignore
      --keep-directory-symlink
         follow existing symlinks to directories
      --lookup
         attempt to canonicalize hostnames via DNS
      --lookup      attempt to canonicalize hostnames via DNS
      --message     same as -T
      --no-copy
         do not copy if renaming fails
      --no-preserve-root
         do not treat '/' specially
      --no-preserve-root
         do not treat '/' specially (the default)
      --no-preserve=ATTR_LIST
         don't preserve the specified attributes
      --no-sync
         do not invoke sync before getting usage info (default)
      --nocheck-order
         do not check that the input is correctly sorted
      --numeric-suffixes[=FROM]
         same as -d, but allow setting the start value
      --output-delimiter=STR
         separate columns with STR
      --output-error[=MODE]
         set behavior on write error.  See MODE below
      --padding=N
         pad the output to N characters;
         positive N will right-align, negative N will left-align;
         padding is ignored if the output is wider than N;
         the default is to automatically pad if a whitespace is found
      --parallel=N
         change the number of sorts run concurrently to N
      --parents
         use full source file name under DIRECTORY
      --portability
         check for all POSIX systems (equivalent to -p -P)
      --preserve-context
         preserve SELinux security context
      --preserve-root
         fail to operate recursively on '/'
      --preserve[=ATTR_LIST]
         preserve the specified attributes
      --print-ls-colors
         output fully escaped colors for display
      --quiet
         don't print OK for each successfully verified file
      --random-source=FILE  get random bytes from FILE
      --raw
         emit a raw binary digest, not hexadecimal
      --reference=RFILE
         use RFILE's mode instead of specifying MODE values.
         RFILE is always dereferenced if a symbolic link.
      --reference=RFILE
         use RFILE's ownership rather than specifying values.
         RFILE is always dereferenced if a symbolic link.
      --reference=RFILE
         use RFILE's security context rather than specifying a CONTEXT value
      --reflink[=WHEN]
         control clone/CoW copies. See below
      --relative-base=DIR      print absolute paths unless paths below DIR
      --relative-to=DIR        print the resolved path relative to DIR
      --remove-destination
         remove each existing destination file before attempting to open it
         (contrast with --force)
      --remove[=HOW]
         like -u but give control on HOW to delete;  See below
      --retry
         keep trying to open a file if it is inaccessible
      --round=METHOD
         use METHOD for rounding when scaling; METHOD can be:
         up, down, from-zero (default), towards-zero, nearest
      --si
         like -h, but use powers of 1000 not 1024
      --si
         likewise, but use powers of 1000 not 1024
      --skip-chdir
         do not change working directory to %s
      --sort=WORD
         sort according to WORD:
           general-numeric -g, human-numeric -h, month -M,
           numeric -n, random -R, version -V
      --sparse=WHEN
         control creation of sparse files. See below
      --status
         don't output anything, status code shows success
      --strict
         exit non-zero for improperly formatted checksum lines
      --strip-program=PROGRAM
         program used to strip binaries
      --strip-trailing-slashes
         remove any trailing slashes from each SOURCE argument
      --suffix=SUFFIX
         add SUFFIX to output numbers,
         and accept an optional SUFFIX in input numbers
      --tag
         create a BSD-style checksum
      --tag
         create a BSD-style checksum (the default)
      --to-unit=N
         the output unit size (instead of the default 1)
      --to=UNIT
         auto-scale output numbers to UNITs; see UNIT below
      --total
         output a summary
      --traditional
         accept arguments in third form above
      --untagged
         create a reversed style checksum, without digest type
      --userspec=USER:GROUP
         specify user and group (ID or name) to use
      --writable    same as -T
      --zero
         end each output line with NUL, not newline
   [-]cstopb     use two stop bits per character (one with '-')
   [-]hup        send a hangup signal when the last process closes the tty
   [-]hupcl      same as [-]hup
   [-]parenb     generate parity bit in output and expect parity bit in input
   [-]parodd     set odd parity (or even parity with '-')
   [-]echo       echo input characters
   [-]echoe      same as [-]crterase
   [-]echok      echo a newline after a kill character
   [-]echonl     echo newline even if not echoing other characters
   [-]icanon     enable special characters: %s
   [-]iexten     enable non-POSIX special characters
   [-]inlcr      translate newline to carriage return
   [-]inpck      enable input parity checking
   [-]istrip     clear high (8th) bit of input characters
   [-]isig       enable interrupt, quit, and suspend special characters
   [-]noflsh     disable flushing after interrupt and quit special characters
   [-]ixoff      enable sending of start/stop characters
   [-]ixon       enable XON/XOFF flow control
   [-]parmrk     mark parity errors (with a 255-0-character sequence)
   [-]tandem     same as [-]ixoff
   [-]opost      postprocess output
   cbreak        same as -icanon
   -cbreak       same as icanon
   cols N        tell the kernel that the terminal has N columns
 * columns N     same as cols N
   cooked        same as brkint ignpar istrip icrnl ixon opost isig
                 icanon, eof and eol characters to their default values
   -cooked       same as raw
   crt           same as %s
   csN           set character size to N bits, N in [5..8]
   dec           same as %s intr ^c erase 0177
                 kill ^u
   ek            erase and kill characters to their default values
   evenp         same as parenb -parodd cs7
   -evenp        same as -parenb cs8
   eof CHAR      CHAR will send an end of file (terminate the input)
   eol CHAR      CHAR will end the line
   erase CHAR    CHAR will erase the last character typed
   intr CHAR     CHAR will send an interrupt signal
   kill CHAR     CHAR will erase the current line
   ispeed N      set the input speed to N
   litout        same as -parenb -istrip -opost cs8
   -litout       same as parenb istrip opost cs7
   min N         with -icanon, set N characters minimum for a completed read
   ospeed N      set the output speed to N
   nl            same as %s
   -nl           same as %s
   oddp          same as parenb parodd cs7
   -oddp         same as -parenb cs8
   [-]parity     same as [-]evenp
   pass8         same as -parenb -istrip cs8
   -pass8        same as parenb istrip cs7
   quit CHAR     CHAR will send a quit signal
   raw           same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip
                 -inlcr -igncr -icrnl -ixon -ixoff -icanon -opost
                 -isig%s min 1 time 0
   -raw          same as cooked
   rows N        tell the kernel that the terminal has N rows
   size          print the number of rows and columns according to the kernel
   sane          same as cread -ignbrk brkint -inlcr -igncr icrnl
                 icanon iexten echo echoe echok -echonl -noflsh
                 %s
                 %s
                 %s,
                 all special characters to their default values
   speed         print the terminal speed
   time N        with -icanon, set read timeout of N tenths of a second
   start CHAR    CHAR will restart the output after stopping it
   stop CHAR     CHAR will stop the output
   susp CHAR     CHAR will send a terminal stop signal
  %%      a single %
  %b      ARGUMENT as a string with '\' escapes interpreted,
          except that octal escapes should have a leading 0 like \0NNN
  %q      ARGUMENT is printed in a format that can be reused as shell input,
          escaping non-printable characters with the POSIX $'' syntax

and all C format specifications ending with one of diouxXfeEgGcs, with
ARGUMENTs converted to proper type first.  Variable widths are handled.
  %A   locale's full weekday name (e.g., Sunday)
  %b   locale's abbreviated month name (e.g., Jan)
  %B   locale's full month name (e.g., January)
  %c   locale's date and time (e.g., Thu Mar  3 23:05:25 2005)
  %C   century; like %Y, except omit last two digits (e.g., 20)
  %d   day of month (e.g., 01)
  %D   date (ambiguous); same as %m/%d/%y
  %e   day of month, space padded; same as %_d
  %F   full date; like %+4Y-%m-%d
  %g   last two digits of year of ISO week number (ambiguous; 00-99); see %G
  %G   year of ISO week number; normally useful only with %V
  %S   second (00..60)
  %t   a tab
  %T   time; same as %H:%M:%S
  %u   day of week (1..7); 1 is Monday
  %U   week number of year, with Sunday as first day of week (00..53)
  %V   ISO week number, with Monday as first day of week (01..53)
  %w   day of week (0..6); 0 is Sunday
  %W   week number of year, with Monday as first day of week (00..53)
  %d   device number in decimal (st_dev)
  %D   device number in hex (st_dev)
  %Hd  major device number in decimal
  %Ld  minor device number in decimal
  %f   raw mode in hex
  %F   file type
  %g   group ID of owner
  %G   group name of owner
  %h   number of hard links
  %i   inode number
  %m   mount point
  %n   file name
  %N   quoted file name with dereference if symbolic link
  %o   optimal I/O transfer size hint
  %s   total size, in bytes
  %r   device type in decimal (st_rdev)
  %R   device type in hex (st_rdev)
  %Hr  major device type in decimal, for character/block device special files
  %Lr  minor device type in decimal, for character/block device special files
  %t   major device type in hex, for character/block device special files
  %T   minor device type in hex, for character/block device special files
  %h   same as %b
  %H   hour (00..23)
  %I   hour (01..12)
  %j   day of year (001..366)
  %i   file system ID in hex
  %l   maximum length of filenames
  %n   file name
  %s   block size (for faster transfers)
  %S   fundamental block size (for block counts)
  %t   file system type in hex
  %T   file system type in human readable form
  %k   hour, space padded ( 0..23); same as %_H
  %l   hour, space padded ( 1..12); same as %_I
  %m   month (01..12)
  %M   minute (00..59)
  %n   a newline
  %N   nanoseconds (000000000..999999999)
  %p   locale's equivalent of either AM or PM; blank if not known
  %P   like %p, but lower case
  %q   quarter of year (1..4)
  %r   locale's 12-hour clock time (e.g., 11:11:04 PM)
  %R   24-hour hour and minute; same as %H:%M
  %s   seconds since the Epoch (1970-01-01 00:00 UTC)
  %u   user ID of owner
  %U   user name of owner
  %w   time of file birth, human-readable; - if unknown
  %W   time of file birth, seconds since Epoch; 0 if unknown
  %x   time of last access, human-readable
  %X   time of last access, seconds since Epoch
  %y   time of last data modification, human-readable
  %Y   time of last data modification, seconds since Epoch
  %z   time of last status change, human-readable
  %Z   time of last status change, seconds since Epoch

  %x   locale's date (can be ambiguous; e.g., 12/31/99)
  %X   locale's time representation (e.g., 23:13:48)
  %y   last two digits of year (ambiguous; 00..99)
  %Y   year
  %z   +hhmm numeric time zone (e.g., -0400)
  %:z  +hh:mm numeric time zone (e.g., -04:00)
  %::z  +hh:mm:ss numeric time zone (e.g., -04:00:00)
  %:::z  numeric time zone with : to necessary precision (e.g., -04, +05:30)
  %Z   alphabetic time zone abbreviation (e.g., EDT)

By default, date pads numeric fields with zeroes.
  + TOKEN                    interpret TOKEN as a string, even if it is a
                               keyword like 'match' or an operator like '/'

  ( EXPRESSION )             value of EXPRESSION
  - +FORMAT (e.g., +%H:%M) for a 'date'-style format
  -1
         list one file per line
  -1     suppress column 1 (lines unique to FILE1)
  -2     suppress column 2 (lines unique to FILE2)
  -3     suppress column 3 (lines that appear in both files)
  -A, --almost-all
         do not list implied . and ..
  -A, --auto-reference           output automatically generated references
  -A, --show-all           equivalent to -vET
  -C
         list entries by columns
  -C, --check=quiet, --check=silent
         like -c, but do not report first bad line
  -C, --line-bytes=SIZE
         put at most SIZE bytes of records per output file
  -D
         print all duplicate lines
  -D, --dired
         generate output designed for Emacs' dired mode
  -E, --canonicalize           all but the last component must exist (default)
  -E, --show-ends          display $ or ^M$ at end of each line
  -F
         same as --follow=name --retry
  -F, --classify[=WHEN]
         append indicator (one of */=>@|) to entries WHEN
  -F, --file=DEVICE  open and use DEVICE instead of standard input
  -F, --flag-truncation=STRING   use STRING for flagging line truncations.
                                 The default is '/'
  -G FILE     FILE exists and is owned by the effective group ID
  -G, --groups
         print all group IDs
  -G, --traditional              behave more like System V 'ptx'
  -H
         equivalent to --dereference-args (-D)
  -H
         follow command-line symbolic links in SOURCE
  -H, --heading     print line of column headings
  -H, --si
         print sizes in powers of 1000 (e.g., 1.1G)
  -I, --ignore=PATTERN
         do not list implied entries matching shell PATTERN
  -L FILE     FILE exists and is a symbolic link (same as -h)
  -L, --dereference
         always follow symbolic links in SOURCE
  -L, --dereference
         dereference all symbolic links
  -L, --dereference
         follow links
  -L, --logical
         dereference TARGETs that are symbolic links
  -L, --logical                resolve '..' components before symlinks
  -L, --max-line-length
         print the maximum display width
  -M, --macro-name=STRING        macro name to use instead of 'xx'
  -M, --month-sort
         compare (unknown) < 'JAN' < ... < 'DEC'
  -N FILE     FILE exists and has been modified since it was last read
  -N, --literal
         print entry names without quoting
  -N, --read-bytes=BYTES
         limit dump to BYTES input bytes
  -O FILE     FILE exists and is owned by the effective user ID
  -O, --format=roff              generate output as roff directives
  -P
         do not traverse any symbolic links

  -P     check for empty names and leading "-"
  -P, --no-dereference
         don't follow any symbolic links (this is the default)
  -P, --no-dereference
         never follow symbolic links in SOURCE
  -P, --physical
         make hard links directly to symbolic links
  -P, --physical               resolve symlinks as encountered (default)
  -R, --random-sort
         shuffle, but group identical keys.  See also shuf(1)
  -R, --recursive
         change files and directories recursively
  -R, --recursive
         list subdirectories recursively
  -R, --recursive
         operate on files and directories recursively
  -R, --right-side-refs          put references at right, not counted in -w
  -R, -r, --recursive
         copy directories recursively
  -S FILE     FILE exists and is a socket
  -S, --buffer-size=SIZE
         use SIZE for main memory buffer
  -S, --sentence-regexp=REGEXP   for end of lines or end of sentences
  -S, --separate-dirs
         for directories do not include size of subdirectories
  -S, --suffix=SUFFIX
         override the usual backup suffix
  -T, --format=tex               generate output as TeX directives
  -T, --no-target-directory
         treat DEST as a normal file
  -T, --no-target-directory
         treat LINK_NAME as a normal file always
  -T, --print-type
         print file system type
  -T, --show-tabs          display TAB characters as ^I
  -T, --tabsize=COLS
         assume tab stops at each COLS instead of 8
  -T, --temporary-directory=DIR
         use DIR for temporaries, not $TMPDIR or %s;
         multiple options specify multiple directories
  -T, -w, --mesg    add user's message status as +, - or ?
  -V, --version-sort
         natural sort of (version) numbers within text
  -W, --word-regexp=REGEXP       use REGEXP to match each keyword
  -X
         sort alphabetically by entry extension
  -X, --exclude-from=FILE
         exclude files that match any pattern in FILE
  -Z
         set SELinux security context of destination file to default type
  -Z
         set the SELinux security context to default type
  -Z, --context
         print any security context of each file
  -Z, --context
         print only the security context of the process
  -Z, --context
         set SELinux security context of destination file to default type
  -a
         change only the access time
  -a
         ignore, for compatibility with other versions
  -a   same as -t a,  select named characters, ignoring high-order bit
  -a, --all
         convert all blanks, instead of just initial blanks
  -a, --all
         do not ignore entries starting with .
  -a, --all
         include pseudo, duplicate, inaccessible file systems
  -a, --all
         write counts for all files, not just directories
  -a, --all          print all current settings in human-readable form
  -a, --all         same as -b -d --login -p -r -t -T -u
  -a, --append
         append to the given FILEs, do not overwrite
  -a, --archive
         same as -dR --preserve=all
  -a, --multiple
         support multiple arguments and treat each as a NAME
  -a, --suffix-length=N
         generate suffixes of length N (default %d)
  -b
         like --backup but does not accept an argument
  -b     omit the user's home directory and shell in long format
  -b   same as -t o1, select octal bytes
  -b FILE     FILE exists and is block special
  -b, --before             attach the separator before instead of after
  -b, --binary
         read in binary mode
  -b, --binary
         read in binary mode (default unless reading tty stdin)
  -b, --body-numbering=STYLE      use STYLE for numbering body lines
  -b, --boot        time of last system boot
  -b, --break-file=FILE          word break characters in this FILE
  -b, --bytes
         count bytes rather than columns
  -b, --bytes
         equivalent to '--apparent-size --block-size=1'
  -b, --bytes=LIST
         select only these bytes
  -b, --bytes=SIZE
         put SIZE bytes per output file
  -b, --escape
         print C-style escapes for nongraphic characters
  -b, --ignore-leading-blanks
         ignore leading blanks when finding sort keys in each line
  -b, --number-nonblank    number nonempty output lines, overrides -n
  -b, --suffix-format=FORMAT
         use sprintf FORMAT instead of %02d
  -c
         (ignored)
  -c   same as -t c,  select printable characters or backslash escapes
  -c FILE     FILE exists and is character special
  -c, --bytes
         print the byte counts
  -c, --changes
         like verbose but report only when a change is made
  -c, --characters
         count characters rather than columns
  -c, --characters=LIST
         select only these characters
  -c, --check
         read checksums from the FILEs and check them
  -c, --check, --check=diagnose-first
         check for sorted input; do not sort
  -c, --compute      compute process transition context before modifying
  -c, --count
         prefix lines by the number of occurrences
  -c, --crown-margin
         preserve indentation of first two lines
  -c, --no-create
         do not create any files
  -c, --no-create        do not create any files
  -c, --total
         produce a grand total
  -d
         same as --no-dereference --preserve=links
  -d
         use numeric suffixes starting at 0, not alphabetic
  -d   same as -t u2, select unsigned decimal 2-byte units
  -d FILE     FILE exists and is a directory
  -d, --data             sync only file data, no unneeded metadata
  -d, --date=STRING
         parse STRING and use it instead of current time
  -d, --dead        print dead processes
  -d, --decode
         decode data
  -d, --delete
         delete characters in ARRAY1, do not translate
  -d, --delimiter=DELIM
         use DELIM instead of TAB for field delimiter
  -d, --delimiter=X
         use X instead of whitespace for field delimiter
  -d, --dictionary-order
         consider only blanks and alphanumeric characters
  -d, --dir
         remove empty directories
  -d, --directory
         create a directory, not a file
  -d, --directory
         list directories themselves, not their contents
  -d, --repeated
         only print duplicate lines, one for each group
  -d, --section-delimiter=CC      use CC for logical page delimiters
  -e                       equivalent to -vE
  -e FILE     FILE exists
  -e, --canonicalize-existing  all components of the path must exist
  -e, --echo                treat each ARG as an input line
  -e, --elide-empty-files
         do not generate empty output files with '-n'
  -e, --error=MODE   adjust standard error stream buffering
  -f
         (ignored)
  -f
         same as -a -U
  -f     omit the line of column headings in short format
  -f   same as -t fF, select floats
  -f FILE     FILE exists and is a regular file
  -f, --file-system
         display file system status instead of file status
  -f, --file-system      sync the file systems that contain the files
  -f, --footer-numbering=STYLE    use STYLE for numbering footer lines
  -f, --force
         change permissions to allow writing if necessary
  -f, --force
         do not prompt before overwriting
  -f, --force
         if an existing destination file cannot be opened, remove it and try
         again (this option is ignored when the -n option is also used)
  -f, --force
         ignore nonexistent files and arguments, never prompt
  -f, --force
         remove existing destination files
  -f, --format=FORMAT
         use printf style floating-point FORMAT
  -f, --ignore-case
         fold lower case to upper case characters
  -f, --ignore-case              fold lower case to upper case for sorting
  -f, --prefix=PREFIX
         use PREFIX instead of 'xx'
  -f, --silent, --quiet
         suppress most error messages
  -g FILE     FILE exists and is set-group-ID
  -g, --gap-size=NUMBER          gap size in columns between output fields
  -g, --general-numeric-sort
         compare according to general numerical value
  -g, --goal=WIDTH
         goal width (default of 93% of width)
  -g, --group
         print only the effective group ID
  -g, --group=GROUP
         set group ownership, instead of process' current group
  -g, --save         print all current settings in a stty-readable form
  -h     omit the user's project file in long format
  -h FILE     FILE exists and is a symbolic link (same as -L)
  -h, --header-numbering=STYLE    use STYLE for numbering header lines
  -h, --human-numeric-sort
         compare human readable numbers (e.g., 2K 1G)
  -h, --human-readable
         print sizes in human readable format (e.g., 1K 234M 2G)
  -h, --human-readable
         print sizes in powers of 1024 (e.g., 1023M)
  -h, --human-readable
         with -l and -s, print sizes like 1K 234M 2G etc.
  -h, --no-dereference
         affect each symbolic link, rather than the referent
  -h, --no-dereference
         affect symbolic links instead of any referenced file
  -h, --no-dereference
         affect symbolic links instead of any referenced file;
         useful only on systems that can change the ownership of a symlink
  -i
         prompt before every removal
  -i     omit the user's full name and remote host in short format
  -i   same as -t dI, select decimal ints
  -i, --hardware-platform  print the hardware platform (non-portable)
  -i, --ignore-case
         ignore differences in case when comparing
  -i, --ignore-case
         ignore differences in case when comparing fields
  -i, --ignore-environment
         start with an empty environment
  -i, --ignore-file=FILE         read ignore word list from FILE
  -i, --ignore-garbage
         when decoding, ignore non-alphabet characters
  -i, --ignore-interrupts
         ignore interrupt signals
  -i, --ignore-nonprinting
         consider only printable characters
  -i, --initial
         do not convert tabs after non blanks
  -i, --inode
         print the index number of each file
  -i, --inodes
         list inode information instead of block usage
  -i, --input-range=LO-HI   treat each number LO through HI as an input line
  -i, --input=MODE   adjust standard input stream buffering
  -i, --interactive
         prompt before overwrite
  -i, --interactive
         prompt before overwrite (overrides a previous -n option)
  -i, --interactive
         prompt whether to remove destinations
  -i, --line-increment=NUMBER     line number increment at each line
  -j, --skip-bytes=BYTES
         skip BYTES input bytes first
  -k FILE     FILE exists and has its sticky bit set
  -k, --keep-files
         do not remove output files on errors
  -k, --key=KEYDEF
         sort via a key; KEYDEF gives location and type
  -l     produce long format output for the specified USERs
  -l   same as -t dL, select decimal longs
  -l, --count-links
         count sizes many times if hard linked
  -l, --join-blank-lines=NUMBER   group of NUMBER empty lines counted as one
  -l, --length=BITS
         digest length in bits; must not exceed the max size
         and must be a multiple of 8 for blake2b;
         must be 224, 256, 384, or 512 for sha2 or sha3
  -l, --lines
         print the newline counts
  -l, --lines=NUMBER
         put NUMBER lines/records per output file
  -l, --link
         hard link files instead of copying
  -l, --list
         list signal names, or convert signal names to/from numbers
  -l, --local
         limit listing to local file systems
  -l, --login       print system login processes
  -l, --range=RANGE
         set range RANGE in the target security context
  -l, --range=RANGE  levelrange
  -m
         change only the modification time
  -m
         like --block-size=1M
  -m                only hostname and user associated with standard input
  -m, --canonicalize-missing   no path components need exist or be a directory
  -m, --chars
         print the character counts
  -m, --machine            print the machine hardware name
  -m, --merge
         merge already sorted files; do not sort
  -m, --mode=MODE
         set file mode (as in chmod), not a=rwx - umask
  -m, --mode=MODE
         set permission mode (as in chmod), instead of rwxr-xr-x
  -n
         (ignored)
  -n, --adjustment=N
         add integer N to the niceness (default 10)
  -n, --digits=DIGITS
         use specified number of digits instead of 2
  -n, --head-count=COUNT    output at most COUNT lines
  -n, --iterations=N
         overwrite N times instead of the default (%d)
  -n, --name
         print a name instead of a number, for -u,-g,-G
  -n, --no-clobber
         (deprecated) silently skip existing files.  See also --update
  -n, --no-clobber
         do not overwrite an existing file
  -n, --no-newline
         do not output the trailing delimiter
  -n, --nodename           print the network node hostname
  -n, --number             number all output lines
  -n, --number-format=FORMAT      insert line numbers according to FORMAT
  -n, --number=CHUNKS
         generate CHUNKS output files; see explanation below
  -n, --numeric-sort
         compare according to string numerical value;
         see full documentation for supported strings
  -n, --numeric-uid-gid
         like -l, but list numeric user and group IDs
  -o
         like -l, but do not list group information
  -o   same as -t o2, select octal 2-byte units
  -o, --io-blocks        treat SIZE as number of IO blocks instead of bytes
  -o, --only-file=FILE           read only word list from this FILE
  -o, --operating-system   print the operating system
  -o, --output=FILE
         write result to FILE instead of standard output
  -o, --output=FILE         write result to FILE instead of standard output
  -o, --output=MODE  adjust standard output stream buffering
  -o, --owner=OWNER
         set ownership (super-user only)
  -p
         operate in a more appropriate MODE with pipes
  -p
         same as --preserve=mode,ownership,timestamps
  -p     check for most POSIX systems
  -p     omit the user's plan file in long format
  -p FILE     FILE exists and is a named pipe
  -p, --no-renumber               do not reset line numbers for each section
  -p, --print-database
         output defaults
  -p, --process     print active processes spawned by init
  -p, --processor          print the processor type (non-portable)
  -q     omit the user's full name, remote host and idle time in short format
  -q, --count       all login names and number of users logged on
  -q, --quiet
  -q, --quiet
         suppress diagnostics about file/dir-creation failure
  -q, --quiet                  suppress most error messages
  -r
         use BSD sum algorithm (the default), use 1K blocks
  -r FILE     FILE exists and the user has read access
  -r, --kernel-release     print the kernel release
  -r, --real
         print the real ID instead of the effective ID, with -u,-g,-G
  -r, --reference=FILE
         use this file's times instead of current time
  -r, --reference=RFILE  base size on RFILE
  -r, --references               first field of each line is a reference
  -r, --regex              interpret the separator as a regular expression
  -r, --relative
         with -s, create links relative to link location
  -r, --repeat              output lines can be repeated
  -r, --reverse
         reverse order while sorting
  -r, --reverse
         reverse the result of comparisons
  -r, --role=ROLE
         set role ROLE in the target security context
  -r, --role=ROLE    role
  -r, --runlevel    print current runlevel
  -s     do short format output, this is the default
  -s   same as -t d2, select decimal 2-byte units
  -s FILE     FILE exists and has a size greater than zero
  -s, --kernel-name        print the kernel name
  -s, --number-separator=STRING   add STRING after (possible) line number
  -s, --only-delimited
         do not print lines not containing delimiters
  -s, --separator=STRING
         use STRING to separate numbers (default: \n)
  -s, --separator=STRING   use STRING as the separator instead of newline
  -s, --set=STRING
         set time described by STRING
  -s, --short       print only name, line, and time (default)
  -s, --size
         print the allocated size of each file, in blocks
  -s, --size=N
         shred this many bytes (suffixes like K, M, G accepted)
  -s, --size=SIZE        set or adjust the file size by SIZE bytes
  -s, --skip-chars=N
         avoid comparing the first N characters
  -s, --split-only
         split long lines, but do not refill
  -s, --squeeze-blank      suppress repeated empty output lines
  -s, --stable
         stabilize sort by disabling last-resort comparison
  -s, --strip
         strip symbol tables
  -s, --strip, --no-symlinks   don't expand symlinks
  -s, --suffix=SUFFIX
         remove a trailing SUFFIX; implies -a
  -s, --summarize
         display only a total for each argument
  -s, --symbolic
         make symbolic links instead of hard links
  -s, --symbolic-link
         make symbolic links instead of copying
  -s, --sysv
         use System V sum algorithm, use 512 bytes blocks
  -t
         sort by time, newest first; see --time
  -t                       equivalent to -vT
  -t FD       file descriptor FD is opened on a terminal
  -t, --field-separator=SEP
         use SEP instead of non-blank to blank transition
  -t, --format=TYPE
         select output format or formats
  -t, --table
         print a table of signal information
  -t, --tabs=N
         have tabs N characters apart instead of 8 (enables -a)
  -t, --tabs=N
         have tabs N characters apart, not 8
  -t, --tagged-paragraph
         indentation of first line different from second
  -t, --target-directory=DIRECTORY
         copy all SOURCE arguments into DIRECTORY
  -t, --target-directory=DIRECTORY
         move all SOURCE arguments into DIRECTORY
  -t, --terse
         print the information in terse form
  -t, --text
         read in text mode (default if reading tty stdin)
  -t, --text
         read in text mode (default)
  -t, --time        print last system clock change
  -t, --truncate-set1
         first truncate ARRAY1 to length of ARRAY2
  -t, --type=TYPE
         limit listing to file systems of type TYPE
  -t, --type=TYPE
         set type TYPE in the target security context
  -t, --type=TYPE    type (for same role as parent)
  -u
         deallocate and remove file after overwriting
  -u                       (ignored)
  -u FILE     FILE exists and its set-user-ID bit is set
  -u, --dry-run
         do not create anything; merely print a name (unsafe)
  -u, --unbuffered
         immediately copy input to output with '-n r/...'
  -u, --uniform-spacing
         one space between words, two after sentences
  -u, --unique
         only print unique lines
  -u, --unique
         output only the first of lines with equal keys;
         with -c, check for strict ordering
  -u, --unset=NAME
         remove variable from the environment
  -u, --user
         print only the effective user ID
  -u, --user=USER
         set user USER in the target security context
  -u, --user=USER    user identity
  -v
         (ignored)
  -v, --kernel-version     print the kernel version
  -v, --output-duplicates
         do not use * to mark line suppression
  -v, --show-nonprinting   use ^ and M- notation, except for LFD and TAB
  -v, --starting-line-number=NUMBER  first line number for each section
  -v, --verbose
         always output headers giving file names
  -v, --verbose
         always print headers giving file names
  -v, --verbose
         explain what is being done
  -v, --verbose
         output a diagnostic for every file processed
  -v, --verbose
         print a message for each created directory
  -v, --verbose
         print name of each linked file
  -w     omit the user's full name in short format
  -w FILE     FILE exists and the user has write access
  -w, --equal-width
         equalize width by padding with leading zeroes
  -w, --number-width=NUMBER       use NUMBER columns for line numbers
  -w, --warn
         warn about improperly formatted checksum lines
  -w, --width=COLS
         set output width to COLS.  0 means no limit
  -w, --width=NUMBER             output width in columns, reference excluded
  -w, --width=WIDTH
         maximum line width (default of 75 columns)
  -w, --width=WIDTH
         use WIDTH columns instead of 80
  -w, --words
         print the word counts
  -w, --wrap=COLS
         wrap encoded lines after COLS character (default 76).
         Use 0 to disable line wrapping
  -x
         list entries by lines instead of by columns
  -x
         use hex suffixes starting at 0, not alphabetic
  -x   same as -t x2, select hexadecimal 2-byte units
  -x FILE     FILE exists and the user has execute (or search) access
  -x, --exclude-type=TYPE
         limit listing to file systems not of type TYPE
  -x, --one-file-system
         skip directories on different file systems
  -x, --one-file-system
         stay on this file system
  -z, --elide-empty-files
         suppress empty output files
  -z, --zero
         add a final overwrite with zeros to hide shredding
  -z, --zero
         end each output line with NUL, not newline
  -z, --zero
         end each output line with NUL, not newline,
         and disable file name escaping
  -z, --zero                   end each output line with NUL, not newline
  -z, --zero-terminated
         line delimiter is NUL, not newline
  -z, --zero-terminated     line delimiter is NUL, not newline
  CONTEXT            Complete security context
  FILE1 -ef FILE2   FILE1 and FILE2 have the same device and inode numbers
  FILE1 -nt FILE2   FILE1 is newer (modification date) than FILE2
  FILE1 -ot FILE2   FILE1 is older than FILE2
  File: "%n"
    ID: %-8i Namelen: %-7l Type: %T
Block size: %-10s Fundamental block size: %S
Blocks: Total: %-10b Free: %-10f Available: %a
Inodes: Total: %-10c Free: %d
  File: %N
  Size: %-10s	Blocks: %-10b IO Block: %-6o %F
  INTEGER1 -eq INTEGER2   INTEGER1 is equal to INTEGER2
  INTEGER1 -ge INTEGER2   INTEGER1 is greater than or equal to INTEGER2
  INTEGER1 -gt INTEGER2   INTEGER1 is greater than INTEGER2
  INTEGER1 -le INTEGER2   INTEGER1 is less than or equal to INTEGER2
  INTEGER1 -lt INTEGER2   INTEGER1 is less than INTEGER2
  INTEGER1 -ne INTEGER2   INTEGER1 is not equal to INTEGER2
  Processes in
an uninterruptible sleep state also contribute to the load average.
  [:graph:]       all printable characters, not including space
  [:lower:]       all lower case letters
  [:print:]       all printable characters, including space
  [:punct:]       all punctuation characters
  [:space:]       all horizontal or vertical whitespace
  [:upper:]       all upper case letters
  [:xdigit:]      all hexadecimal digits
  [=CHAR=]        all characters which are equivalent to CHAR
  \0NNN   byte with octal value NNN (1 to 3 digits)
  \xHH    byte with hexadecimal value HH (1 to 2 digits)
  \NNN    byte with octal value NNN (1 to 3 digits)
  \xHH    byte with hexadecimal value HH (1 to 2 digits)
  \uHHHH  Unicode (ISO/IEC 10646) character with hex value HHHH (4 digits)
  \UHHHHHHHH  Unicode character with hex value HHHHHHHH (8 digits)
  \\      backslash
  \a      alert (BEL)
  \b      backspace
  \c      produce no further output
  \e      escape
  \f      form feed
  \n      new line
  \r      carriage return
  \t      horizontal tab
  \v      vertical tab
  \v              vertical tab
  CHAR1-CHAR2     all characters from CHAR1 to CHAR2 in ascending order
  [CHAR*]         in ARRAY2, copies of CHAR until length of ARRAY1
  [CHAR*REPEAT]   REPEAT copies of CHAR, REPEAT octal if starting with 0
  [:alnum:]       all letters and digits
  [:alpha:]       all letters
  [:blank:]       all horizontal whitespace
  [:cntrl:]       all control characters
  [:digit:]       all digits
  ascii     from EBCDIC to ASCII
  ebcdic    from ASCII to EBCDIC
  ibm       from ASCII to alternate EBCDIC
  block     pad newline-terminated records with spaces to cbs-size
  unblock   replace trailing spaces in cbs-size records with newline
  lcase     change upper case to lower case
  ucase     change lower case to upper case
  sparse    try to seek rather than write all-NUL output blocks
  swab      swap every pair of input bytes
  sync      pad every input block with NULs to ibs-size; when used
            with block or unblock, pad with spaces rather than NULs
  auto       accept optional single/two letter suffix:
               1K = 1000, 1k = 1000,
               1Ki = 1024,
               1M = 1000000,
               1Mi = 1048576,
  binary    use binary I/O for data
  bs=BYTES        read and write up to BYTES bytes at a time (default: 512);
                  overrides ibs and obs
  cbs=BYTES       convert BYTES bytes at a time
  cio       use concurrent I/O for data
  conv=CONVS      convert the file as per the comma separated symbol list
  count=N         copy only N input blocks
  d[SIZE]    signed decimal, SIZE bytes per integer
  f[SIZE]    floating point, SIZE bytes per float
  o[SIZE]    octal, SIZE bytes per integer
  u[SIZE]    unsigned decimal, SIZE bytes per integer
  x[SIZE]    hexadecimal, SIZE bytes per integer
  direct    use direct I/O for data
  directory  fail unless a directory
  dsync     use synchronized I/O for data
  excl      fail if the output file already exists
  nocreat   do not create the output file
  notrunc   do not truncate the output file
  noerror   continue after read errors
  fdatasync  physically write output file data before finishing
  fsync     likewise, but also write metadata
  fullblock  accumulate full blocks of input (iflag only)
  ibs=BYTES       read up to BYTES bytes at a time (default: 512)
  iec        accept optional single letter suffix:
               1K = 1024, 1k = 1024,
               1M = 1048576,
               ...
  iec-i      accept optional two-letter suffix:
               1Ki = 1024, 1ki = 1024,
               1Mi = 1048576,
               ...
  if=FILE         read from FILE instead of standard input
  iflag=FLAGS     read as per the comma separated symbol list
  noatime   do not update access time
  nocache   Request to drop cache.  See also oflag=sync
  noctty    do not assign controlling terminal from file
  nofollow  do not follow symlinks
  nolinks   fail if multiply-linked
  nonblock  use non-blocking I/O
  none       no auto-scaling is done; suffixes will trigger an error
  none, off       never make backups (even if --backup is given)
  numbered, t     make numbered backups
  existing, nil   numbered if numbered backups exist, simple otherwise
  simple, never   always make simple backups
  obs=BYTES       write BYTES bytes at a time (default: 512)
  of=FILE         write to FILE instead of standard output
  oflag=FLAGS     write as per the comma separated symbol list
  si         accept optional single letter suffix:
               1k = 1000, 1K = 1000,
               1M = 1000000,
               ...
  status=LEVEL    The LEVEL of information to print to standard error;
                  'none' suppresses everything but error messages,
                  'noxfer' suppresses the final transfer statistics,
                  'progress' shows periodic transfer statistics
  sync      likewise, but also for metadata
  text      use text I/O for data
 %H:%M:%S   (backup: %s) * [-]LCASE      same as [-]lcase
 * [-]cdtrdsr    enable DTR/DSR handshaking
 * [-]cmspar     use "stick" (mark/space) parity
 * [-]crtscts    enable RTS/CTS handshaking
 * [-]ctlecho    echo control characters in hat notation ('^c')
 * [-]decctlq    same as [-]ixany
 * [-]drain      wait for transmission before applying settings (%s by default)
 * [-]echoctl    same as [-]ctlecho
 * [-]echoke     same as [-]crtkill
 * [-]echoprt    echo erased characters backward, between '\' and '/'
 * [-]extproc    enable "LINEMODE"; useful with high latency links
 * [-]flusho     discard output
 * [-]imaxbel    beep and do not flush a full input buffer on a character
 * [-]iuclc      translate uppercase characters to lowercase
 * [-]iutf8      assume input characters are UTF-8 encoded
 * [-]ixany      let any character restart output, not only start character
 * [-]lcase      same as xcase iuclc olcuc
 * [-]ocrnl      translate carriage return to newline
 * [-]ofdel      use delete characters for fill instead of NUL characters
 * [-]ofill      use fill (padding) characters instead of timing for delays
 * [-]olcuc      translate lowercase characters to uppercase
 * [-]onlcr      translate newline to carriage return-newline
 * [-]onlret     newline performs a carriage return
 * [-]onocr      do not print carriage returns in the first column
 * [-]prterase   same as [-]echoprt
 * [-]tostop     stop background jobs that try to write to the terminal
 * [-]xcase      with icanon, escape with '\' for uppercase characters
 * bsN           backspace delay style, N in [0..1]
 * crN           carriage return delay style, N in [0..3]
 * crtkill       kill all line by obeying the echoprt and echoe settings
 * -crtkill      kill all line by obeying the echoctl and echok settings
 * discard CHAR  CHAR will toggle discarding of output
 * dsusp CHAR    CHAR will send a terminal stop signal once input flushed
 * eol2 CHAR     alternate CHAR for ending the line
 * ffN           form feed delay style, N in [0..1]
 * line N        use line discipline N
 * lnext CHAR    CHAR will enter the next character quoted
 * nlN           newline delay style, N in [0..1]
 * rprnt CHAR    CHAR will redraw the current line
 * status CHAR   CHAR will send an info signal
 * swtch CHAR    CHAR will switch to a different shell layer
 * tabN          horizontal tab delay style, N in [0..3]
 * tabs          same as tab0
 * -tabs         same as tab3
 * vtN           vertical tab delay style, N in [0..1]
 * werase CHAR   CHAR will erase the last word typed
 ??:????   TTY context=%s egid=%ju euid=%ju gid=%ju groups= old  on repetition %jd
% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y, R, Q.

*** WARNING ***
The locale specified by the environment affects sort order.
Set LC_ALL=C to get the traditional sort order that uses
native byte values.
%.*s: invalid conversion specification%b %e  %Y%b %e %H:%M%jd byte copied, %s, %s%jd bytes copied, %s, %s%jd bytes (%s) copied, %s, %s%jd bytes (%s, %s) copied, %s, %s%jd truncated record
%jd truncated records
%jd+%jd records in
%jd+%jd records out
%ju-%s%s (for regexp %s)%s -> %s (unbackup)
%s [-d] terminated abnormally%s and %s are the same file%s could not be accessed
%s does not accept -l%s exists but is not a directory%s expected%s expected, found %s%s has appeared;  following new file%s has become accessible%s has become inaccessible%s has been replaced with an untailable file%s%s has been replaced with an untailable remote file%s has been replaced with an untailable symbolic link%s has been replaced;  following new file%s has unknown file type%s has unusable, apparently negative size%s home page: <%s>
%s is not a valid positive integer%s may be used only on a SELinux kernel%s was replaced%s was specified but %s was not%s would overwrite input; aborting%s%s argument '%s' too large%s-%s%s: %ju: improperly formatted %s checksum line%s: %s: line number out of range%s: %s: match not found%s: %s:%ju: disorder: %s: '}' is required in repeat count%s: binary operator expected%s: can make relative symbolic links only in current directory%s: cannot change nonblocking mode%s: cannot determine file size%s: cannot follow end of this type of file%s%s: cannot overwrite directory%s: cannot rewind%s: cannot seek%s: cannot seek to end-relative offset %jd%s: cannot seek to offset %jd%s: cannot seek to relative offset %jd%s: cannot shred append-only file descriptor%s: cannot skip%s: cannot skip to specified offset%s: closing delimiter '%c' missing%s: couldn't reset non-blocking mode%s: descend into directory %s? %s: descend into write-protected directory %s? %s: end of file%s: equivalence class operand must be a single character%s: error setting %s%s: error truncating%s: error writing at offset %ju%s: expected a numeric value%s: failed to close%s: failed to open for writing%s: failed to remove%s: fcntl failed%s: fdatasync failed%s: file has negative size%s: file has shrunk too much%s: file too large%s: file truncated%s: fstat failed%s: fsync failed%s: hard link not allowed for directory%s: input contains a loop:%s: input contains an odd number of tokens%s: input file is output file%s: integer expected after delimiter%s: invalid count at start of %s%s: invalid directive%s: invalid field specification %s%s: invalid file type%s: invalid option -- '%c'
%s: invalid pattern%s: invalid process id%s: invalid regular expression: %s%s: invalid signal%s: invalid start value for hexadecimal suffix%s: invalid start value for numerical suffix%s: line number must be greater than zero%s: line number out of range%s: lseek failed%s: multiple signals specified%s: new permissions are %s, not %s%s: no file was verified%s: no properly formatted checksum lines found%s: no size information for this device%s: no such user%s: not listing already-listed directory%s: option '%s%s' doesn't allow an argument
%s: option '%s%s' is ambiguous
%s: option '%s%s' is ambiguous; possibilities:%s: option '%s%s' requires an argument
%s: option requires an argument -- '%c'
%s: overwrite %s? %s: pass %lu/%lu (%s)...%s: pass %lu/%lu (%s)...%s%s: pass %lu/%lu (%s)...%s/%s %d%%%s: read error%s: remove %ju argument recursively? %s: remove %ju arguments recursively? %s: remove %ju argument? %s: remove %ju arguments? %s: remove %s %s? %s: remove write-protected %s %s? %s: removed%s: removing%s: renamed to %s%s: replace %s, overriding mode %04lo (%s)? %s: replace %s? %s: seek failed%s: too many checksum lines%s: unable to determine maximum file name length%s: unable to perform all requested operations%s: unary operator expected%s: unknown program %s
%s: unrecognized option '%s%s'
%s: unwritable %s (mode %04lo, %s); try anyway? %s: value not completely converted%s: write error%s: write failed%s:%ju: is not sorted: %.*s%s:%lu: invalid zero-length file name%s:%td: invalid line;  missing second token%s:%td: unrecognized keyword %s%s}: integer required between '{' and '}'%td is too large%td user%td users''+' specifier not at start of number: %s'+' specifier only allowed with the last value'-%c' extra characters or invalid number in the argument: %s'-%c': Invalid argument: %s'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument'-N NUMBER' invalid starting line number'-W PAGE_WIDTH' invalid number of characters'-l PAGE_LENGTH' invalid number of lines'-o MARGIN' invalid line offset'-w PAGE_WIDTH' invalid number of characters'/' specifier is mutually exclusive with '+''/' specifier not at start of number: %s'/' specifier only allowed with the last value'\c' must not appear in double-quoted -S string(C),  load average: %.2f--%s argument %s too large--algorithm=%s requires specifying --length 224, 256, 384, or 512--backup is mutually exclusive with -n or --update=none-fail--base64 and --raw are mutually exclusive--check is not supported with --algorithm={bsd,sysv,crc,crc32b}--context (-Z) works only on an SELinux-enabled kernel--context (-Z) works only on an SELinux/SMACK-enabled kernel--data needs at least one argument--dired and --zero are incompatible--filter does not process a chunk extracted to standard output--format padding overriding --padding--group is mutually exclusive with -c/-d/-D/-u--grouping cannot be combined with --format--header ignored with command-line input--length is only supported with --algorithm blake2b, sha2, or sha3--reflink can be used only with --sparse=auto--tag does not support --text mode--terse --file-system is equivalent to the following FORMAT:
    %s--text mode is only supported with --untagged-R --dereference requires either -H or -L-R -h requires -P-ef does not accept -l-r not specified; omitting directory %s; giving up on this name<internal>???
?????AbortedAccess: %x
Modify: %y
Change: %z
 Birth: %w
Access: (%04a/%10.10A)  Uid: (%5u/%8U)   Gid: (%5g/%8G)
Address family for hostname not supportedAlarm clockAlex DeymoAll requests doneArgument buffer too smallArnold RobbinsAssaf GordonAvailAvailableBad system callBad value for ai_flagsBase%d encode or decode FILE, or standard input, to standard output.
Brian FoxBroken pipeBus errorCOMMENTCPU time limit exceededCall the link function to create a link named FILE2 to an existing FILE1.

Call the unlink function to remove the specified FILE.

CapacityChange the SELinux security context of each FILE to CONTEXT.
With --reference, change the security context of each FILE to that of RFILE.
Change the group of each FILE to GROUP.
With --reference, change the group of each FILE to that of RFILE.

Change the mode of each FILE to MODE.
With --reference, change the mode of each FILE to that of RFILE.

Change the owner and/or group of each FILE to OWNER and/or GROUP.
With --reference, change the owner and group of each FILE to those of RFILE.

Chet RameyChild exitedColin PlumbCompare sorted files FILE1 and FILE2 line by line.
Concatenate FILE(s) to standard output.
Context: %C
ContinuedConvert blanks in each FILE to tabs, writing to standard output.
Convert tabs in each FILE to spaces, writing to standard output.
Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.
Copy a file, converting and formatting according to the operands.

Copy standard input to each FILE, and also to standard output.

Create a temporary file or directory, safely, and print its name.
TEMPLATE must contain at least 3 consecutive 'X's in last component.
If TEMPLATE is not specified, use tmp.XXXXXXXXXX, and --tmpdir is implied.
Create named pipes (FIFOs) with the given NAMEs.
Create the DIRECTORY(ies), if they do not already exist.
Create the special file NAME of the given TYPE.
David M. IhnatDavid MacKenzieDavid MadoreDevice: %Hd,%Ld	Inode: %-10i  Links: %-5h Device type: %Hr,%Lr
Device: %Hd,%Ld	Inode: %-10i  Links: %h
Diagnose invalid or non-portable file names.

Directory: Display file or file system status.
Dmitry V. LevinEMT trapEXITEach range is one of:

  N     N'th byte, character or field, counted from 1
  N-    from N'th byte, character or field, to end of line
  N-M   from N'th to M'th (included) byte, character or field
  -M    from first to M'th (included) byte, character or field
Echo the STRING(s) to standard output.

Eric BlakeExecute the PROGRAM_NAME built-in program with the given PARAMETERS.

Exit with a status code indicating failure.Exit with a status code indicating success.Exit with the status determined by EXPRESSION.

F. PinardFAILEDFAILED open or readFORMAT must be suitable for printing one argument of type 'double';
it defaults to %.PRECf if FIRST, INCREMENT, and LAST are all fixed point
decimal numbers with maximum precision PREC, and to %g otherwise.
Fifos do not have major and minor device numbers.FileFile size limit exceededFiles are created u+rw, and directories u+rwx, minus umask restrictions.
FilesystemFilter adjacent matching lines from INPUT (or standard input),
writing to OUTPUT (or standard output).

With no options, matching lines are merged to the first occurrence.
Floating point exceptionFor each pair of input lines with identical join fields, write a line to
standard output.  The default join field is the first, delimited by blanks.
Full documentation <%s%s>
GROUPGeneral help using GNU software: <%s>
Giuseppe ScrivanoH. Peter AnvinHangupI/O possibleIDLEIFreeIUse%IUsedIan Lance TaylorIdleIf FILE is not specified, use %s.  %s as FILE is common.

If you specify more than one of -i, -f, -n, only the final one takes effect.
Illegal instructionIn real life: In the 1st form, create a link to TARGET with the name LINK_NAME.
In the 2nd form, create a link to TARGET in the current directory.
In the 3rd and 4th forms, create links to each TARGET in DIRECTORY.
Create hard links by default, symbolic links with --symbolic.
By default, each destination (name of new link) should not already exist.
When creating hard links, each TARGET must exist.  Symbolic links
can hold arbitrary text; if later resolved, a relative link is
interpreted in relation to its parent directory.
InfinityInformation requestInodesInterruptInterrupted by a signalInvalid back referenceInvalid character class nameInvalid collation characterInvalid content of \{\}Invalid numberInvalid preceding regular expressionInvalid range endInvalid regular expressionJames YoungmanJay LepreauJim KingdonJim MeyeringJoseph ArceneauxKaveh GhaziKayvan AghaiepourKevin BraunsdorfKilledLINELOGINLicense GPLv3+: GNU GPL version 3 or later <%s>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
List information about the FILEs (the current directory by default).
Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.
LoginLogin name: Mark KettenisMatthew BradburnMemory allocation failureMemory exhaustedMichael MeskesMichael StoneMike HaertelMike ParkerMounted onNAMENameName or service not knownNiels MollerNo address associated with hostnameNo matchNo previous regular expressionNon-recoverable failure in name resolutionOKOnly one string may be given when deleting without squeezing repeats.Ordering options:

Output a permuted index, including context, of the words in the input files.
Output commands to set the LS_COLORS environment variable.

Determine format of output:
Output each NAME with its last non-slash component and trailing slashes
removed; if NAME contains no /'s, output '.' (meaning the current directory).

Output pieces of FILE separated by PATTERN(s) to files 'xx00', 'xx01', ...,
and output byte counts of each piece to standard output.
Output pieces of FILE to PREFIXaa, PREFIXab, ...;
default size is 1000 lines, and default PREFIX is 'x'.
Output platform dependent limits in a format useful for shell scripts.

Output who is currently logged in according to FILE.
If FILE is not specified, use %s.  %s as FILE is common.

Overwrite the specified FILE(s) repeatedly, in order to make it harder
for even very expensive hardware probing to recover the data.
PIDPackaged by %s
Packaged by %s (%s)
Padraig BradyPage %juPaginate or columnate FILE(s) for printing.
Parameter string not correctly encodedPaul EggertPaul RubinPete TerMaatPlan:
Power failurePremature end of regular expressionPrint ARGUMENT(s) according to FORMAT, or execute according to OPTION:

Print NAME with any leading directory components removed.
If specified, also remove a trailing SUFFIX.
Print certain system information.  With no OPTION, same as -s.

Print group memberships for each USERNAME or, if no USERNAME is specified, for
the current process (which may differ if the groups database has changed).
Print information about users who are currently logged in.
Print machine architecture.

Print newline, word, and byte counts for each FILE, and a total line if
more than one FILE is specified.  A word is a nonempty sequence of non white
space delimited by white space characters or by start or end of input.
Print numbers from FIRST to LAST, in steps of INCREMENT.
Print or change terminal characteristics.
Print or check %s (%d-bit) checksums.
Print or check %s checksums.
Print or verify checksums.
By default use the 32 bit CRC algorithm.
Print selected parts of lines from each FILE to standard output.
Print the current time, the length of time the system has been up,
the number of users on the system, and the average number of jobs
in the run queue over the last 1, 5 and 15 minutes.Print the file name of the terminal connected to standard input.

Print the first %d lines of each FILE to standard output.
With more than one FILE, precede each with a header giving the file name.
Print the full filename of the current working directory.

Print the last %d lines of each FILE to standard output.
With more than one FILE, precede each with a header giving the file name.
Print the prime factors of each specified integer NUMBER.  If none
are specified on the command line, read them from standard input.

Print the resolved absolute file name.
Print the user name associated with the current effective user ID.
Same as id -un.

Print the user's login name.

Print user and group information for each specified USER,
or (when USER omitted) for the current process.

Print value of a symbolic link or canonical file name

Processing request in progressProfiling timer expiredProject: Q. Frank XiaQuitRandy SmithReal-time signal %dReformat NUMBER(s), or the numbers from standard input if none are specified.
Reformat each paragraph in the FILE(s), writing to standard output.
The option -WIDTH is an abbreviated form of --width=DIGITS.
Regular expression too bigRemove (unlink) the FILE(s).

Remove the DIRECTORY(ies), if they are empty.

Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
Repeatedly output a line with all specified STRING(s), or 'y'.

Report %s bugs to: %s
Report any translation bugs to <https://translationproject.org/team/>
Report bugs to: %s
Request canceledRequest not canceledResource lostRichard M. StallmanRichard MlynarikRoland HuebnerRoland McGrathRoss PatersonRun COMMAND with an adjusted niceness, which affects process scheduling.
With no COMMAND, print the current niceness.  Niceness values range from
%d (most favorable to the process) to %d (least favorable to the process).
Run COMMAND with root directory set to NEWROOT.

Run COMMAND, ignoring hangup signals.

Run COMMAND, with modified buffering operations for its standard streams.
Run a program in a different SELinux security context.
With neither CONTEXT nor COMMAND, print the current security context.
Russell CokerSamuel NevesScott BartramScott MillerSegmentation faultSend signals to processes, or list signals.
Servname not supported for ai_socktypeSet LC_ALL='C' to work around the problem.Set each NAME to VALUE in the environment and run COMMAND.
Shell: Show information about the file system on which each FILE resides,
or all file systems by default.
Shrink or extend the size of each FILE to the specified size

A FILE argument that does not exist is created.

If a FILE is larger than the specified size, the extra data is lost.
If a FILE is shorter, it is extended and the sparse extended part (hole)
reads as zero bytes.
Simon JosefssonSizeSpecial files require major and minor device numbers.Stack faultStart COMMAND, and kill it if still running after DURATION.
StoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stuart KempSuccessSummarize device usage of the set of FILEs, recursively for directories.
Synchronize cached writes to persistent storage

If one or more files are specified, sync only them,
or their containing file systems.

System errorTIMETemporary failure in name resolutionTerminatedThe following optional flags may follow '%':

  -  (hyphen) do not pad the field
  _  (underscore) pad with spaces
  0  (zero) pad with zeros
  +  pad with zeros, and put '+' before future years with >4 digits
  ^  use upper case if possible
  #  use opposite case if possible
The strings compared were %s and %s.Torbjorn GranlundTrace/breakpoint trapTrailing backslashTranslate, squeeze, and/or delete characters from standard input,
writing to standard output.  STRING1 and STRING2 specify arrays of
characters ARRAY1 and ARRAY2 that control the action.

Try '%s --help' for more information.
Try '%s ./%s' to remove the file %s.
Two strings must be given when both deleting and squeezing repeats.Two strings must be given when translating.TypeUlrich DrepperUnknown errorUnknown signal %dUnknown system errorUnmatched ( or \(Unmatched ) or \)Unmatched [, [^, [:, [., or [=Unmatched \{Update the access and modification times of each FILE to the current time.

A FILE argument that does not exist is created empty, unless -c or -h
is supplied.

A FILE argument string of - is handled specially and causes touch to
change the times of the file associated with standard output.
Urgent I/O conditionUsage: %s
Usage: %s --coreutils-prog=PROGRAM_NAME [PARAMETERS]... 
Usage: %s COMMAND [ARG]...
  or:  %s OPTION
Usage: %s EXPRESSION
  or:  %s OPTION
Usage: %s FILE
  or:  %s OPTION
Usage: %s FILE1 FILE2
  or:  %s OPTION
Usage: %s FORMAT [ARGUMENT]...
  or:  %s OPTION
Usage: %s NAME [SUFFIX]
  or:  %s OPTION... NAME...
Usage: %s NUMBER[SUFFIX]...
  or:  %s OPTION
Pause for NUMBER seconds, where NUMBER is an integer or floating-point.
SUFFIX may be 's','m','h', or 'd', for seconds, minutes, hours, days.
With multiple arguments, pause for the sum of their values.

Usage: %s OPTION... COMMAND
Usage: %s OPTION... FILE...
Usage: %s OPTION... [FILE]...
Usage: %s [-F DEVICE | --file=DEVICE] [SETTING]...
  or:  %s [-F DEVICE | --file=DEVICE] [-a|--all]
  or:  %s [-F DEVICE | --file=DEVICE] [-g|--save]
Usage: %s [-WIDTH] [OPTION]... [FILE]...
Usage: %s [-s SIGNAL | -SIGNAL] PID...
  or:  %s -l [SIGNAL]...
  or:  %s -t [SIGNAL]...
Usage: %s [NAME]
  or:  %s OPTION
Print or set the hostname of the current system.

Usage: %s [OPERAND]...
  or:  %s OPTION
Usage: %s [OPTION]
Usage: %s [OPTION]
Print the numeric identifier (in hexadecimal) for the current host.

Usage: %s [OPTION] NAME...
Usage: %s [OPTION] [COMMAND [ARG]...]
Usage: %s [OPTION] [FILE]
Write totally ordered list consistent with the partial ordering in FILE.
Usage: %s [OPTION] [FILE]...
Usage: %s [OPTION] [NUMBER]...
Usage: %s [OPTION] [VARIABLE]...
Print the values of the specified environment VARIABLE(s).
If no VARIABLE is specified, print name and value pairs for them all.

Usage: %s [OPTION]...
Usage: %s [OPTION]... %s FILE...
  or:  %s [OPTION]... --reference=RFILE FILE...
Usage: %s [OPTION]... CONTEXT FILE...
  or:  %s [OPTION]... [-u USER] [-r ROLE] [-l RANGE] [-t TYPE] FILE...
  or:  %s [OPTION]... --reference=RFILE FILE...
Usage: %s [OPTION]... DIRECTORY...
Usage: %s [OPTION]... DURATION COMMAND [ARG]...
Usage: %s [OPTION]... FILE PATTERN...
Usage: %s [OPTION]... FILE...
Usage: %s [OPTION]... FILE1 FILE2
Usage: %s [OPTION]... LAST
  or:  %s [OPTION]... FIRST LAST
  or:  %s [OPTION]... FIRST INCREMENT LAST
Usage: %s [OPTION]... MODE[,MODE]... FILE...
  or:  %s [OPTION]... OCTAL-MODE FILE...
  or:  %s [OPTION]... --reference=RFILE FILE...
Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]
Usage: %s [OPTION]... NAME...
Usage: %s [OPTION]... NEWROOT [COMMAND [ARG]...]
Usage: %s [OPTION]... STRING1 [STRING2]
Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]
Usage: %s [OPTION]... [-T] SOURCE DEST
  or:  %s [OPTION]... SOURCE... DIRECTORY
  or:  %s [OPTION]... -t DIRECTORY SOURCE...
Usage: %s [OPTION]... [-T] SOURCE DEST
  or:  %s [OPTION]... SOURCE... DIRECTORY
  or:  %s [OPTION]... -t DIRECTORY SOURCE...
  or:  %s [OPTION]... -d DIRECTORY...
Usage: %s [OPTION]... [-T] TARGET LINK_NAME
  or:  %s [OPTION]... TARGET
  or:  %s [OPTION]... TARGET... DIRECTORY
  or:  %s [OPTION]... -t DIRECTORY TARGET...
Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
Usage: %s [OPTION]... [FILE [PREFIX]]
Usage: %s [OPTION]... [FILE]
Usage: %s [OPTION]... [FILE]
  or:  %s -e [OPTION]... [ARG]...
  or:  %s -i LO-HI [OPTION]...
Usage: %s [OPTION]... [FILE]...
Usage: %s [OPTION]... [FILE]...
  or:  %s [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]
  or:  %s --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]
Usage: %s [OPTION]... [FILE]...
  or:  %s [OPTION]... --files0-from=F
Usage: %s [OPTION]... [INPUT [OUTPUT]]
Usage: %s [OPTION]... [INPUT]...   (without -G)
  or:  %s -G [OPTION]... [INPUT [OUTPUT]]
Usage: %s [OPTION]... [NUMBER]...
Usage: %s [OPTION]... [TEMPLATE]
Usage: %s [OPTION]... [USERNAME]...
Usage: %s [OPTION]... [USER]...
Usage: %s [SHORT-OPTION]... [STRING]...
  or:  %s LONG-OPTION
Usage: %s [STRING]...
  or:  %s OPTION
Usage: %s [ignored command line arguments]
  or:  %s OPTION
Usage: test EXPRESSION
  or:  test
  or:  [ EXPRESSION ]
  or:  [ ]
  or:  [ OPTION
Use%UsedUser defined signal 1User defined signal 2Valid arguments are:Valid arguments are:
Valid format sequences for file systems:

  %a   free blocks available to non-superuser
  %b   total data blocks in file system
  %c   total file nodes in file system
  %d   free file nodes in file system
  %f   free blocks in file system
Virtual timer expiredWARNING: %ju computed checksum did NOT matchWARNING: %ju computed checksums did NOT matchWARNING: %ju line is improperly formattedWARNING: %ju lines are improperly formattedWARNING: %ju listed file could not be readWARNING: %ju listed files could not be readWARNING: Circular directory structure.
This almost certainly means that you have a corrupted file system.
NOTIFY YOUR SYSTEM MANAGER.
The following directory is part of the cycle:
  %s
WARNING: ignoring --preserve-context; this kernel is not SELinux-enabledWARNING: ignoring --strip-program option as -s option was not specifiedWarning: WhenWhen checking, the input should be a former output of this program,
or equivalent standalone program.
When checking, the input should be a former output of this program.
The default mode is to print a line with: checksum, a space,
a character indicating input mode ('*' for binary, ' ' for text
or where binary is insignificant), and name for each FILE.

There is no difference between binary mode and text mode on GNU systems.
WhereWindow changedWith --follow (-f), tail defaults to following the file descriptor, which
means that even if a tail'ed file is renamed, tail will continue to track
its end.  This default behavior is not desirable when you really want to
track the actual name of the file, not the file descriptor (e.g., log
rotation).  Use --follow=name in that case.  That causes tail to track the
named file in a way that accommodates renaming, removal and creation.
Wrap input lines in each FILE, writing to standard output.
Write a random permutation of the input lines to standard output.
Write each FILE to standard output, last line first.
Write each FILE to standard output, with line numbers added.
Write sorted concatenation of all FILE(s) to standard output.
Written by %s and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
Written by %s, %s, %s,
%s, %s, %s, and %s.
Written by %s, %s, %s,
%s, %s, and %s.
Written by %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
and %s.
Written by %s, %s, and %s.
Written by %s.
[=c=] expressions may not appear in string2 when translating[OWNER][:[GROUP]]^ no match for key
^[nN]^[yY]`a command must be given with an adjustmentai_family not supportedai_socktype not supportedambiguous argument %s for %san input delimiter may be specified only when operating on fieldsand --preserve-root=all is in effectappending output to %sasymmetric input (%lu), output (%lu) speeds not supportedavx2 support not detectedavx512 support not detectedbacking up %s might destroy source;  %s not copiedbacking up %s might destroy source;  %s not movedbackup typebasenc encode or decode FILE, or standard input, to standard output.
block special fileblock special files not supportedblocksboth files cannot be standard inputbyte/character offset %s is too largebyte/character positions are numbered from 1can't apply partial context to unlabeled file %scan't get process contextcannot access %scannot access %s: over-mounted by another devicecannot backup %scannot both summarize and show all entriescannot change directory to %scannot change ownership of %scannot change permissions of %scannot change root directory to %scannot change to directory %scannot chdir to root directorycannot combine --backup with --exchange, -n, or --update=none-failcannot combine --target-directory (-t) and --no-target-directory (-T)cannot combine --target-directory and --no-target-directorycannot combine -e and -i optionscannot combine any two of {ascii,ebcdic,ibm}cannot combine block and unblockcannot combine direct and nocachecannot combine excl and nocreatcannot combine lcase and ucasecannot combine mode and --reference optionscannot combine signal with -l or -tcannot compare file names %s and %scannot convert U+%04X to local character setcannot convert U+%04X to local character set: %scannot copy a directory, %s, into itself, %scannot copy cyclic symbolic link %scannot create directory %scannot create fifo %scannot create hard link %s to %scannot create link %s to %scannot create regular file %scannot create special file %scannot create symbolic link %scannot create symbolic link %s to %scannot create temporary file in %scannot dereference %scannot determine device and inode of %scannot determine hostnamecannot determine location of %s. reverting to pollingcannot do --relative without --symboliccannot do ioctl on %scannot exchange %s and %scannot find name for group ID %jdcannot find name for group ID %jucannot find name for user ID %jucannot follow %s by namecannot fstat %scannot get current directorycannot get effective GIDcannot get effective UIDcannot get nicenesscannot get real GIDcannot get real UIDcannot get system namecannot get the size of %scannot lseek %scannot make both hard and symbolic linkscannot make directory %scannot move %s to %scannot move %s to a subdirectory of itself, %scannot open %scannot open %s for readingcannot open %s for writingcannot open directory %scannot operate on dangling symlink %scannot overwrite %scannot perform formatted outputcannot preserve extended attributes, cp is built without xattr supportcannot preserve security context without an SELinux-enabled kernelcannot print "only" of more than one choicecannot print security context when user specifiedcannot readcannot read directory %scannot read file names from %scannot read file system information for %scannot read realtime clockcannot read symbolic link %scannot read table of mounted file systemscannot remove %scannot run %scannot run strip program %scannot set %scannot set datecannot set name to %scannot set nicenesscannot set permissions of %scannot set target context and preserve itcannot set timestamps for %scannot skip past end of combined inputcannot specify --null (-0) with commandcannot specify both --data and --file-systemcannot specify both printing across and printing in parallelcannot specify number of columns when printing in parallelcannot specify times from more than one sourcecannot split in more than one waycannot stat %scannot stat current directory (now %s)cannot stat standard inputcannot statx %scannot touch %scannot un-backup %scannot unlink %scannot unset %scannot watch %scannot watch parent directory of %scannot work around kernel bug after allchanged group of %s from %s to %s
changed ownership of %s from %s to %s
changing group of %schanging ownership of %schanging permissions of %schanging security context of %s
character offset is zerocharacter out of rangecharacter special filecharacter special files not supportedchild failed to reset signal maskclearing permissions for %sclock changeclose failedclosing %s (fd=%d)closing directory %sclosing input file %sclosing output file %sclosing standard inputcompatibility mode supports at most one fileconflicting empty-field replacement stringsconflicting security context specifiers givencontiguous datacopied %s -> %scould not run compress program %scould not run compress program %s -dcould not set buffering of %s to mode %s
couldn't create temporary filecouldn't find directory entry in %s with matching i-nodecouldn't get boot timecouldn't reset non-blocking mode %screated directory %screated directory %s
creating directory %screating file %s
delimiter list ends with an unescaped backslash: %sdigest length for %s must be 224, 256, 384, or 512directorydirectory containing watched file was removeddivision by zerodoorempty file nameempty record separatorempty taberror canonicalizing %serror closing fileerror copying %s to %serror deallocating %serror in regular expression matchererror in regular expression searcherror opening %serror reading %serror reading inotify eventerror reading inputerror syncing %serror waiting for commanderror waiting for inotify and output eventserror writing %serror: regular expression has a match of length zero: %sexchanged %s <-> %sexecuting with FILE=%s
exit=extra argument %sextra operand %sextra operand %s not allowed with -%cfailed to access %sfailed to allocate a %lu byte stdio buffer
failed to block signal %dfailed to canonicalize %sfailed to change context of %s to %sfailed to change group of %s from %s to %s
failed to change group of %s to %s
failed to change mode of %s from %04lo (%s) to %04lo (%s)
failed to change ownership of %s
failed to change ownership of %s from %s to %s
failed to change ownership of %s to %s
failed to chdir to %sfailed to clone %s from %sfailed to close %sfailed to close input pipefailed to compute a new contextfailed to convert some of the input numbersfailed to create directory via template %sfailed to create file via template %sfailed to create hard link %sfailed to create hard link %s => %sfailed to create hard link to %sfailed to create pipefailed to create security context: %sfailed to create symbolic link %sfailed to create symbolic link %s -> %sfailed to create temporary file %sfailed to discard cache for: %sfailed to extend %sfailed to find %sfailed to get attributes of %sfailed to get current contextfailed to get groups for the current processfailed to get groups for user %sfailed to get security context of %sfailed to get signal action for signal %dfailed to get signal process maskfailed to get supplemental groupsfailed to lookup file %sfailed to make temporary file namefailed to open %sfailed to open %s for readingfailed to open %s for writingfailed to prepare value '%Lf' for printingfailed to preserve authorship for %sfailed to preserve ownership for %sfailed to preserve permissions for %sfailed to preserve times for %sfailed to redirect standard errorfailed to remove %sfailed to remove %s: Symbolic link not followedfailed to remove directory %sfailed to render standard input unusablefailed to restore context for %sfailed to restore the default file creation contextfailed to return to initial working directoryfailed to rewind stream for %sfailed to run command %sfailed to run command: "%s -c %s"failed to set %s security context component to %sfailed to set FILE environment variablefailed to set default creation context for %sfailed to set default file creation context for %sfailed to set default file creation context to %sfailed to set file descriptor text/binary modefailed to set group-IDfailed to set localefailed to set new range: %sfailed to set new role: %sfailed to set new type: %sfailed to set new user: %sfailed to set signal action for signal %dfailed to set signal process maskfailed to set supplemental groupsfailed to set the security context of %sfailed to set user-IDfailed to stat %sfailed to stat %s: skipping %sfailed to truncate %s at %jd bytesfailed to truncate to %jd bytes in output file %sfailed to turn off O_DIRECT: %sfailed to update the environment with %sfdatasync failed for %sfflush failedfield number %s is too largefield number is zerofield separator %s is treated as a decimal point in numbersfield separator %s is treated as a group separator in numbersfield separator %s is treated as a minus sign in numbersfield separator %s is treated as a plus sign in numbersfields are numbered from 1fifofile %d is not in sorted orderfile operands cannot be combined with --files0-fromfile operands cannot be combined with --print-database (-p)file system type %s both selected and excludedfork system call failedformat %s ends in %%format %s has no %% directiveformat %s has too many %% directivesformat %s has unknown %%%c directiveformat string may not be specified when printing equal width stringsfprintftime errorfsync failed for %sfts_close failedfts_read failedfts_read failed: %sgenerating relative pathgetting new attributes of %sgroup of %s retained as %s
grouping and printing repeat counts is meaninglessgrouping cannot be combined with --togrouping has no effect in this localeiconv function not availableiconv function not usableid=ignoring --no-newline with multiple argumentsignoring inputignoring input and appending output to %signoring input and redirecting standard error to standard outputignoring invalid tab size in environment variable TABSIZE: %signoring invalid value of environment variable QUOTING_STYLE: %signoring invalid width in environment variable COLUMNS: %signoring non-option argumentsincompatible join fields %td, %tdincompatible tabsinotify cannot be used, reverting to pollinginotify resources exhaustedinput is not in sorted orderinput line is too longinteger overflowinter-device move failed: %s to %s; unable to remove targetinvalid %s argument: %sinvalid %s%s argument '%s'invalid --%s argument %sinvalid --threshold argument '-0'invalid IO block sizeinvalid PIDinvalid Zero increment value: %sinvalid adjustment %sinvalid argument %sinvalid argument %s for %sinvalid backslash at end of string in -Sinvalid body numbering style: %sinvalid buffering mode %s for %s
invalid byte or character rangeinvalid byte/character position %sinvalid character '%c' in type string %sinvalid character class %sinvalid chunk numberinvalid context: %sinvalid conversioninvalid conversion specifier in suffix: %cinvalid conversion specifier in suffix: \%.3oinvalid date %sinvalid date format %sinvalid decreasing rangeinvalid device %s %sinvalid device type %sinvalid field number: %sinvalid field rangeinvalid field specifier: %sinvalid field value %sinvalid field width: %sinvalid file number in field spec: %sinvalid file number: %sinvalid file sizeinvalid flags in conversion specification: %%%c%cinvalid floating point argument: %sinvalid footer numbering style: %sinvalid format %s, directive must be %%[0]['][-][N][.][N]finvalid gap width: %sinvalid groupinvalid group %sinvalid group list %sinvalid header numbering style: %sinvalid header value %sinvalid inputinvalid input (length must be multiple of 4 characters)invalid input flaginvalid input rangeinvalid integer %sinvalid integer argumentinvalid ispeed %sinvalid lengthinvalid length: %sinvalid line count: %sinvalid line discipline %sinvalid line number field widthinvalid line number incrementinvalid line number of blank linesinvalid line numbering format: %sinvalid line widthinvalid line width: %sinvalid major device number %sinvalid maximum depth %sinvalid maximum number of unchanged stats between opensinvalid minor device number %sinvalid modeinvalid mode %sinvalid mode: %sinvalid numberinvalid number after ','invalid number after '-'invalid number after '.'invalid number at field startinvalid number of bytesinvalid number of bytes to compareinvalid number of bytes to skipinvalid number of chunksinvalid number of columnsinvalid number of fields to skipinvalid number of linesinvalid number of lines: %sinvalid number of passesinvalid number of seconds: %sinvalid number: %sinvalid option -- %cinvalid option -- %c; -WIDTH is recognized only when it is the first
option; use -w N insteadinvalid option -- '%c'invalid ospeed %sinvalid output address radix '%c'; it must be one character from [doxn]invalid output flaginvalid padding value %sinvalid page range %sinvalid precision in format %sinvalid precision: %sinvalid range with no endpoint: -invalid repeat count %s in [c*n] constructinvalid sequence '\%c' in -Sinvalid specinvalid starting line numberinvalid status levelinvalid suffix %s, contains directory separatorinvalid suffix in %s%s argument '%s'invalid suffix in input %s: %sinvalid suffix in input: %sinvalid suffix lengthinvalid tab sizeinvalid template, %s, contains directory separatorinvalid template, %s; with --tmpdir, it may not be absoluteinvalid time interval %sinvalid time style format %sinvalid trailing option -- %cinvalid type string %sinvalid type string %s;
this system doesn't provide a %d-byte floating point typeinvalid type string %s;
this system doesn't provide a %d-byte integral typeinvalid unit size: %sinvalid universal character name \%c%0*xinvalid userinvalid user %sinvalid widthinvalid wrap sizeinvalid zero-length file nameit is dangerous to operate recursively on %sit is dangerous to operate recursively on %s (same as %s)key %lu has zero width and will be ignoredkey %lu is numeric and spans multiple fieldslarge input value %s: possible precision losslast=leading '-' in a component of file name %sleading blanks are significant in key %lu; consider also specifying 'b'length is not a multiple of 8limit %td exceeded by length %td of file name %slimit %td exceeded by length %td of file name component %sline buffering standard input is meaninglessline number %s is smaller than preceding line number, %jdline number overflowmaximum --%s argument with current rlimit is %umaximum digest length for %s is %d bitsmemory exhaustedmemory exhausted by input buffer of size %td bytes (%s)memory exhausted by output buffer of size %td bytes (%s)message queuemigrated file with datamigrated file without dataminimum --%s argument is %smisaligned [:upper:] and/or [:lower:] constructmissing %% conversion specification in suffixmissing %smissing 'i' suffix in input: %s (e.g Ki/Mi/Gi)missing argument after %smissing argument to %smissing character class name '[::]'missing conversion specifier in suffixmissing destination file operand after %smissing encoding typemissing equivalence class character '[==]'missing file operandmissing hexadecimal number in escapemissing list of byte/character positionsmissing list of fieldsmissing operandmissing operand after %smode must specify only file permission bitsmode of %s changed from %04lo (%s) to %04lo (%s)
mode of %s retained as %04lo (%s)
multi-character separator %smulti-character tab %smultiple -i options specifiedmultiple -l or -t options specifiedmultiple compress programs specifiedmultiple field specificationsmultiple levelrangesmultiple output delimiters specifiedmultiple output files specifiedmultiple output formats specifiedmultiple random sources specifiedmultiple relative modifiers specifiedmultiple rolesmultiple separator characters specifiedmultiple target directories specifiedmultiple typesmultiple usersmultiplexed block special filemultiplexed character special filemultiplexed filemust specify command with --argv0 (-a)must specify command with --chdir (-C)named fileneither symbolic link %s nor referent has been changed
network special fileno SHELL environment variable, and no shell type option givenno change to ownership of %s
no command specifiedno conversion option specifiedno file systems processedno files remainingno group specified for unknown uid: %juno input from %sno lines to repeatno login nameno process ID specifiedno terminating quote in -S stringno type may be specified when dumping stringsno username specified; at least one must be specified when using -lnon-integer argumentnon-portable character %s in file name %snot a ttynot replacing %snot writing through dangling symlink %snumber in parallel must be nonzeronumbers use %s as a decimal point in this localenumerical suffix start value is too large for the suffix lengthobsolescent key %s used; consider %s insteadoffoffset overflow while reading file %soffset too large: cannot truncate to a length of seek=%jd (%td-byte) blocksomitting directory %sononly ${VARNAME} expansion is supported, error at: %sonly one [c*] repeat construct may appear in string2only one device may be specifiedonly one list may be specifiedonly using last of multiple -d optionsonly using last of multiple -s optionsopen failedoption '-%s' is ignoredoptions '-%s' are ignoredoption '-r' only applies to last-resort comparisonoption --output: field %s unknownoption --output: field %s used more than onceoption --skip-chdir only permitted if NEWROOT is old %soption --zero not permitted in default formatoption used in invalid context -- %coptions %s and %s are mutually exclusiveoptions '-%s' are incompatibleoptions --compare (-C) and --preserve-timestamps are mutually exclusiveoptions --compare (-C) and --strip are mutually exclusiveoptions --print-database and --print-ls-colors are mutually exclusiveor available locally via: info '(coreutils) %s%s'
output file suffixes exhaustedoutput format: %soverflow extending size of file %soverflow in %jd * %td byte blocks for file %soverflow reading %sownership of %s retained
ownership of %s retained as %s
page number overflowpage width too narrowpclmul support not detectedportposix_spawn initialization failedposix_spawn setup failedpreserving permissions for %spreserving times for %sprinting all duplicated lines and repeat counts is meaninglessprinting only names or real IDs requires -u, -g, or -Gpseudo address too large for inputrange-endpoints of '%s-%s' are in reverse collating sequence orderread errorread failedreading directory %srecord too largeredirecting standard error to standard outputrefusing to remove %s or %s directory: skipping %sregular empty fileregular filerejecting suffix in input: %s (consider using --from)removed %s
removed directory %s
removing directory, %srenamed %s -> %srun-levelsemaphoresending signal %s to command %sseparator cannot be emptyset LC_ALL='C' to work around the problemsetting flags for %ssetting permissions for %ssetting times of %sshared memory objectskip-bytes + read-bytes is too largeskipped %s
skipping %s, since it's on a different deviceskipping file %s, as it was replaced while being copiedsocketstandard errorstandard inputstandard input is closedstandard outputstarting page number %ju exceeds page count %justat failedstray character in field specstring comparison failedstring transformation failedstrip process terminated abnormallysuppressing non-delimited lines makes sense
	only when operating on fieldssymbolic linksyntax error: expecting ')' after %ssyntax error: expecting ')' instead of %ssyntax error: missing argument after %ssyntax error: unexpected ')'syntax error: unexpected argument %ssystem boottab size cannot be 0tab size contains invalid character(s): %stab sizes must be ascendingtab stop is too large %stab stop value is too largetabs are too far aparttarget %starget %s is not a directorytarget directory %starget directory not allowed when installing a directoryterm=test and/or [text ordering performed using %s sorting rulestext ordering performed using simple byte comparisonthe --binary and --text options are meaningless when verifying checksumsthe --compare (-C) option is ignored when you specify a mode with non-permission bitsthe --ignore-missing option is meaningful only when verifying checksumsthe --quiet option is meaningful only when verifying checksumsthe --raw option is not supported with multiple filesthe --status option is meaningful only when verifying checksumsthe --strict option is meaningful only when verifying checksumsthe --tag option is meaningless when verifying checksumsthe --warn option is meaningful only when verifying checksumsthe --zero option is not supported when verifying checksumsthe [c*] construct may appear in string2 only when translatingthe [c*] repeat construct may not appear in string1the argument %s lacks a leading '+';
when using an option to specify date(s), any non-option
argument must be a format string beginning with '+'the delimiter must be a single characterthe monitored command dumped corethe options for verbose and stty-readable output styles are
mutually exclusivethe options to output non shell syntax,
and to select a shell syntax are mutually exclusivethe options to print and set the time may not be used togetherthe options to specify dates for printing are mutually exclusivethe original string was %sthe strings compared were %s and %sthe strip option may not be used when installing a directorythe suffix length needs to be at least %dthis system doesn't provide a %s floating point typetime %s is out of rangetoo few X's in template %stoo many %% conversion specifications in suffixtoo many characters in settoo many input linestoo many repeated linestoo many templatestotaltotal bytestotal characterstotal linestotal wordstraversal failed: %sttyname errortyped memory objectuid=%juunable to record current working directoryunable to set security context %sunexpected failure: fts_info=%d: %s
please report to %sunknown status from command (%d)unknown status from command (0x%X)unparsable value for LS_COLORS environment variableunrecognized --preserve-root argument: %sunrecognized operand %sunrecognized prefix: %sunsupported ispeed %sunsupported ospeed %sup  %2d:%02d,  up %jd day %2d:%02d,  up %jd days %2d:%02d,  up ???? days ??:??,  updating times for %suse --no-preserve-root to override this failsafeuse -[v]S to pass options in shebang linesusing %s to denote standard input does not work in file system modeusing avx2 hardware supportusing avx512 hardware supportusing pclmul hardware supportusing vmull hardware supportvalue too large to be converted: %svalue too large to be printed: '%Lg' (cannot handle values > 999Q)value too large to be printed: '%Lg' (consider using --to)value/precision too large to be printed: '%Lg/%zu' (consider using --to)vmull support not detectedwaiting for %s [-d]waiting for child processwaiting for stripwarning: %s is a zero multiplier; use %s if that is intendedwarning: %s: character(s) following character constant have been ignoredwarning: %s: context lookup failedwarning: %s: failed to change context to %swarning: '.' should be ':'warning: 'touch %s' is obsolete; use 'touch -t %04ld%02d%02d%02d%02d.%02d'warning: --pid=PID is not supported on this systemwarning: --retry ignored; --retry is useful only when followingwarning: --retry only effective for the initial openwarning: an unescaped backslash at end of string is not portablewarning: backslash at end of formatwarning: cannot remove: %swarning: disabling core dumps failedwarning: following standard input indefinitely is ineffectivewarning: ignoring --contextwarning: ignoring --context; it requires an SELinux-enabled kernelwarning: ignoring --context; it requires an SELinux/SMACK-enabled kernelwarning: ignoring excess arguments, starting with %swarning: invalid file offset after failed readwarning: invalid width %td; using %d insteadwarning: line number %s is the same as preceding line numberwarning: options --apparent-size and -b are ineffective with --inodeswarning: sigprocmaskwarning: source directory %s specified more than oncewarning: source file %s specified more than oncewarning: summarizing conflicts with --max-depth=%tdwarning: summarizing is the same as using --max-depth=0warning: the ambiguous octal escape \%c%c%c is being
	interpreted as the 2-byte sequence \0%c%c, %cwarning: timer_createwarning: timer_settimewarning: unrecognized escape '\%c'weird filewhen not truncating set1, string2 must be non-emptywhen reading file names from standard input, no file name of %s allowedwhen specifying an output style, modes may not be setwhen translating with complemented character classes,
string2 must map all characters in the domain to onewhen translating with string1 longer than string2,
the latter string must not end with a character classwhen translating, the only character classes that may appear in
string2 are 'upper' and 'lower'whiteoutwill not copy %s through just-created symlink %swill not create hard link %s to directory %swill not overwrite just-created %s with %swith --parents, the destination must be a directorywith --suffix, template %s must end in Xwith FILE=%s, exit %d from command: %swith FILE=%s, signal %s from command: %swrite errorwrite error for %swrite failedwriting to %syou may not abbreviate the --no-preserve-root optionyou must specify -c, -t, -u, -l, -r, or contextyou must specify a buffering mode optionyou must specify a list of bytes, characters, or fieldsyou must specify a relative %s with %syou must specify either %s or %sProject-Id-Version: coreutils 9.10-pre1
Report-Msgid-Bugs-To: bug-coreutils@gnu.org
PO-Revision-Date: 2026-02-03 17:09+0100
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
Plural-Forms: nplurals=2; plural=n != 1;
X-Bugs: Report translation errors to the Language-Team address.


Het getal BYTES kan hexadecimaal zijn met voorvoegsel '0x' of '0X'
en mag gevolgd worden door een vermenigvuldigingsachtervoegsel:
b = 512, KB = 1000, K = 1024, MB = 1000*1000, M = 1024*1024,
GB = 1000*MB, G = 1024*M, en zo verder voor T, P, E, Z, Y, R, en Q.
Langere achtervoegsels mogen ook: KiB = K, MiB = M, enzovoort.

TYPE bestaat uit één of meer van de volgende aanduidigen:
  a          tekennaam, het hoogste bit negerend
  c          ASCII-teken of backslash-code

Traditionele opmaakspecificaties mogen ook gebruikt worden; zij accumuleren:

  ( EXPRESSIE )               waar als EXPRESSIE waar is
  ! EXPRESSIE                 waar als EXPRESSIE onwaar is
  EXPRESSIE1 -a EXPRESSIE2    waar als beide expressies waar zijn
  EXPRESSIE1 -o EXPRESSIE2    onwaar als beide expressies onwaar zijn

  ARG1 * ARG2       rekenkundig product van ARG1 en ARG2
  ARG1 / ARG2       rekenkundig quotient van ARG1 gedeeld door ARG2
  ARG1 % ARG2       rekenkundige rest van ARG1 gedeeld door ARG2

  ARG1 + ARG2       rekenkundige som van ARG1 en ARG2
  ARG1 - ARG2       rekenkundig verschil van ARG1 en ARG2

  ARG1 < ARG2       1 als ARG1 kleiner is dan ARG2, anders 0
  ARG1 <= ARG2      1 als ARG1 kleiner of gelijk is aan ARG2, anders 0
  ARG1 = ARG2       1 als ARG1 gelijk is aan ARG2, anders 0 ('==' = '=')
  ARG1 != ARG2      1 als ARG1 niet gelijk is aan ARG2, anders 0
  ARG1 >= ARG2      1 als ARG1 groter of gelijk is aan ARG2, anders 0
  ARG1 > ARG2       1 als ARG1 groter is dan ARG2, anders 0

  TEKENREEKS : REGEXP   de tekens vanaf het begin van de TEKENREEKS die
                        voldoen aan de reguliere expressie REGEXP

  match TEKENREEKS REGEXP           hetzelfde als 'TEKENREEKS : REGEXP'
  substr TEKENREEKS POSITIE LENGTE  subreeks van TEKENREEKS; POSITIE telt van 1
  index TEKENREEKS TEKENS           laagste index in TEKENREEKS waar een teken
                                    uit TEKENS gevonden is, anders 0
  length TEKENREEKS                 de lengte van de TEKENREEKS

  b      een blok-apparaatbestand aanmaken (gebufferd)
  c, u   een byte-apparaatbestand aanmaken (ongebufferd)
  p      een FIFO aanmaken

aantal gebruikers=%td

'[' kent de opties '--help' en '--version',
maar 'test' ziet ze als tekenreeksen.

Opmerking: 'uniq' detecteert herhaalde regels niet als ze niet bij elkaar staan;
u zou de invoer eerst kunnen sorteren, of 'sort -u' gebruiken zonder 'uniq'.

'--terse' is equivalent aan de volgende OPMAAK:
    %s
Een veld is witruimte (gewoonlijk spaties en/of tabs), daarna tekens die
geen witruimte zijn.  Eerst worden velden overgeslagen, dan tekens.

Een lichtgewicht 'finger'-programma dat gebruikersinformatie toont.
Het geraadpleegde 'utmp'-bestand is %s.

Een losse '-' betekent hetzelfde als '-i'.
Zonder COMMANDO wordt de resulterende omgeving getoond.

SETs worden gegeven als tekenreeksen.  De meeste tekens representeren zichzelf.
Begrepen codes zijn:

  \NNN            het teken met ASCII-code NNN (octaal, 1 tot 3 cijfers)
  \\              een backslash (\)
  \a              geluidssignaal
  \b              backspace
  \f              nieuwe pagina (FF-teken)
  \n              nieuwe regel (LF-teken)
  \r              naar begin van regel (CR-teken)
  \t              horizontale tab

LIJST is een kommagescheiden lijst van eigenschappen. Eigenschappen zijn:
'mode' voor toegangsrechten (inclusief die via ACL en xattr), 'ownership'
voor gebruiker en groep, 'timestamps' voor bestandstijdsstempels, 'links'
voor harde koppelingen, 'context' voor beveiligingscontext, 'xattr' voor
uitgebreide eigenschappen, en 'all' voor alle eigenschappen.

Met het achtervoegsel 'z' achter een TYPE, worden aan het eind
van elke uitvoerregel als extra de afdrukbare tekens getoond.

Na een opmaakcode mag nog een veldbreedte (een decimaal getal) volgen.
Bij sommige opmaakletters mag nog een aanpasser gebruikt worden:
een E betekent alternatieve representaties uit de taalregio gebruiken,
en een O betekent alternatieve cijfers uit de taalregio te gebruiken,
waarbij voor beide geldt: indien beschikbaar.

Opties die de te tonen datum specificeren gaan niet samen.
Dit zijn: --date, --file, --reference, --resolution.

Een ontbrekende EXPRESSIE evalueert tot onwaar.  Voor het overige kan de
EXPRESSIE waar of onwaar zijn, en mag één van de volgende zijn:

Speciaal geval: 'cp' maakt een reservekopie van BRON als de opties
'--force' en '--backup' gegeven zijn én BRON en BESTEMMING dezelfde
naam van een bestaand gewoon bestand zijn.

Wees erop bedacht dat in de meeste shells veel operatoren op de een of andere
manier aangehaald moeten worden.  Vergelijkingen zijn rekenkundig als beide
argumenten getallen zijn, anders lexicografisch.  Patroonovereenkomsten geven
de gevonden tekenreeks tussen \( en \) terug of een lege tekenreeks; zonder
\( en \) geven ze het aantal overeenkomende tekens terug, of 0.

Een tweezijdige '-a' of '-o' is meerduidig.  Gebruik liever
'test EXPR1 && test EXPR2' of 'test EXPR1 || test EXPR2'.

Zowel HOOFD- als SUBNUMMER moeten gegeven worden wanneer TYPE 'b', 'c' of 'u'
is, en weggelaten als TYPE 'p' is.  Als HOOFD- of SUBNUMMER begint met '0x'
of '0X', dan is de interpretatie hexadecimaal; anders, als het begint met 0,
octaal; anders decimaal.  TYPE mag zijn:

Standaard (of met '--reflink=auto') probeert 'cp' een lichtgewicht kopieeroperatie
uit te voeren, waar datablokken alleen gekopieerd worden als ze worden gewijzigd.
Als dat niet mogelijk is, dan wordt teruggevallen op standaard kopieëren.  Met
'--reflink[=always]' mislukt het kopiëren als kopiëren-bij-wijzigen (Cow) niet
ondersteund wordt, terwijl '--reflink=never' standaard kopiëren afdwingt.

Standaard verwijdert 'rm' geen mappen.  Gebruik de optie '--recursive'
('-r' of '-R') om ook iedere genoemde map en diens inhoud te verwijderen.

BRON-bestanden met gaten worden standaard via een vuistregel gedetecteerd,
waarna de overeenkomstige BESTEMMING-bestanden ook met gaten worden gemaakt.
Dit is het gedrag dat geselecteerd wordt met '--sparse=auto'.
Specificeer '--sparse=always' om een BESTEMMING-bestand met gaten te maken
wanneer het BRON-bestand een voldoend lange reeks nul-bytes bevat.  Gebruik
'--sparse=never' om het aanmaken van bestanden met gaten te voorkomen.

BROKKEN mag zijn:
  N       in N bestanden splitsen afhankelijk van invoergrootte
  K/N     de K-de uit N naar standaarduitvoer sturen
  l/N     in N bestanden splitsen zonder regels of records af te breken
  l/K/N   de K-de uit N naar standaarduitvoer sturen zonder dingen af te breken
  r/N     als 'l/N' maar roundrobin-verdeling gebruiken
  r/K/N   als 'r/N' maar alleen de K-de uit N naar standaarduitvoer sturen

Combinatie-instellingen:

Het vergelijken volgt de regels gespecificeerd door 'LC_COLLATE'.

Overweeg om de printf(1)-opdracht te gebruiken, omdat dit problemen
vermijdt bij het uitvoeren van op opties gelijkende tekenreeksen.

Besturingsinstellingen:
   [-]clocal     modem-besturingssignalen uitschakelen
   [-]cread      het ontvangen van invoer toestaan

DUUR is een drijvendekommagetal met een optioneel achtervoegsel: 's' voor
seconden (standaard), 'm' voor minuten, 'h' voor uren, 'd' voor dagen.
Een DUUR van 0 schakelt de betreffende tijdslimiet uit.

De standaardopties zijn: -bt -d'\:' -fn -hn -i1 -l1 -n'rn' -s<TAB> -v1 -w6

TT zijn twee tekens voor het maken van logische paginascheidingen;
een ontbrekend tweede teken betekent een ':'.  Als GNU-uitbreiding
mogen ook meer dan twee tekens gegeven worden, en schakelt de lege
tekenreeks (-d '') de sectiedetectie uit.

Als '--remove' (-u) gegeven is, worden de gegeven BESTANDen verwijderd.
Standaard worden bestanden niet verwijderd omdat 'shred' vaak toegepast wordt
op apparaatbestanden (zoals /dev/hda) en meestal wil men die niet verwijderen.

De parameter HOE geeft aan hoe een item uit een map verwijderd moet worden:
  'unlink' => een standaard unlink()-aanroep gebruiken;.
  'wipe' => ook eerst de bytes van de naam verdoezelen;
  'wipesync' => ook elke verdoezelde byte naar het apparaat schrijven.
De standaardmodus is 'wipesync', maar merk op dat dit "kostbaar" kan zijn.


Getoonde waarden zijn in eenheden van de eerst beschikbare GROOTTE uit
'--block-size' en de omgevingsvariabelen %s_BLOCK_SIZE, BLOCK_SIZE en
BLOCKSIZE.  Anders is de eenheid standaard 1024 bytes (of 512 als
POSIXLY_CORRECT gezet is).

VLAGGEN is een kommagescheiden lijst uit de volgende eigenschappen:

  append     achtervoegen (alleen zinvol bij uitvoer; suggestie: conv=notrunc)

Iedere MODUS is van de vorm '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.

Elk PATROON mag zijn:
  NUMMER             kopiëren tot het gegeven regelnummer (niet tot en met)
  /REGEXP/[POSITIE]  kopiëren tot de overeenkomende regel (niet tot en met)
  %REGEXP%[POSITIE]  overslaan tot de overeenkomende regel (niet tot en met)
  {AANTAL}           het voorgaande patroon dit aantal keren herhalen
  {*}                het voorgaande patroon zo vaak als mogelijk herhalen

Een regel-POSITIE is een geheel getal, eventueel met '+' of '-' ervóór.

Voorbeelden:
  $ %s --to=si 1000
            -> "1.0K"
  $ %s --to=iec 2048
           -> "2.0K"
  $ %s --to=iec-i 4096
           -> "4.0Ki"
  $ echo 1K | %s --from=si
           -> "1000"
  $ echo 1K | %s --from=iec
           -> "1024"
  $ df -B1 | %s --header --field 2-4 --to=si
  $ ls -l  | %s --header --field 5 --to=iec
  $ ls -lh | %s --header --field 5 --from=iec --padding=10
  $ ls -lh | %s --header --field 5 --from=iec --format %%10f

Voorbeelden:
  %s -12 bestand1 bestand2   Alleen regels die in beide bestanden voorkomen.
  %s -3  bestand1 bestand2   Regels die alleen in één van de bestanden staan.

Voorbeelden:
  %s /usr/bin/          -> "/usr"
  %s map1/rks map2/rks  -> "map1" gevolgd door "map2"
  %s stdio.h            -> "."

Voorbeelden:
  %s /usr/bin/sort          -> "sort"
  %s include/stdio.h .h     -> "stdio"
  %s -s .h include/stdio.h  -> "stdio"
  %s -a een/rks1 een/rks2   -> "rks1" gevolgd door "rks2"

Voorbeelden:
  %s f - g   Toont de inhoud van f, dan standaardinvoer, dan de inhoud van g.
  %s         Kopieert standaardinvoer naar standaarduitvoer.

Voorbeelden:
  %s root /w        Verandert de eigenaar van /w naar "root".
  %s root:team /w   Idem, maar verandert ook de groep naar "team".
  %s -hR root /w    Verandert de eigenaar van /w en subbestanden naar "root".

Voorbeelden:
  %s team /w       Verandert de groep van /w naar "team".
  %s -hR team /w   Verandert de groep van /w en subbestanden naar "team".

Voorbeelden:
Een aantal seconden sinds tijdperkbegin (1970-01-01 UTC) omzetten naar de datum:
  $ date --date='@2147483647'

De huidige tijd aan de westkust van de Verenigde Staten tonen:
  $ TZ='America/Los_Angeles' date

De lokale tijd hier tonen voor negen uur 's morgens volgende vrijdag
aan de westkust van de Verenigde Staten:
  $ date --date='TZ="America/Los_Angeles" 09:00 next Fri'

Behalve bij '-h' en '-L', volgen alle testen op BESTANDen eventuele
symbolische koppelingen.  Wees erop bedacht dat in de meeste shells
haakjes aangehaald moeten worden (bijvoorbeeld met backslashes).
GETAL mag ook '-l TEKST' zijn, wat evalueert tot de lengte van TEKST.

De afsluitwaarde is 0 als EXPRESSIE noch leeg noch 0 is, 1 als EXPRESSIE leeg
of 0 is, 2 als EXPRESSIE syntactisch ongeldig is, en 3 als er een fout optrad.

De afsluitwaarde is:
 0  indien OK,
 1  bij kleine problemen (bijv. geen toegang tot een submap),
 2  bij serieuze problemen  (bijv. geen toegang tot argument op opdrachtregel).

VELDEN kan zijn:  N     N-de veld (tellend vanaf 1)
  N-    van N-de veld tot het einde van de regel
  N-M   van N-de tot en met M-de veld
  -M    van eerste tot en met M-de veld
  -     alle velden
Meerdere velden en/of bereiken zijn mogelijk, gescheiden door komma's.

VELDENLIJST is een kommagescheiden lijst van te tonen kolommen.  Geldige
veldnamen zijn: 'source', 'fstype', 'itotal', 'iused', 'iavail', 'ipcent',
'size', 'used', 'avail', 'pcent', 'file' en 'target' (zie de Info-pagina).

De OPMAAK bestuurt de uitvoer net als bij printf() in de taal C.
Begrepen sequenties zijn:

  \"      een aanhalingsteken (")

OPMAAK bestuurt de uitvoer.  Begrepen codes zijn:

  %%   het procentteken
  %a   de afkorting van de dag volgens de taalregio (bijv. zo)

OPMAAK is één van:

  ln    links uitgelijnd, geen voorloopnullen
  rn    rechts uitgelijnd, geen voorloopnullen
  rz    rechts uitgelijnd, met voorloopnullen


Bestuurt de TTY die met standaardinvoer verbonden is.

Zonder argumenten worden baudrate, lijnprotocol, en afwijkingen van 'stty sane'
getoond.  Bij instellingen wordt TEKEN letterlijk gebruikt, of gecodeerd als
in ^c, 0x37, 0177 of 127; de speciale waarden '^-' of 'undef' kunnen gebruikt
worden om speciale tekens inactief te maken.

Bij '-e' worden de volgende codes herkend en uitgevoerd:


Als BESTAND '-' is, dan wordt standaarduitvoer ge-shred.

Als geen BESTAND gegeven is, wordt %s gebruikt.
Gewoonlijk wordt %s als BESTAND meegegeven.

Als ARGUMENT1 ARGUMENT2 gegeven zijn, dan wordt '-m' begrepen;
de combinaties 'am i' or 'mom likes' zijn gebruikelijk.

Als BESTAND gegeven is, wordt dat gelezen om te bepalen welke kleuren voor
welke bestandstypes gebruikt moeten worden.  Anders wordt een standaardlijst
gebruikt.  Typ 'dircolors -p' voor details over de opmaak van deze bestanden.

Als EERSTE of STAP weggelaten wordt, dan wordt 1 gebruikt.  Dat betekent
dat een weggelaten STAP ook 1 is als LAATSTE kleiner is dan EERSTE.
De rij getallen eindigt wanneer de som van het huidige getal plus de STAP
groter zou zijn dan LAATSTE.
EERSTE, STAP en LAATSTE worden geïnterpreteerd als drijvendekommagetallen.
STAP zal gewoonlijk positief zijn als EERSTE kleiner is dan LAATSTE,
en negatief als EERSTE kleiner is dan LAATSTE.  STAP mag niet 0 zijn; engeen van EERSTE, STAP en LAATSTE mag iets anders dan een getal zijn.


Als MODUS '0' is, zal de overeenkomstige stream ongebufferd zijn.

Als MODUS 'L' is, zal de overeenkomende stream regelgebufferd zijn.
Deze modus is ongeldig voor standaardinvoer.

Als niet '--traditional' gebruikt is, dan geldt de tweede vorm van 'Gebruik'
wanneer het laatste argument met een '+' begint of (bij twee argumenten) met
een cijfer.  Een POSITIE-argument betekent hetzelfde als '-j POSITIE'.
LABEL is een pseudo-adres voor de eerste getoonde byte, wordt tussen haakjes
getoond, en wordt net als het echte adres opgehoogd tijdens de voortgang.
Voor POSITIE en LABEL betekenen een voorgevoegde '0x' of '0X' hexadecimaal;
het achtervoegsel '.' betekent octaal en 'b' vermenigvuldiging met 512.

Als geen commando gegeven is, dan '"$SHELL" -i' uitvoeren (standaard: '/bin/sh -i').

Als geen optie gegeven is, dan wordt '-P' aangenomen.

Als standaardinvoer een terminal is, dan de invoer naar '/dev/null' omleiden.
Als standaarduitvoer een terminal is, dan eventuele uitvoer zo mogelijk aan
'nohup.out' toevoegen, anders aan '$HOME/nohup.out'.  Als standaardfoutuitvoer
een terminal is, dan deze naar standaarduitvoer omleiden.
Gebruik '%s COMMANDO > BESTAND' om de uitvoer naar een BESTAND te sturen.

Als een bestand met 'rm' verwijderd wordt, is het voor experts vaak nog
mogelijk om iets van de inhoud van het bestand te herstellen.  Als u meer
zekerheid wilt over de onherstelbaarheid van de inhoud, gebruik dan 'shred'.

Invoerinstellingen:
   [-]brkint     een break veroorzaakt een interruptsignaal
   [-]icrnl      CR-teken (naar regelbegin) omzetten in LF-teken (nieuweregel)
   [-]ignbrk     break-tekens negeren
   [-]igncr      CR-tekens negeren
   [-]ignpar     tekens met een pariteitsfout negeren

SLEUTELOPGAVE is van de vorm VN[.TP][OPTIES][,VN[.TP][OPTIES]] voor de start-
en stopposities, waarin VN het veldnummer is en TP de tekenpositie in het veld,
beide tellend vanaf 1, en de stoppositie is standaard het eind van de regel.
Als noch '-t' noch '-b' gegeven is, worden tekens in een veld geteld vanaf het
begin van de voorafgaande witruimte.  OPTIES bestaat uit één of meer éénletter
sorteeropties [bdfgiMnRrV], die globale sorteeropties voor die sorteersleutel
overstijgen.  Als er geen enkele sleutel gegeven is, dan wordt de hele regel
als sleutel gebruikt.  Gebruik '--debug' om sleutelgebruik te diagnosticeren.

GROOTTE mag gevolgd worden door een vermenigvuldigingsachtervoegsel:

Lokale instellingen:
   [-]crterase   erase-tekens echoën als backspace-spatie-backspace

MODUS bepaalt het gedrag bij schrijffouten:
  'warn'         fouten melden bij schrijven naar elk soort uitvoer
  'warn-nopipe'  fouten alleen melden bij schrijven naar een niet-pijp
  'exit'         proces beëindigen bij schrijffout naar elk soort uitvoer
  'exit-nopipe'  proces alleen beëindigen bij schrijffout naar een niet-pijp
De standaardmodus voor optie '-p' is 'warn-nopipe'.
Het standaardgedrag wanneer optie '--output-error' niet gegeven is,
is om het proces meteen te beëindigen bij schrijffouten naar een pijp,
en om fouten te melden bij het schrijven naar alles wat geen pijp is.

(Een verplicht argument bij een lange optie geldt ook voor de korte vorm.)

BLOKKEN en BYTES kunnen de volgende vermenigvuldigingsachtervoegsels krijgen:
c = 1, w = 2, b = 512, kB = 1000, K = 1024, MB = 1000*1000, M = 1024*1024,
GB = 1000*MB, G = 1024*M, en zo verder voor T, P, E, Z, Y, R, en Q.
(Een B als achtervoegsel betekent bytes, niet blokken.)

Mogelijke CONVERSIES zijn:

OPMERKING: Als COMMANDO de buffering van zijn standaard streams aanpast (zoals
bijvoorbeeld 'tee' doet), dan zal dat de overeenkomstige instellingen die zijn
gewijzigd door 'stdbuf' overvleugelen.  Ook sommige filters (zoals 'dd', 'cat',
enzovoort) gebruiken geen streams voor invoer/uitvoer, en worden dus niet
beïnvloed door instellingen van 'stdbuf'.

Het GETAL mag gevolgd worden door een vermenigvuldigingsachtervoegsel:
b = 512, kB = 1000, K = 1024, MB = 1000*1000, M = 1024*1024,
GB = 1000*MB, G = 1024*M, en zo verder voor T, P, E, Z, Y, R, en Q.
Ook binaire voorvoegsels mogen gebruikt worden: KiB = K, MiB = M, enzovoort.

Het GETAL mag gevolgd worden door een vermenigvuldigingsachtervoegsel:
b = 512, kB = 1000, K = 1024, MB = 1000*1000, M = 1024*1024,
GB = 1000*MB, G = 1024*M, en zo verder voor T, P, E, Z, Y, R, en Q.
Ook binaire voorvoegsels mogen gebruikt worden: KiB = K, MiB = M, enzovoort.

De optionele '-' voor een INSTELLING betekent negatie (oftewel 'niet-').
Niet-POSIX-instellingen zijn met een '*' gemarkeerd.  Het hangt van het
onderliggende systeem af welke instellingen beschikbaar zijn.

Andere opties:


Anders is MODUS een geheel getal gevolgd door één van de volgende:
KB 1000, K 1024, MB 1000*1000, M 1024*1024, enz. voor G, T, P, E, Z, Y, R, Q.
(Ook binaire voorvoegsels mogen gebruikt worden: KiB = K, MiB = M, enzovoort.)
In deze gevallen zal de overeenkomstige stream volledig gebufferd zijn
met de grootte ingesteld op MODUS bytes.

Uitvoerinstellingen:

Als EIGENAAR ontbreekt, blijft deze onveranderd.
Als GROEP ontbreekt, blijft deze onveranderd, tenzij met een ':'
na een symbolische EIGENAAR impliciet de inloggroep gegeven is.
Verder mogen EIGENAAR en GROEP zowel numeriek als symbolisch zijn.

De waarde van EXPRESSIE naar standaarduitvoer sturen.  EXPRESSIE mag zijn
(een lege regel scheidt groepen met verschillende, oplopende voorrang):

  ARG1 | ARG2       ARG1 als deze niet leeg of 0 is, anders ARG2

  ARG1 & ARG2       ARG1 als beide argumenten noch leeg noch 0 zijn, anders 0

Als BESTAND '-' is, dan wordt van standaardinvoer gelezen.

SIGNAAL mag een signaalnaam zijn zoals 'PIPE', of een signaalnummer zoals '13'.
Zonder SIGNAAL worden all bekende signalen genomen.  Meerdere signalen kunnen
gegeven worden gescheiden door komma's.  Een leeg SIGNAAL doet niets.

SIGNAAL mag een signaalnaam zijn zoals 'HUP', of een signaalnummer zoals '1',
of de afsluitwaarde van een proces dat beëindigd wordt door een signaal.
PID is een geheel getal; als het negatief is dan duidt het een procesgroep aan.

AANTAL is een getal.  Als TYPE een van [doux] is, dan mag AANTAL ook zijn:
C voor sizeof(char), S voor sizeof(short), I voor sizeof(int), of L voor
sizeof(long).  Als TYPE 'f' is, mag AANTAL ook zijn: B voor Brain-16bit,
H voor Halfprecisie float, F voor sizeof(float), D voor sizeof(double),
of L voor sizeof(long double).

GROOTTE mag ook een voorvoegsel hebben, met de volgende betekenissen:
'+' vergroten met, '-' verkleinen met, '<' maximaal, '>' minimaal,
'/' naar beneden afronden op een veelvoud van,
'%' naar boven afronden op een veelvoud van.

STIJL is één van:

  a       alle regels nummeren
  t       alleen niet-lege regels nummeren
  n       geen regels nummeren
  pBRE    alleen regels nummeren waarvan een deel voldoet aan deze
            gewone reguliere expressie (BRE)

Het zenden van een %s-signaal naar een draaiend 'dd'-proces
maakt dat het in-/uitvoerstatistieken naar standaardfoutuitvoer
stuurt en dan doorgaat met kopiëren.

Opties zijn:


Speciale tekens:

Speciale instellingen:
   N             de in- en uitvoersnelheid op N bits per seconde zetten

GROOTTE is een geheel getal met een optionele eenheid (bijv. 10K is 10*1024).
Mogelijke eenheden zijn: K, M, G, T, P, E, Z, Y, R, Q (machten van 1024)
of KB, MB, ... (machten van 1000).  Bijvoorbeeld: 10MB is 10*1000*1000.
Ook binaire voorvoegsels mogen gebruikt worden: KiB = K, MiB = M, enzovoort.

Het reservekopie-achtervoegsel is '~', tenzij anders ingesteld met '--suffix'
of via omgevingsvariable SIMPLE_BACKUP_SUFFIX.  Het versiebeheer kan worden
ingesteld met de optie '--backup' of via omgevingsvariabele VERSION_CONTROL;
dit zijn de mogelijke waarden (methodes):


De gegevens zijn gecodeerd in het %s-alfabet zoals beschreven in RFC 4648.
Bij decodering mag de invoer naast de formele tekens van het %s-alfabet
ook nog nieuweregel-tekens bevatten.  Met '--ignore-garbage' kunt u proberen
over andere niet-alfabetische tekens in de gecodeerde reeks bytes te stappen.

De volgende vijf opties gelden alleen bij het controleren van controlesommen:

De volgende opties veranderen de wijze van doorlopen van de mappenhiërarchie
als optie '-R' gegeven is.  Bij meerdere van deze opties, geldt de laatste.
Standaard is '%s'.


Met onderstaande opties kunt u kiezen welke aantallen weergeven worden,
altijd in deze volgorde: regels, woorden, tekens, bytes, maximum regellengte.


De sommen worden berekend zoals beschreven in %s.

Geldige opmaakspecificaties voor bestanden (zonder '--file-system') zijn:

  %a   toegangsrechten in octale vorm  (opmaak met '#' en '0' van printf(2))
  %A   toegangsrechten in leesbare vorm
  %b   aantal toegewezen blokken (zie %B)
  %B   de grootte in bytes van elk blok gerapporteerd door %b
  %C   SELinux-beveiligingscontext-tekenreeks

Dit programma kopieert bestanden (vaak zojuist gecompileerd) naar door u
gekozen bestemmingen.  Als u een kant-en-klaar pakket wilt downloaden en
installeren op een GNU/Linux-systeem, dan kunt u beter een pakketbeheerder
zoals yum(1) of apt-get(1) gebruiken.

Bij de eerste drie aanroepvormen wordt BRON naar DOEL gekopieerd, of BRONnen
naar een bestaande MAP, terwijl rechten en eigenaar en groep ingesteld worden.
Bij de vierde vorm worden alle componenten van de gegeven MAP(pen) aangemaakt.

Om een bestand te verwijderen dat begint met een '-', bijvoorbeeld '-foo',
kunt u een van deze commando's gebruiken:
  %s -- -foo
  %s ./-foo

Mogelijkheden voor EENHEID zijn:

Bij tijdsoverschrijding wordt het TERM-signaal naar het COMMANDO verzonden.
Dit signaal beëindigt processen die het signaal niet blokkeren of afvangen.
Het kan nodig zijn om het niet-afvangbare KILL-signaal te gebruiken.

Van de opties '-b', '-c' en '-f' mag er slechts één gegeven worden.
Een LIJST bestaat uit één of meer bereiken gescheiden door komma's,
bijvoorbeeld: 1-4,7,9,12-15.  Geselecteerde invoer wordt uitgevoerd
in dezelfde volgorde als ze gelezen werd en slechts precies één keer.


Typ '%s --coreutils-prog=PROGRAMMANAAM --help' voor hulp bij een programma.

Optie '-s' negeert '-L' en '-P'.  Anders bepaalt de laatst gegeven optie het
gedrag wanneer de bron een symbolische koppeling is; standaard is dit '%s'.

Het gebruik van kleuren om bestandstypes te onderscheiden kan uitgeschakeld
worden met '--color=never' (standaard).  Met '--color=auto' produceert 'ls'
alleen kleurcodes als standaarduitvoer verbonden is met een terminal.
Omgevingsvariabele LS_COLORS kan deze instellingen wijzigen.  Gebruik
het commando 'dircolors' om deze variabele in te stellen.

Wanneer BESTAND1 of BESTAND2 (niet beide) '-' is, wordt standaardinvoer gelezen.

Bij decodering mag de invoer naast de bytes van het formele alfabet ook nog
nieuweregel-tekens bevatten.  Met '--ignore-garbage' kunt u proberen over
andere niet-alfabetische bytes in de gecodeerde reeks tekens te stappen.

Zonder BESTAND, of wanneer BESTAND '-' is, wordt standaardinvoer gelezen.

Zonder opties worden drie kolommen getoond.  De eerste kolom bevat de regels
die uniek zijn voor BESTAND1, de tweede kolom de regels die uniek zijn voor
BESTAND2, en de derde kolom de regels die in beide bestanden voorkomen.

Zonder enige OPTIE wordt een nuttige set identificatie-informatie getoond.

Stuurt een eenduidige representatie (standaard in octale bytes) van het
gegeven BESTAND naar standaarduitvoer.  Bij meer dan één BESTAND, plakt
het deze in de gegeven volgorde achter elkaar om de invoer te vormen.

Uw shell kan een eigen versie van %s hebben, die gewoonlijk prevaleert
boven de hier beschreven versie.  Kijk in de documentatie van uw shell
voor details over de ondersteunde opties.
        ???      --additional-suffix=AVGSL  dit achtervoegsel achter bestandsnamen plakken
      --attributes-only     alleen eigenschappen kopiëren, niet bestandsinhoud
      --author               (met '-l') de auteur van elk bestand tonen
      --backup[=METHODE]    van elk bestemmingsbestand een reservekopie maken
      --base64    base64-gecodeerde controlesommen genereren, niet hexadecimaal
      --batch-size=AANTAL    hoogstens dit aantal invoeren ineens samenvoegen;
                               gebruik tijdelijke bestanden als er meer zijn
  --check-order      controleren of de invoer juist gesorteerd is, zelfs als
                       van alle invoerregels paren gemaakt kunnen worden
      --color[=WANNEER]      bestandstypen met kleuren onderscheiden;
                               WANNEER is 'always' (altijd), 'never' (nooit),
                               of 'auto' (uitvoerapparaatafhankelijk);
                               zie hieronder voor meer informatie
      --compress-program=PROG  tijdelijke bestanden met PROG comprimeren;
                                 decomprimeren met 'PROG -d'
      --context[=CNTXT]   de beveiligingscontext van doelbestand op standaard
                            instellen (of op CNTXT indien gegeven)
      --copy-contents       de inhoud van speciale bestanden kopiëren als er
                              recursief gekopieerd wordt
      --debug                het regeldeel markeren waarop gesorteerd wordt,
                               en waarschuwingen geven bij vreemd gebruik
      --debug          uitleggen hoe een bestand gekopieerd is; impliceert '-v'
      --debug     aangeven welke implementatie gebruikt wordt
      --debug          waarschuwingen tonen bij ongeldige invoer
      --dereference      niet de symbolische koppelingen bewerken maar
                           de bestanden waarnaar ze verwijzen (standaard)
      --dereference      de bestanden bewerken waar symbolische koppelingen
                           naar verwijzen, in plaats van de koppelingen zelf
      --endian={big|little}  invoerbytes verwisselen volgens aangeven volgorde
      --exchange               bron en doel omwisselen
      --exclude=PATROON    bestanden weglaten die overeenkomen met PATROON
      --field=VELDEN   getallen in deze velden vervangen (zie onder)
      --files0-from=LST  invoer lezen uit de bestanden die opgesomd staan in
                           bestand LST, waar elke naam eindigt op een 0-byte;
                           als LST '-' is, dan namen van standaardinvoer lezen
      --filter=COMMANDO   naar dit commando schrijven; bestandsnaam is $FILE
      --first-only    alleen beginwitruimte omzetten (gaat boven '-a')
      --format=OPMAAK  deze drijvende-komma opmaak gebruiken;
                         zie FORMAT hieronder voor details
      --from-unit=GETAL  de grootte van de invoereenheid (in plaats van 1)
      --from=HUIDIGE_EIGENAAR:HUIDIGE_GROEP
                         de eigenaar van een bestand alleen wijzigen als de
                           huidige eigenaar en groep overeenkomen met de hier
                           gegeven; één van de elementen mag weggelaten worden,
                           een overeenkomst daarmee is dan niet vereist
      --from=EENHEID   invoergetallen herschalen naar deze EENHEID (zie onder);
                         standaard is 'none'
      --grouping       door de taalregio bepaalde cijfergroepering gebruiken
                         (heeft dus geen effect in C- of POSIX-taalregio)
      --groups=GROEPENLIJST   extra groepen (kommagescheiden lijst)
      --header[=N]     de eerste N kopregels zonder converteren tonen;
                         N is 1 wanneer niet opgegeven
      --hex-suffixes[=VANAF]  als '-x', maar met VANAF als startwaarde
      --ignore-missing    ontbrekende bestanden stilzwijgend overslaan
      --inodes            informatie over inode-gebruik i.p.v. blokgebruik tonen
      --invalid=MODUS  wat te doen bij ongeldige getallen; MODUS kan zijn:
                         'abort' (standaard), 'fail', 'warn', 'ignore'
      --keep-directory-symlink   symbolische koppelingen naar mappen volgen
      --lookup      de echte hostnamen proberen te vinden via DNS
      --lookup      de echte hostnamen proberen te vinden via DNS
      --message     hetzelfde als '-T'
      --no-copy                niet kopiëren als hernoemen faalt
      --no-preserve-root     '/' niet speciaal behandelen
      --no-preserve-root  '/' niet speciaal behandelen (standaard)
      --no-preserve=LIJST   de genoemde eigenschappen juist niet behouden
      --no-sync             geen 'sync' doen vóór ophalen van info (standaard)
  --nocheck-order    niet controleren of de invoer juist gesorteerd is
      --numeric-suffixes[=VANAF]    als '-d', maar met VANAF als startwaarde
  --output-delimiter=REEKS   deze tekenreeks als kolomscheiding gebruiken
      --output-error[=MODUS]  gedrag bij schrijffout instellen; zie hieronder
      --padding=GETAL  de uitvoer uitvullen tot dit aantal tekens; een positief
                         getal lijnt rechts uit, een negatief getal links;
                         uitvulling wordt genegeerd als de uitvoer breder is;
                         standaard wordt uitgevuld als witruimte gevonden wordt
      --parallel=AANTAL      te gebruiken aantal parallelle sorteerprocessen
      --parents             volledige naam gebruiken van bronbestand onder MAP
      --portability   controle voor alle POSIX-systemen (hetzelfde als -p -P)
      --preserve-context  de SELinux-beveiligingscontext behouden
      --preserve-root     op '/' niet recursief werken
      --preserve[=LIJST]    de genoemde eigenschappen behouden
      --print-ls-colors       volledig aangehaalde kleuren tonen
      --quiet     geen 'goed' tonen voor elk met succes gecontroleerd bestand
      --random-source=BSTND  bestand BSTND is bron van willekeurige bytes
      --raw       een rauwe controlesom genereren, niet hexadecimaal
      --reference=RFBSTND  de groep van RFBSTND gebruiken i.p.v. GROEP-waarde
      --reference=RFBSTND  de eigenaar van dit referentiebestand gebruiken
                             i.p.v. expliciet gegeven waardes
      --reference=REFBESTAND  de beveiligingscontext van REFBESTAND gebruiken
                                in plaats van een CONTEXT-waarde
      --reflink[=WHEN]         kloon/CoW-kopieën controleren; zie hieronder
      --relative-base=MAP      absolute paden tonen behalve wanneer onder MAP
      --relative-to=MAP        het herleide pad relatief tot MAP tonen
      --remove-destination     elk bestaand bestemmingsbestand verwijderen
                                 vóór het openen (anders dan '--force')
      --remove[=HOE]  als '-u', maar zie hieronder voor verwijderingsmethode
      --retry              blijven proberen om een bestand te openen als het
                             ontoegankelijk is
      --round=METHODE  te gebruiken afrondingsmethode bij herschalen;
                         METHODE kan zijn: 'up', 'down',
                         'from-zero' (standaard), 'towards-zero', 'nearest'
      --si                als '-h', maar machten van 1000 i.p.v. 1024 gebruiken
      --si                   idem, maar machten van 1000 i.p.v. 1024 gebruiken
      --skip-chdir            huidige map niet wijzigen naar %s
      --sort=WOORD            volgens deze  methode sorteren; WOORD kan zijn:
                                general-numeric (-g), human-numeric (-h), month
                                (-M), numeric (-n), random (-R), version (-V)
      --sparse=WANNEER          het aanmaken van bestanden met gaten
                                  controleren; zie hieronder
      --status    niets naar de uitvoer sturen; de afsluitwaarde toont succes
      --strict    niet-nul afsluiten bij onjuist opgemaakte controlesomregels
      --strip-program=PRGRMM  te gebruiken programma voor het strippen
      --strip-trailing-slashes  schuine strepen achter elke BRON verwijderen
      --suffix=SUFFIX  dit achtervoegsel toevoegen aan uitvoergetallen,
                         en accepteren bij invoergetallen
      --tag       een controlesom in BSD-stijl genereren
      --tag       een controlesom in BSD-stijl genereren (standaard)
      --to-unit=GETAL  de grootte van de uitvoereenheid (in plaats van 1)
      --to=EENHEID     uitvoergetallen herschalen naar deze EENHEID (zie onder)
  --total                    een samenvatting weergeven
      --traditional          ook argumenten in traditionele vorm accepteren
      --untagged  een omgekeerde controlesom genereren, zonder type
      --userspec=GBRKR:GRP    te gebruiken gebruiker en groep (ID of naam)
      --writable    hetzelfde als '-T'
      --zero                 uitvoerregels eindigen met NUL i.p.v. nieuweregel
   [-]cstopb     twee stopbits per teken gebruiken (één met '-')
   [-]hup        'opgehangen'-signaal sturen wanneer laatste proces de TTY sluit
   [-]hupcl      hetzelfde als '[-]hup'
   [-]parenb     pariteitsbit in uitvoer genereren en in invoer verwachten
   [-]parodd     oneven pariteit instellen (of even pariteit met '-')
   [-]echo       invoertekens echoën
   [-]echoe      hetzelfde als '[-]crterase'
   [-]echok      een nieuweregel-teken echoën na een kill-teken
   [-]echonl     nieuweregel echoën zelfs als geen andere tekens worden geëchood
   [-]icanon     speciale tekens inschakelen: %s
   [-]iexten     niet-POSIX speciale tekens inschakelen
   [-]inlcr      LF-teken (nieuweregel) omzetten in CR-teken (naar regelbegin)
   [-]inpck      controle op invoerpariteit inschakelen
   [-]istrip     hoogste bit (het achtste) van invoertekens nul maken
   [-]isig       speciale tekens voor interrupt, quit, en suspend inschakelen
   [-]noflsh     legen van buffer na interrupt of quit uitschakelen
   [-]ixoff      het zenden van start-/stoptekens inschakelen
   [-]ixon       XON/XOFF-besturing inschakelen
   [-]parmrk     pariteitsfouten markeren (met een 255-0-tekencombinatie)
   [-]tandem     hetzelfde als '[-]ixoff'
   [-]opost      uitvoer nabewerken
   cbreak        hetzelfde als '-icanon'
   -cbreak       hetzelfde als 'icanon'
   cols N        de kernel laten weten dat de terminal N kolommen heeft
 * columns N     hetzelfde als 'cols N'
   cooked        hetzelfde als 'brkint ignpar istrip icrnl ixon opost isig
                   icanon', met eof- en eol-tekens op hun standaardwaarden
   -cooked       hetzelfde als 'raw'
   crt           hetzelfde als '%s'
   csN           tekengrootte op N bits instellen; N in [5..8]
   dec           hetzelfde als '%s intr ^c
                   erase 0177 kill ^u'
   ek            de erase- en kill-tekens op hun standaardwaarden zetten
   evenp         hetzelfde als 'parenb -parodd cs7'
   -evenp        hetzelfde als '-parenb cs8'
   eof TEKEN        TEKEN zendt een einde van bestand (beëindigt de invoer)
   eol TEKEN        TEKEN beëindigt de regel
   erase TEKEN      TEKEN verwijdert het laatst getypte teken
   intr TEKEN       TEKEN zendt een interruptsignaal
   kill TEKEN       TEKEN verwijdert de huidige regel
   ispeed N      de invoersnelheid op N zetten
   litout        hetzelfde als '-parenb -istrip -opost cs8'
   -litout       hetzelfde als 'parenb istrip opost cs7'
   min N         met '-icanon': minimum voor complete leesopdracht is N tekens
   ospeed N      de uitvoersnelheid op N zetten
   nl            hetzelfde als '%s'
   -nl           hetzelfde als '%s'
   oddp          hetzelfde als 'parenb parodd cs7'
   -oddp         hetzelfde als '-parenb cs8'
   [-]parity     hetzelfde als '[-]evenp'
   pass8         hetzelfde als '-parenb -istrip cs8'
   -pass8        hetzelfde als 'parenb istrip cs7'
   quit TEKEN       TEKEN zendt een QUIT-signaal
   raw           hetzelfde als '-ignbrk -brkint -ignpar -parmrk -inpck
                   -istrip -inlcr -igncr -icrnl -ixon -ixoff -icanon
                   -opost -isig%s min 1 time 0'
   -raw          hetzelfde als 'cooked'
   rows N        de kernel laten weten dat de terminal N rijen heeft
   size          het aantal rijen en kolommen volgens de kernel tonen
   sane          hetzelfde als 'cread -ignbrk brkint -inlcr -igncr icrnl
                   icanon iexten echo echoe echok -echonl -noflsh
                   %s
                   %s
                   %s',
                   met alle speciale tekens op hun standaardwaarden
   speed         de snelheid van de terminal tonen
   time N        met '-icanon': leestijdslimiet op N tiende seconde instellen
   start TEKEN      TEKEN herstart de uitvoer als deze gestopt is
   stop TEKEN       TEKEN stopt de uitvoer
   susp TEKEN       TEKEN zendt een terminal-stopsignaal
  %%      een enkel %-teken
  %b      ARGUMENT interpreteren als tekenreeks met bovenstaande '\'-codes,
          behalve dat octale codes met een 0 moeten beginnen, bijv. \0NNN
  %q      ARGUMENT weergeven in een vorm die hergebruikt kan worden als
          shell-invoer, niet-afdrukbare tekens tonend met de $''-syntax

Verder worden alle C-opmaakcodes begrepen die eindigen op een van de tekens
uit 'diouxXfeEgGcs', waarbij de ARGUMENTen eerst geconverteerd worden naar
het juiste type.  Variabele breedtes worden begrepen.
  %A   de volledige naam van de dag volgens de taalregio, (bijv. zondag)
  %b   de afgekorte naam van de maand volgens de taalregio (bijv. jan)
  %B   de volledige naam van de maand volgens de taalregio (bijv. januari)
  %c   de datum/tijd volgens de taalregio (bijv. za 01 okt 2005 16:57:09 CEST)
  %C   de eeuw; als %Y maar zonder de laatste twee cijfers (bijv. 20)
  %d   de dag in de maand (bijv. 01)
  %D   de datum op Amerikaanse manier; hetzelfde als %m/%d/%y
  %e   de dag in de maand, met voorloopspatie; hetzelfde als %_d
  %F   de volledige datum op ISO-manier; hetzelfde als %+4Y-%m-%d
  %g   de laatste twee cijfers van het jaar van het ISO-weeknummer (zie %G)
  %G   het jaar van het ISO-weeknummer (zie %V); normaal alleen nuttig met %V
  %S   de seconde (00...60) (60 kan ook, vanwege schrikkelseconde)
  %t   een horizontale tab
  %T   de tijd; hetzelfde als %H:%M:%S
  %u   de dag van de week (1...7); 1 is maandag
  %U   weeknummer in het jaar, met zondag als eerste dag van de week (00...53)
  %V   ISO-weeknummer, met maandag als eerste dag van de week (01...53)
  %w   de dag van de week (0...6); 0 is zondag
  %W   weeknummer in het jaar, met maandag als eerste dag van de week (00...53)
  %d   apparaatnummer in decimaal (st_dev)
  %D   apparaatnummer in hex (st_dev)
  %Hd  hoofdapparaatnummer in decimaal
  %Ld  subapparaatnummer in decimaal
  %f   ruwe modus in hex
  %F   bestandstype
  %g   groeps-ID van eigenaar
  %G   groepsnaam van eigenaar
  %h   aantal harde koppelingen
  %i   inode-nummer
  %m   aankoppelingspunt
  %n   bestandsnaam
  %N   aangehaalde bestandsnaam (plus doel bij een symbolische koppeling)
  %o   hint voor optimale blokgrootte voor invoer/uitvoer
  %s   totale grootte, in bytes
  %r   apparaattype in decimaal (st_rdev)
  %R   apparaattype in hex (st_rdev)
  %Hr  hoofdapparaattype in decimaal (voor apparaatbestanden)
  %Lr  subapparaattype in decimaal (voor apparaatbestanden)
  %t   hoofdapparaattype in hex (voor apparaatbestanden)
  %T   subapparaattype in hex (voor apparaatbestanden)
  %h   hetzelfde als %b
  %H   het uur (00...23)
  %I   het uur (01...12)
  %j   de dag in het jaar (001...366)
  %i   bestandssysteem-ID in hex
  %l   maximum lengte van bestandsnamen
  %n   bestandsnaam
  %s   optimale grootte van transportblok
  %S   fundamentele blokgrootte (voor blokaantallen)
  %t   bestandssysteemtype in hex
  %T   bestandssysteemtype in leesbare vorm
  %k   het uur, met voorloopspatie ( 0...23); hetzelfde als %_H
  %l   het uur, met voorloopspatie ( 1...12); hetzelfde als %_I
  %m   de maand (01...12)
  %M   de minuut (00...59)
  %n   een nieuwe regel
  %N   de nanoseconden (000000000...999999999)
  %p   het equivalent van AM of PM volgens de taalregio; meestal blanco
  %P   als %p maar in kleine letters
  %q   kwartaal van het jaar (1..4)
  %r   de tijd in 12-uursaanduiding volgens de taalregio (bijv. 11:11:04 PM)
  %R   de tijd in 24-uursaanduiding; hetzelfde als %H:%M
  %s   het aantal seconden sinds het tijdperkbegin (1970-01-01 00:00:00 UTC)
  %u   gebruikers-ID van eigenaar
  %U   gebruikersnaam van eigenaar
  %w   tijdstip van ontstaan van bestand, of '-' als onbekend
  %W   tijdstip van ontstaan, in seconden sinds Epoch, of 0 als onbekend
  %x   tijdstip van laatste toegang
  %X   tijdstip van laatste toegang, in seconden sinds Epoch
  %y   tijdstip van laatste gegevenswijziging
  %Y   tijdstip van laatste gegevenswijziging, in seconden sinds Epoch
  %z   tijdstip van laatste statusverandering
  %Z   tijdstip van laatste statusverandering, in seconden sinds Epoch

  %x   de datumweergave volgens de taalregio (bijv. 31-12-05)
  %X   de tijdweergave volgens de taalregio (bijv. 23:13:48)
  %y   de laatste twee cijfers van het jaar (00...99)
  %Y   het jaar
  %z     numerieke tijdzone in de vorm +hhmm (bijv. -0400)
  %:z    numerieke tijdzone in de vorm +hh:mm (bijv. -04:00)
  %::z   numerieke tijdzone in de vorm +hh:mm:ss (bijv. -04:00:00)
  %:::z  numerieke tijdzone zonder onnodige nakomende nullen (bijv. -04)
  %Z     Engelse letterafkorting voor de tijdzone (bijv. CEST)

Standaard gebruikt 'date' voorloopnullen bij numerieke velden.
  + SYMBOOL             SYMBOOL als tekenreeks interpreteren, zelfs als het
                        een sleutelwoord of operator is, zoals 'match' of '/'

  ( EXPRESSIE )         waarde van EXPRESSIE
  - +OPMAAK (bijvoorbeeld: +%H:%M) voor een opmaak zoals met 'date'
  -1                         één item per regel tonen
  -1    kolom 1 weglaten (regels die alleen in BESTAND1 voorkomen)
  -2    kolom 2 weglaten (regels die alleen in BESTAND2 voorkomen)
  -3    kolom 3 weglaten (regels die in beide bestanden voorkomen)
  -A, --almost-all           als '-a', maar de items '.' en '..' weglaten
  -A, --auto-reference           bestandsnaam- en regelnummer toevoegen
  -A, --show-all           hetzelfde als '-vET'
  -C                         de items in kolommen presenteren
  -C, --check=quiet, --check=silent  als '-c', maar geen melding geven bij
                                       de eerste verkeerde regel
  -C, --line-bytes=N      als '-b' maar bij voorkeur afbreken op regeleinden
  -D                     alle regels tonen die meerdere keren voorkomen
  -D, --dired                uitvoer produceren voor de 'dired'-modus van Emacs
  -E, --canonicalize           laatste component hoeft niet te bestaan (stndrd)
  -E, --show-ends          een $ of ^M$ weergeven aan het einde van elke regel
  -F                       hetzelfde als '--follow=name --retry'
  -F, --classify             achter elk item het type aanduiden (één van */=>@|)
  -F, --file=APPARAAT  te gebruiken apparaat in plaats van standaardinvoer
  -F, --flag-truncation=TEKST    tekenreeks die zinsafbrekingen aangeeft;
                                 standaard is '/'
  -G BESTAND    waar als uw effectieve groep het bestand bezit
  -n, --name      namen in plaats van nummers tonen (bij -g, -G, of -u)
  -G, --traditional              meer zoals de oude 'ptx' van System V
  -H                      hetzelfde als '--dereference-args' (-D)
  -H                        gegeven symbolische koppelingen in BRON volgen
  -H, --heading     een regel met kolomkoppen tonen
  -H, --si                  groottes in machten van 1000 tonen (bijv. 245M)
  -I, --ignore=PATROON       de namen die voldoen aan PATROON niet tonen
  -L BESTAND    waar als bestand een symbolische koppeling is (== '-h')
  -L, --dereference         symbolische koppelingen in BRON altijd volgen
  -L, --dereference       alle symbolische koppelingen volgen
  -L, --dereference     symbolische koppelingen volgen
  -L, --logical               naar diens doel koppelen als DOEL symbolisch is
  -L, --logical                '..'-componenten herleiden vóór sym-koppelingen
  -L, --max-line-length  de maximum weergavebreedte tonen
  -M, --macro-name=NAAM          te gebruiken macronaam in plaats van 'xx'
  -M, --month-sort            ordenen: (onbekend) < 'JAN' < ... < 'DEC'
  -N BESTAND    waar als bestand gewijzigd is sinds het laatst gelezen werd
  -N, --literal              de itemnamen tonen zonder aanhalingen of escapes
  -N, --read-bytes=BYTES     de uitvoer beperken tot dit aantal bytes van invoer
  -O BESTAND    waar als uw effectieve gebruikers-ID het bestand bezit
  -O, --format=roff              als uitvoer 'nroff'-directieven produceren
  -P      symbolische koppelingen niet volgen (standaard)

  -P                  controle uitvoeren op lege namen of "-" vooraan
  -P, --no-dereference    symbolische koppelingen niet volgen (standaard)
  -P, --no-dereference      geen symbolische koppelingen in BRON volgen
  -P, --physical              harde koppelingen direct naar symbolische maken
  -P, --physical               symbolische koppelingen direct herleiden (stndrd)
  -R, --random-sort           husselen, maar identieke sleutels groeperen;
                                zie shuf(1)
  -R, --recursive        bestanden en mappen recursief behandelen
  -R, --recursive            submappen recursief tonen
  -R, --recursive        bestanden en mappen recursief behandelen
  -R, --right-side-refs          referenties rechts, niet meetellen in '-w'
  -R, -r, --recursive          mappen recursief kopiëren
  -S BESTAND    waar als bestand een socket is
  -S, --buffer-size=GROOTTE  te gebruiken grootte voor hoofdgeheugenbuffer
  -S, --sentence-regexp=REGEXP   definieert eind van regels of eind van zinnen
  -S, --separate-dirs     bij mappen de grootte van submappen niet meetellen
  -S, --suffix=ACHTERVOEGSEL    te gebruiken achtervoegsel voor reservekopieën
  -T, --format=tex               als uitvoer 'TeX'-directieven produceren
  -T, --no-target-directory     BESTEMMING behandelen als een normaal bestand
  -T, --no-target-directory   KOPPELINGSNAAM als een normaal bestand behandelen
  -T, --print-type          van elk bestandssysteem ook het type tonen
  -T, --show-tabs          tab-tekens weergeven met ^I
  -T, --tabsize=AANTAL       te gebruiken tabbreedte in plaats van 8
  -T, --temporary-directory=MAP  te gebruiken map voor tijdelijke bestanden,
                                   in plaats van $TMPDIR of %s;
                                   meerdere opties geven meerdere mappen
  -T, -w, --mesg    berichtenstatus van gebruiker toevoegen als '+', '-' of' ?'
  -V, --version-sort          (versie)nummers in de tekst natuurlijk sorteren

  -W, --word-regexp=REGEXP       REGEXP definieert sleutelwoorden
  -X                         alfabetisch sorteren op bestandsextensie
  -X, --exclude-from=BESTAND   bestanden weglaten die overeenkomen met een
                               patroon in BESTAND
  -Z                       de SELinux-beveiligingscontext van doelbestand op
                             standaard instellen
  -Z                       de SELinux-beveiligingscontext van doelbestand op
                             standaard instellen
  -Z, --context              beveiligingscontext van elk bestand tonen
  -g, --group     alleen de effective groeps-ID tonen
  -Z, --context                de SELinux-beveiligingscontext van doelbestand
                                 op standaardtype instellen
  -a                  alleen de toegangstijd veranderen
  -a              (genegeerde optie, voor compatibiliteit met andere versies)
  -a   als '-t a':  tekennamen tonen, het hoogste bit negerend
  -a, --all           alle witruimte omzetten, niet alleen die aan regelbegin
  -a, --all                  ook de namen tonen die beginnen met een '.'
  -a, --all                 ook pseudo-, duplicaat, en ontoegankelijke
                              bestandssystemen tonen
  -a, --all               waardes tonen voor alle bestanden, niet alleen mappen
  -a, --all            alle huidige instellingen in leesbare vorm tonen
  -a, --all         hetzelfde als '-b -d --login -p -r -t -T -u'
  -a, --append              aan BESTAND(en) toevoegen, niet overschrijven
  -a, --archive             hetzelfde als '-dR --preserve=all'
  -a, --multiple        meerdere argumenten toestaan en elk als NAAM behandelen
  -a, --suffix-length=L   achtervoegsels gebruiken met deze lengte (standaard %d)
  -b                        als '--backup', maar accepteert geen argument
  -b    de standaardmap en -shell weglaten in de lange uitvoer
  -b   als '-t o1': octale getallen van 1 byte tonen
  -b BESTAND    waar als bestand een blok-apparaat is
  -b, --before            scheider vóór i.p.v. achter de regel plaatsen
  -b, --binary    in binaire modus lezen
  -b, --binary    in binaire modus lezen (standaard, behalve bij standaardinvoer)
  -b, --body-numbering=STIJL     te gebruiken stijl voor regelnummering
  -b, --boot        tijdstip van de laatste systeemstart tonen
  -b, --break-file=BESTAND       woordafbreektekens staan in dit BESTAND
  -b, --bytes         bytes tellen in plaats van kolommen
  -b, --bytes             hetzelfde als '--apparent-size --block-size=1'
  -b, --bytes=LIJST       alleen deze bytes tonen
  -b, --bytes=N           dit aantal bytes in elk uitvoerbestand plaatsen
  -b, --escape               niet-grafische tekens tonen als codes in C-stijl
  -b, --ignore-leading-blanks   voorloopwitruimte negeren
  -b, --number-nonblank    niet-blanco uitvoerregels nummeren (negeert '-n')
  -b, --suffix-format=OPMAAK  te gebruiken sprintf-opmaak in plaats van '%02d'
  -c                      (genegeerde optie)
  -c   als '-t c':  afdrukbare tekens of backslash-codes tonen
  -c BESTAND    waar als bestand een byte-apparaat is
  -c, --bytes            het aantal bytes tonen
  -c, --changes            een melding geven voor elk veranderd bestand
  -c, --characters    tekens tellen in plaats van kolommen
  -c, --characters=LIJST  alleen deze tekens tonen
  -c, --check     controlesommen uit BESTAND(en) lezen en controleren
  -c, --check, --check=diagnose-first  controleren of invoer gesorteerd is;
                                         niet sorteren
  -c, --compute         procesovergangscontext berekenen vóór het wijzigen
  -c, --count            het aantal gelijke regels vooraan de regel zetten
  -c, --crown-margin        inspringing van eerste twee regels behouden
  -c, --no-create     geen nieuwe bestanden aanmaken
  -c, --no-create        geen bestanden aanmaken
  -c, --total             een eindtotaal tonen
  -d                        hetzelfde als '--no-dereference --preserve=links'
  -d                      cijfers i.p.v. letters als achtervoegsels gebruiken
  -d   als '-t u2': decimale getallen van 2 bytes zonder teken tonen
  -d BESTAND    waar als bestand een map is
  -d, --data           alleen de bestandsgegevens syncen, geen onnodige metadata
  -d, --date=TEKST    deze TEKST interpreteren en als tijdsstempel gebruiken
                        in plaats van de huidige tijd
  -d, --dead        dode processen tonen
  -d, --decode          de gegevens decoderen
  -d, --delete            tekens in SET1 verwijderen, niet omzetten
  -d, --delimiter=TEKEN   dit veldscheidingsteken gebruiken in plaats van TAB
  -d, --delimiter=X    te gebruiken scheidingsteken (in plaats van witruimte)
  -d, --dictionary-order      alleen witruimte, letters en cijfers beschouwen
  -d, --dir               lege mappen verwijderen
  -d, --directory     een map aanmaken, geen bestand
  -d, --directory            alleen mapnamen tonen, niet hun inhoud
  -d, --repeated         alleen de regels tonen die meerdere keren voorkomen
  -d, --section-delimiter=TT     te gebruiken tekenpaar voor paginascheiding
  -e                       hetzelfde als '-vE'
  -e BESTAND    waar als bestand bestaat
  -e, --canonicalize-existing  alle componenten van het pad moeten bestaan
  -e, --echo                 gegeven ARGUMENTen als invoerregels gebruiken
  -e, --elide-empty-files     met '-n': geen lege bestanden produceren
  -e, --error=MODUS   de standaardfoutuitvoer-streambuffering aanpassen
  -f                  (genegeerde optie)
  -f                         hetzelfde als '-a -U' zonder '-l -s --color'
  -f    de kopregel weglaten in de korte uitvoer
  -f   als '-t fF': drijvendekommagetallen tonen
  -f BESTAND    waar als bestand een gewoon bestand is
  -f, --file-system     status tonen van bestandssysteem i.p.v. van bestand
  -f, --file-system    de bestandssystemen syncen waarop gegeven bestanden staan
  -f, --footer-numbering=STIJL   stijl voor de nummering van voetregels
  -f, --force    zo nodig toegangsrechten wijzigen om schrijven toe te staan
  -f, --force                  niets vragen alvorens te overschrijven
  -f, --force               als bestaand bestemmingsbestand niet geopend kan
                              worden, het verwijderen en het opnieuw proberen
                              (wordt genegeerd als ook optie '-n' gegeven is)
  -f, --force             niet-bestaande argumenten negeren, geen vragen stellen
  -f, --force                 bestaande bestemmingsbestanden verwijderen
  -f, --format=OPMAAK     te gebruiken drijvendekomma-opmaak (als bij 'printf')
  -f, --ignore-case           kleine letters als hoofdletters beschouwen
  -f, --ignore-case              kleine letters als hoofdletters beschouwen
  -f, --prefix=VOORVOEGSEL    te gebruiken voorvoegsel in plaats van 'xx'
  -f, --silent, --quiet    de meeste foutmeldingen onderdrukken
  -g BESTAND    waar als het bestand SETGUID is
  -g, --gap-size=GETAL           ruimte (in kolommen) tussen uitvoervelden
  -g, --general-numeric-sort  volgens algemene numerieke waarden vergelijken
  -g, --goal=GETAL          doelbreedte (standaard 93% van maximale breedte)
  -G, --groups    alle groeps-ID's tonen
  -g, --group=GROEP       deze groep instellen i.p.v. groep van huidig proces
  -g, --save           alle huidige instellingen in herbruikbare vorm tonen
  -h    het projectbestand weglaten in de lange uitvoer
  -h BESTAND    waar als bestand een symbolische koppeling is (== '-L')
  -h, --header-numbering=STIJL   stijl voor de nummering van kopregels
  -h, --human-numeric-sort    leesbare getallen vergelijken (bijv.: 2K 1G)
  -h, --human-readable    groottes in leesbare vorm tonen (bijv. 15K, 234M, 2G)
  -h, --human-readable      groottes in machten van 1024 tonen (bijv. 234M)
  -h, --human-readable       groottes in leesbare vorm tonen (samen met -l/-s))
  -h, --no-dereference   de symbolische koppelingen zelf bewerken, in plaats
                           van de bestanden waarnaar ze verwijzen
  -h, --no-dereference   de symbolische koppelingen zelf bewerken in plaats
                           van de bestanden waarnaar ze verwijzen
  -h  --no-dereference   symbolische koppelingen bewerken in plaats van de
                           bestanden waarnaar ze verwijzen
                           (alleen nuttig op systemen waar de eigenaar van
                           een symbolische koppeling veranderd kan worden)
  -i                      voor elke verwijdering om bevestiging vragen
  -i    de volledige naam en de externe host weglaten in de korte uitvoer
  -i   als '-t dI': decimale korte gehele getallen tonen
  -i, --hardware-platform  het hardwareplatform tonen  (niet-overdraagbaar)
  -i, --ignore-case      verschil tussen hoofd- en kleine letters negeren
  -i, --ignore-case  verschil in hoofd- en kleine letters negeren
  -i, --ignore-environment   alle ongenoemde omgevingsvariabelen verwijderen
  -i, --ignore-file=BESTAND      BESTAND met woorden die niet meedoen
  -i, --ignore-garbage  (bij decoderen) niet-alfabetische tekens negeren
  -i, --ignore-interrupts   interruptsignalen negeren
  -i, --ignore-nonprinting    alleen afdrukbare tekens beschouwen
  -i, --initial       tabs na niet-witruimte niet converteren
  -i, --inode                het indexnummer van elk bestand tonen
  -i, --inodes              inode-informatie tonen in plaats van blokgebruik
  -i, --input-range=LG-HG    getallenreeks van LG tot HG als invoerregels zien
  -i, --input=MODUS   de standaardinvoer-streambuffering aanpassen
  -i, --interactive            voor overschrijven om toestemming vragen
  -i, --interactive         voor overschrijven om toestemming vragen
                              (gaat boven een eerdere optie '-n')
  -i, --interactive           vragen of reeds bestaande namen verwijderd mogen
  -i, --page-increment=GETAL     regelnummer na elke regel met dit getal ophogen
  -j, --skip-bytes=BYTES     dit aantal bytes aan begin van invoer overslaan
  -k BESTAND    waar als bestand het "sticky"-bit aan heeft staan
  -k, --keep-files            uitvoerbestanden niet verwijderen bij fouten
  -k, --key=SLEUTELOPGAVE    sorteren via een sleutel; de SLEUTELOPGAVE geeft
                               locatie en type (zie hieronder)
  -l    de lange uitvoer tonen voor de gegeven GEBRUIKER(s)
  -l   als '-t dL': decimale lange gehele getallen tonen
  -l, --count-links       de grootte tellen voor elke harde koppeling
  -l, --join-blank-lines=AANTAL  dit aantal lege regels als één regel tellen
  -l, --length=GETAL    lengte van de som in bits; mag niet groter zijn dan het
                          maximum, en moet een veelvoud van 8 zijn voor blake2b;
                          moet 224, 256, 384, of 512 zijn voor sha2 of sha3
  -l, --lines            het aantal regels tonen (in feite het aantal LF-tekens)
  -l, --lines=AANTAL      dit aantal regels in elk uitvoerbestand plaatsen
  -l, --link                harde koppelingen maken in plaats van kopieën
  -l, --list       alle beschikbare signaalnamen opsommen, of een gegeven
                     signaalnaam converteren naar een nummer of omgekeerd
  -l, --local               de opsomming beperken tot lokale bestandssystemen
  -l, --login       de inlogprocessen tonen
  -l, --range=BEREIK     dit bereik instellen in de doel-beveiligingscontext
  -u, --user=GEBRUIKER  te gebruiken gebruikersidentiteit
  -m                  alleen de wijzigingstijd veranderen
  -m                      hetzelfde als '--block-size=1M'
  -m                alleen hostnaam en gebruiker verbonden met standaardinvoer
  -m, --canonicalize-missing   geen van de padcomponenten hoeft te bestaan noch
                                 een map te zijn
  -m, --chars            het aantal tekens tonen
  -m, --machine            de hardwareklasse van de machine tonen
  -m, --merge                gesorteerde bestanden samenvoegen; niet sorteren
  -m, --mode=MODUS   in te stellen rechten (zie 'chmod'), i.p.v. 'a=rwx - umask'
  -m, --mode=MODUS        deze toegangsrechten instellen i.p.v. 'rwxr-xr-x'
  -n                      (genegeerde optie)
  -n, --adjustment=GETAL  dit getal (standaard 10) optellen bij de beleefdheid
  -n, --digits=AANTAL         te gebruiken aantal cijfers in plaats van 2
  -n, --head-count=AANTAL    maximum aantal uit te voeren regels
  -n, --iterations=N  dit aantal malen overschijven (i.p.v. de standaard %d)
  -r, --real      echte ID i.p.v. effectieve ID tonen (bij -g, -G, of -u)
  -n, --no-clobber          [verouderd] bestaande bestanden niet overschrijven
                              (gaat boven '-u' of een eerdere '-i')
  -n, --no-clobber             geen bestaand bestand overschrijven
  -n, --no-newline   geen scheidingsteken achtervoegen
  -n, --nodename           de hostnaam van de machine tonen
  -n, --number             alle uitvoerregels nummeren
  -n, --number-format=OPMAAK     te gebruiken OPMAAK voor regelnummers
  -n, --number=BROKKEN    dit soort uitvoerbestanden produceren; zie hieronder
  -n, --numeric-sort          ordenen volgens numerieke waarden
  -n, --numeric-uid-gid      als '-l', met numerieke gebruikers- en groeps-ID's
  -o                         als '-l', maar groepsinformatie niet tonen
  -o   als '-t o2': octale getallen van 2 bytes tonen
  -o, --io-blocks        GROOTTE zien als aantal IO-blokken in plaats van bytes
  -o, --only-file=BESTAND        BESTAND met woorden die alleen meedoen
  -o, --operating-system   het soort besturingssysteem tonen
  -o, --output=BESTAND       resultaat naar BESTAND i.p.v. naar standaarduitvoer
  -o, --output=BESTAND       uitvoer naar BESTAND i.p.v. naar standaarduitvoer
  -o, --output=MODUS  de standaarduitvoer-streambuffering aanpassen
  -o, --owner=GEBRUIKER   deze eigenaar instellen (alleen voor systeembeheerder)
  -p                        schrijffouten naar niet-pijpen diagnosticeren
  -p                        hetzelfde als '--preserve=mode,ownership,timestamps'
  -p                  controle uitvoeren voor de meeste POSIX-systemen
  -p    het planbestand weglaten in de lange uitvoer
  -p BESTAND    waar als bestand een benoemde pijp is
  -p, --no-renumber              regelnummer niet resetten voor elke sectie
  -p, --print-database        de standaard kleurenlijst tonen
  -p, --process     de actieve processen gestart door 'init' tonen
  -p, --processor          de processornaam tonen  (niet-overdraagbaar)
  -q    volledige naam, externe host en inactief weglaten in de korte uitvoer
  -q, --count       de namen van en het totaal aantal ingelogde gebruikers
  -q, --quiet
  -q, --quiet         foutmeldingen over mislukte aanmakingen onderdrukken
  -q, --quiet                  de meeste foutmeldingen onderdrukken
  -r              BSD-sommatie-algoritme gebruiken (standaard) en 1K-blokken
  -r BESTAND    waar als bestand voor u leesbaar is
  -r, --kernel-release     het versienummer van de kernel tonen
  -u, --user      alleen de effectieve gebruikers-ID tonen
  -r, --reference=BESTAND   de tijdsstempels van dit bestand gebruiken
  -r, --reference=BESTAND  de grootte van dit BESTAND gebruiken
  -r, --references               eerste veld van elke regel is een referentie
  -r, --regex             scheider als reguliere expressie interpreteren
  -r, --relative              met -s, koppelingen relatief maken t.o.v. plek
  -r, --repeat               uitvoerregels mogen herhaald worden
  -r, --reverse              de sorteervolgorde omdraaien
  -r, --reverse               het resultaat van de vergelijking omkeren
  -r, --role=ROL         deze rol instellen in de doel-beveiligingscontext
  -t, --type=TYPE       te gebruiken type (voor dezelfde rol als de ouder)
  -r, --runlevel    het huidige run-level tonen
  -s    de korte uitvoer tonen (standaard)
  -s   als '-t d2': decimale getallen van 2 bytes tonen
  -s BESTAND    waar als bestand niet leeg is
  -s, --kernel-name        het soort kernel tonen
  -s, --number-separator=TEKST   toe te voegen tekst na (mogelijk) regelnummer
  -s, --only-delimited    alleen regels tonen die scheidingstekens bevatten
  -s, --separator=TEKST   te gebruiken getallenscheiding (standaard: \n)
  -s, --separator=TEKST   deze scheider gebruiken in plaats van nieuweregel
  -s, --set=DATUMTIJD          deze tijd en/of datum instellen
  -s, --short       alleen naam, terminal, en inlogtijd tonen (standaard)
  -s, --size                 toegewezen aantal blokken tonen voor ieder bestand
  -s, --size=N   dit aantal bytes vernietigen (achtervoegsels als K, M, G mogen)
  -s, --size=GROOTTE     deze GROOTTE gebruiken
  -s, --skip-chars=N     de eerste N tekens niet vergelijken
  -s, --split-only          lange regels splitsen maar niet opnieuw uitvullen
  -s, --squeeze-blank      opeenvolgende blanco regels comprimeren tot één
  -s, --stable               het sorteren stabiliseren door uitschakelen van de
                               noodvergelijking als niets werkt
  -s, --strip                 symbooltabellen uit programma's verwijderen
  -s, --strip, --no-symlinks   symbolische koppelingen niet herleiden
  -s, --suffix=VOEGSEL  dit achtervoegsel verwijderen; impliceert '-a'
  -s, --summarize         voor elk gegeven argument alleen een totaal tonen
  -s, --symbolic              symbolische in plaats van harde koppelingen maken
  -s, --symbolic-link           symbolische koppeling maken i.p.v. kopie
  -s, --sysv      System V-sommatie-algoritme gebruiken en blokken van 512 bytes
  -t                         op tijd sorteren; zie '--time'
  -t                       hetzelfde als '-vT'
  -t DSCRIPTR   waar als deze bestandsdescriptor geopend is op een terminal
  -t, --field-separator=TKN  veldscheidingsteken i.p.v. overgang naar witruimte
  -t, --format=TYPE          te gebruiken type opmaak voor de uitvoer
  -t, --table      een tabel met signaalnummers, -namen en betekenissen tonen
  -t, --tabs=GETAL    te gebruiken tabbreedte in plaats van 8 (activeert '-a')
  -t, --tabs=GETAL    te gebruiken tabbreedte in plaats van 8
  -t, --tagged-paragraph    inspringing van eerste regel verschilt van tweede
  -t, --target-directory=MAP    alle BRON-argumenten naar deze MAP kopiëren
  -t, --target-directory=MAP   alle BRON-argumenten naar MAP kopiëren
  -t, --terse           de informatie in beknopte vorm tonen
  -t, --text      in tekstmodus lezen (standaard bij lezen van terminalinvoer)
  -t, --text      in tekstmodus lezen (standaard)
  -t, --time        de laatste wijziging van de systeemklok tonen
  -t, --truncate-set1     SET1 eerst afkappen tot de lengte van SET2
  -t, --type=TYPE           alleen bestandssystemen van dit type tonen
  -t, --type=TYPE        dit type instellen in de doel-beveiligingscontext
  -l, --range=BEREIK    te gebruiken niveaubereik
  -u,            na het overschrijven het bestand ontreserveren en verwijderen
  -u                       (genegeerde optie)
  -u BESTAND    waar als bestand SETUID is
  -u, --dry-run       niets aanmaken; enkel een naam tonen (onveilig)
  -u, --unbuffered        invoer direct naar uitvoer kopiëren met '-n r/...'
  -u, --uniform-spacing     één spatie tussen woorden, twee na een zin
  -u, --unique           alleen unieke regels tonen
  -u, --unique               zonder '-c': van gelijken alleen de eerste tonen;
                               met '-c': op strikte ordening controleren
  -u, --unset=NAAM      de genoemde variabele uit de omgeving verwijderen
  -Z, --context   alleen de beveiligingscontext van het proces tonen
  -u, --user=GEBRUIKER   deze gebruiker instellen in doel-beveiligingscontext
  -r, --role=ROL        te gebruiken rol
  -v                        (genegeerde optie)
  -v, --kernel-version     compilatienummer en -datum van de kernel tonen
  -v, --output-duplicates    duplicaten tonen, i.p.v. '*' voor regelweglating
  -v, --show-nonprinting   notatie met ^ en M- gebruiken, behalve voor LF/TAB
  -v, --starting-line-number=GETAL  eerste regelnummer voor elke sectie
  -v, --verbose            altijd bestandsnaamkopjes tonen
  -v, --verbose            altijd bestandsnaamkopjes tonen
  -v, --verbose                tonen wat er gedaan wordt
  -v, --verbose            een melding geven voor elk gezien bestand
  -v, --verbose      een melding geven voor elke aangemaakte map
  -v, --verbose               naam en doel van elke gemaakte koppeling tonen
  -w    de volledige naam van de gebruiker weglaten in de korte uitvoer
  -w BESTAND    waar als bestand voor u schrijfbaar is
  -w, --equal-width       breedte gelijkmaken door toevoegen van voorloopnullen
  -w, --number-width=AANTAL      aantal te gebruiken kolommen voor regelnummers
  -w, --warn      waarschuwen bij onjuist opgemaakte controlesomregels

  -w, --width=BREEDTE        te gebruiken schermbreedte; 0 betekent onbegrensd
  -w, --width=GETAL              uitvoerbreedte in kolommen, zonder referentie
  -w, --width=GETAL         maximale regelbreedte (standaard is 75)
  -w, --width=GETAL   te gebruiken afbreekbreedte in plaats van 80
  -w, --words            het aantal woorden tonen
  -w, --wrap=AANTAL     naar de volgende regel gaan na dit aantal gecodeerde
                        tekens (standaard 76); gebruik 0 voor één lange regel
  -x                         de items per regel tonen i.p.v. in kolommen
  -x                      hex-achtervoegsels gebruiken, vanaf 0, niet alfabetisch
  -x   als '-t x2': hexadecimale getallen van 2 bytes tonen
  -x BESTAND    waar als bestand door u uitvoerbaar (of doorzoekbaar) is
  -x, --exclude-type=TYPE   bestandssystemen van dit type niet tonen
  -x, --one-file-system    mappen op andere bestandssystemen overslaan
  -x, --one-file-system        op dit bestandssysteem blijven
  -z, --elide-empty-files     lege uitvoerbestanden niet vermelden
  -z, --zero     tot slot met nullen overschrijven om vernietiging te verhullen
  -z, --zero            elke regel afsluiten met 0-byte, niet met nieuweregel
  -z, --zero     elke regel afsluiten met 0-byte, niet met nieuweregel,
                   en bestandsnaam-escapes uitschakelen
  -z, --zero                   regels afsluiten met 0-byte, niet met nieuweregel
  -z, --zero-terminated      regels afsluiten met 0-byte, niet met nieuweregel
  -z, --zero-terminated      regels afsluiten met 0-byte, niet met nieuweregel
CONTEXT is een volledige SELinux-beveiligingscontext.

  BESTAND1 -ef BESTAND2    waar als hun apparaat- en inode-nummers gelijk zijn
  BESTAND1 -nt BESTAND2    waar als BESTAND1 nieuwer is dan BESTAND2
  BESTAND1 -ot BESTAND2    waar als BESTAND1 ouder is dan BESTAND2
  Bestand: "%n"
       ID: %-8i   Naamlengte: %-7l   Type: %T
Blokgrootte: %-10s   Fundamentele blokgrootte: %S
Blokken:  totaal: %-10b   vrij: %-10f   beschikbaar: %a
Inodes:   totaal: %-10c   vrij: %d
  Bestand: %N
  Grootte: %-10s     Blokken: %-10b IO-blok: %-6o %F
  GETAL1 -eq GETAL2    waar als de twee gehele getallen gelijk zijn
  GETAL1 -ge GETAL2    waar als GETAL1 groter of gelijk is aan GETAL2
  GETAL1 -gt GETAL2    waar als GETAL1 groter is dan GETAL2
  GETAL1 -le GETAL2    waar als GETAL1 kleiner of gelijk is aan GETAL2
  GETAL1 -lt GETAL2    waar als GETAL1 kleiner is dan GETAL2
  GETAL1 -ne GETAL2    waar als GETAL1 en GETAL2 verschillend zijn
  Processen in
een niet-onderbreekbare slaapstatus dragen ook bij aan het belastingsgemiddelde.
  [:graph:]       alle afdrukbare tekens, exclusief de spatie
  [:lower:]       alle kleine letters
  [:print:]       alle afdrukbare tekens, inclusief spatie
  [:punct:]       alle interpunctietekens
  [:space:]       alle horizontale en verticale witruimte
  [:upper:]       alle hoofdletters
  [:xdigit:]      alle hexadecimale tekens
  [=TEKEN=]       alle tekens die equivalent zijn aan TEKEN
  \0NNN  byte met octale waarde NNN (1 tot 3 cijfers)
  \xHH   byte met hexadecimale waarde HH (1 tot 2 cijfers/letters)
  \NNN    byte met octale waarde NNN (1 tot 3 cijfers)
  \xHH    byte met hexadecimale waarde HH (1 of 2 cijfers)
  \uHHHH  Unicode-teken (ISO/IEC 10646) met hexadecimale waarde HHHH (4 cijfers)
  \UHHHHHHHH  Unicode-teken met hexadecimale waarde HHHHHHHH (8 cijfers)
  \\     een backslash
  \a     geluidssignaal
  \b     backspace
  \c     geen verdere uitvoer produceren
  \e     escape
  \f     nieuwe pagina (FF-teken)
  \n     nieuwe regel (LF-teken)
  \r     naar begin van regel (CR-teken)
  \t     horizontale tab
  \v     verticale tab
  \v              verticale tab
  TEKEN1-TEKEN2   alle tekens van TEKEN1 t/m TEKEN2 in oplopende volgorde
  [TEKEN*]        in SET2: kopieën van TEKEN tot de lengte van SET1
  [TEKEN*AANTAL]  een specifiek aantal kopieën van TEKEN;
                    AANTAL is octaal als het begint met 0
  [:alnum:]       alle letters en cijfers
  [:alpha:]       alle letters
  [:blank:]       alle horizontale witruimte
  [:cntrl:]       alle stuurtekens
  [:digit:]       alle cijfers
  ascii      van EBCDIC naar ASCII
  ebcdic     van ASCII maar EBCDIC
  ibm        van ASCII naar alternatieve EBCDIC
  block      met LF afgesloten records met spaties uitvullen tot 'cbs'-lengte
  unblock    nakomende spaties in records met 'cbs'-lengte vervangen door LF
  lcase      hoofdletters vervangen door kleine letters
  ucase      kleine letters vervangen door hoofdletters
  sparse     blokken met enkel NUL-tekens overspringen i.p.v. te schrijven
  swab       elke twee invoerbytes van positie omwisselen
  sync       elk invoerblok uitvullen met NUL-tekens tot 'ibs'-lengte; wanneer
               samen met 'block' of 'unblock', dan uitvullen met spaties
  auto       een optioneel achtervoegsel van één of twee letters accepteren:
               1K = 1000, 1Ki = 1024, 1M = 1000000, 1Mi = 1048576, ...
  binary     binaire I/O gebruiken voor de gegevens
  bs=BYTES         aantal tegelijk te lezen en te schrijven bytes (standaard: 512);
                     dit overstijgt 'ibs' en 'obs'
  cbs=BYTES        steeds dit aantal bytes tegelijk converteren
  cio        gelijktijdige I/O gebruiken voor de gegevens
  conv=CONVERSIES  bestand converteren volgens deze kommagescheiden methodes
  count=BLOKKEN    slechts dit aantal invoerblokken kopiëren
  d[AANTAL]  decimaal getal met plus- of minteken, met AANTAL bytes per getal
  f[AANTAL]  drijvendekommagetal, met AANTAL bytes per getal
  o[AANTAL]  octaal getal, met AANTAL bytes per getal
  u[AANTAL]  decimaal getal zonder teken, met AANTAL bytes per getal
  x[AANTAL]  hexadecimaal getal, met AANTAL bytes per getal
  direct     directe I/O gebruiken voor de gegevens
  directory  weigeren als het geen map is
  dsync      gesynchroniseerde I/O gebruiken voor de gegevens
  excl       weigeren als het uitvoerbestand al bestaat
  nocreat    het uitvoerbestand niet aanmaken
  notrunc    het uitvoerbestand niet verkorten
  noerror    doorgaan ook na leesfouten
  fdatasync  het uitvoerbestand fysiek naar schijf schrijven vóór afsluiten
  fsync      idem, maar ook de metagegevens schrijven
  fullblock  volledige blokken invoer verzamelen (alleen bij 'iflag')
  ibs=BYTES        aantal tegelijk te lezen bytes (standaard: 512)
  iec        een optioneel achtervoegsel van één letter accepteren:
               1K = 1024, 1M = 1048576, ...
  iec-i      een optioneel achtervoegsel van twee letters accepteren:
               1Ki = 1024, 1Mi = 1048576, ...
  if=BESTAND       uit dit bestand lezen i.p.v. van standaardinvoer
  iflag=VLAGGEN    lezen met deze kommagescheiden eigenschappen
  noatime    toegangstijdsstempels niet wijzigen
  nocache    om het vergeten van cache verzoeken; zie ook 'oflag=sync'
  noctty     bestand is geen besturende terminal
  nofollow   symbolische koppelingen niet volgen
  nolinks    weigeren als bestand meer dan één harde koppeling heeft
  nonblock   niet-blokkerende I/O gebruiken
  none       geen automatische herschaling; achtervoegsels geven een fout
  none, off        nooit reservekopieën maken (zelfs niet met '--backup')
  numbered, t      genummerde reservekopieën maken
  existing, nil    genummerde reserves maken als er al zijn, anders simpele
  simple, never    altijd simpele reservekopieën maken
  obs=BYTES        aantal tegelijk te schrijven bytes (standaard: 512)
  of=BESTAND       naar dit bestand schrijven i.p.v. naar standaarduitvoer
  oflag=VLAGGEN    schrijven met deze kommagescheiden eigenschappen
  si         een optioneel achtervoegsel van één letter accepteren:
               1K = 1000, 1M = 1000000, ...
  status=WOORD     bepaalde informatie naar standaardfoutuitvoer sturen;
                     'progress' toont regelmatig verplaatsingsstatistieken;
                     'noxfer' onderdrukt de slot-verplaatsingsstatistieken;
                     'none' onderdrukt alles behalve foutmeldingen
  sync       idem, maar ook voor de metagegevens
  text       tekst-I/O gebruiken voor de gegevens
 %H:%M:%S   (reservekopie: %s) * [-]LCASE      hetzelfde als '[-]lcase'
 * [-]cdtrdsr    DTR/DSR-handshake inschakelen
 * [-]cmspar     "stick"-pariteit (altijd aan of uit) gebruiken
 * [-]crtscts    RTS/CTS-handshake inschakelen
 * [-]ctlecho    stuurtekens in dakjesnotatie echoën (^c)
 * [-]decctlq    hetzelfde als '[-]ixany'
 * [-]drain      op verzending wachten vóór toepassen van instellingen (standaard %s)
 * [-]echoctl    hetzelfde als '[-]ctlecho'
 * [-]echoke     hetzelfde als '[-]crtkill'
 * [-]echoprt    verwijderde tekens achterwaarts echoën, tussen '\' en '/'
 * [-]extproc    "LINEMODE" inschakelen; nuttig bij zeer trage verbindingen
 * [-]flusho     uitvoer verwerpen
 * [-]imaxbel    piep geven en een volle invoerbuffer niet legen bij een teken
 * [-]iuclc      hoofdletters omzetten in kleine letters
 * [-]iutf8      aannemen dat invoertekens in UTF-8 gecodeerd zijn
 * [-]ixany      elk teken de uitvoer laten herstarten, niet alleen startteken
 * [-]lcase      hetzelfde als 'xcase iuclc olcuc'
 * [-]ocrnl      CR-teken (naar regelbegin) omzetten in LF-teken (nieuweregel)
 * [-]ofdel      als opvulling DEL-tekens gebruiken in plaats van NUL-tekens
 * [-]ofill      voor vertragingen opvultekens gebruiken in plaats van pauzes
 * [-]olcuc      kleine letters omzetten in hoofdletters
 * [-]onlcr      LF-teken (nieuweregel) omzetten in CR- + LF-tekens
 * [-]onlret     'nieuweregel' voert een 'naar regelbegin' uit
 * [-]onocr      geen 'naar regelbegin' uitvoeren wanneer in de eerste kolom
 * [-]prterase   hetzelfde als '[-]echoprt'
 * [-]tostop     achtergrondtaken stoppen die naar de terminal willen schrijven
 * [-]xcase      met 'icanon': '\' voor kleine letter maakt hoofdletter
 * bsN           backspace-vertragingsstijl; N in [0..1]
 * crN           'carriage return'-vertragingsstijl, N in [0..3]
 * crtkill       gehele regel verwijderen via 'echoprt' en 'echoe'
 * -crtkill      gehele regel verwijderen via 'echoctl' en 'echok'
 * discard TEKEN    TEKEN schakelt het verwerpen van de uitvoer om
 * dsusp TEKEN      TEKEN zendt een terminal-stopsignaal zodra invoer leeg is
 * eol2 TEKEN       alternatief TEKEN voor regelbeëindiging
 * ffN           'form feed'-vertragingsstijl; N in [0..1]
 * line N        lijnprotocol N gebruiken
 * lnext TEKEN      TEKEN voert het volgende teken aangehaald in
 * nlN           nieuweregel-vertragingsstijl; N in [0..1]
 * rprnt TEKEN      TEKEN herschrijft de huidige regel
 * status TEKEN     TEKEN zendt een INFO-signaal
 * swtch TEKEN      TEKEN schakelt naar een andere shell-laag
 * tabN          vertragingsstijl voor horizontale tab; N in [0..3]
 * tabs          hetzelfde als 'tab0'
 * -tabs         hetzelfde als 'tab3'
 * vtN           vertragingsstijl voor verticale tab; N in [0..1]
 * werase TEKEN     TEKEN verwijdert het laatst getypte woord
 ??:??     TTY context=%s EGID=%ju EUID=%ju GID=%ju groepen= oud  tijdens herhaling %jd
% = 1% van het geheugen, b = 1, K = 1024 (standaard), M = 1024*1024,
G = 1024*1024*1024, en zo verder voor T, P, E, Z, Y, R, en Q.

**WAARSCHUWING**: De taalregio gespecificeerd in de omgeving beïnvloedt de
sorteervolgorde.  Stel 'LC_ALL=C' in voor de traditionele sorteervolgorde
die de gewone bytewaarde gebruikt.
%.*s: ongeldige conversiespecificatie%e %b  %Y%e %b %H:%M%jd byte gekopieerd, %s, %s%jd bytes gekopieerd, %s, %s%jd bytes (%s) gekopieerd, %s, %s%jd bytes (%s, %s) gekopieerd, %s, %s%jd afgebroken record
%jd afgebroken records
%jd+%jd records gelezen
%jd+%jd records geschreven
%ju-%s%s (voor reguliere expressie %s)%s -> %s (uit reservekopie hersteld)
%s [-d] is niet normaal geëindigd%s en %s zijn hetzelfde bestandkon geen toegang krijgen tot %s
'%s' accepteert geen '-l'%s bestaat maar is geen map%s werd verwacht%s werd verwacht, %s gevonden%s is verschenen;  het nieuwe bestand wordt gevolgd%s is toegankelijk geworden%s is ontoegankelijk geworden%s is vervangen door een bestand dat niet gevolgd kan worden%s%s is vervangen door een bestand-op-afstand dat niet gevolgd kan worden%s is vervangen door een symbolische koppeling die niet gevolgd kan worden%s is vervangen;  het nieuwe bestand wordt gevolgd%s heeft onbekend bestandstype%s: bestand heeft een onbruikbare, kennelijk negatieve grootteWebpagina van %s: <%s>
%s is geen geldig positief geheel getal%s kan alleen worden gebruikt in een SELinux-kernel%s werd vervangen%s is gespecificeerd maar %s niet%s zou invoer overschrijven -- gestoptargument '%3$s' van %1$s%2$s is te groot%s-%s%s: %ju: onjuist opgemaakte regel met %s-controlesom%s: %s: regelnummer valt buiten bereik%s: %s: geen overeenkomst gevonden%s: %s:%ju: wanorde: %s: '}' is vereist bij een herhalingsaantaltweezijdige operator werd verwacht, %s gevonden%s: kan relatieve symbolische koppelingen alleen in huidige map maken%s: kan niet-blokkerende modus niet wijzigen%s: kan de bestandsgrootte niet achterhalen%s: kan het einde van dit type bestand niet volgen%s%s: kan een map niet overschrijven%s: kan niet terugspoelen%s: kan geen 'seek' doen%s: kan niet naar eind-relatieve positie %jd springen%s: kan niet naar positie %jd springen%s: kan niet naar relatieve positie %jd springen%s: kan een alleen-toevoegen-bestand niet vernietigen%s: kan niet overslaan%s: kan niet naar de gegeven positie springen%s: afsluitend scheidingsteken '%c' ontbreekt%s: kan niet-blokkerende modus niet herstellen%s: afdalen in map %s? %s: afdalen in voor schrijven beschermde map %s? %s: einde van bestand%s: de inhoud van een equivalentieklasse moet een enkel teken zijn%s: fout bij instellen van %s%s: fout bij inkorten%s: fout bij schrijven op positie %ju%s: een numerieke waarde werd verwachtsluiten van %s is misluktopenen voor schrijven van %s is misluktverwijderen van %s is mislukt%s: manipuleren van bestandsdescriptor is mislukt%s: synchronisatie van data in geheugen en op schijf (fdatasync) is mislukt%s: bestand heeft een negatieve grootte%s: bestand is te veel geslonken%s: bestand is te groot%s: bestand is ingekort%s: opvragen van bestandsstatus is mislukt%s: synchronisatie van data in geheugen en op schijf (fsync) is mislukt%s: een harde koppeling naar een map is niet toegestaan%s: invoer bevat een lus:%s: invoer bevat een oneven aantal elementen%s: invoerbestand is gelijk aan uitvoerbestand%s: geheel getal verwacht na scheidingsteken%s: ongeldig aantal bij het begin van %s%s: ongeldige directief%s: ongeldige veldspecificatie %s%s: ongeldig bestandstype%s: ongeldige optie -- '%c'
%s: ongeldig patroonongeldig proces-ID: %s%s: ongeldige reguliere expressie: %songeldig signaal: %s%s: ongeldige startwaarde voor hexadecimaal achtervoegsel%s: ongeldige startwaarde voor numeriek achtervoegsel%s: regelnummer moet groter zijn dan nul%s: regelnummer valt buiten bereik%s: 'lseek' is misluktmeer dan één signaal gegeven: %s%s: nieuwe toegangsrechten zijn %s, niet %s%s: geen enkel bestand werd gecontroleerd%s: geen correct opgemaakte controlesomregels gevonden%s: er is geen grootte-informatie voor dit apparaat%s: onbekende gebruikerreeds getoonde map %s wordt niet opnieuw getoond%s: optie '%s%s' staat geen argument toe
%s: optie '%s%s' is niet eenduidig
%s: optie '%s%s' is niet eenduidig; mogelijkheden zijn:%s: optie '%s%s' vereist een argument
%s: optie vereist een argument -- '%c'
%s: %s overschrijven? %s: doorloop %lu/%lu (%s)...%s: doorloop %lu/%lu (%s)...%s%s: doorloop %lu/%lu (%s)...%s/%s %d%%%s: fout bij lezen%s: %ju argument recursief verwijderen? %s: %ju argumenten recursief verwijderen? %s: %ju argument verwijderen? %s: %ju argumenten verwijderen? %s: %s %s verwijderen? %s: %s %s (schrijfbeveiligd) verwijderen? %s is verwijderdverwijderen van %s%s is hernoemd tot %s%s: %s toch vervangen, modus %04lo (%s) negeren? %s: %s vervangen? %s: 'seek' is mislukt%s: te veel regels met controlesommen%s: kan maximum lengte van een bestandsnaam niet bepalen%s: kan niet alle gevraagde acties uitvoereneenzijdige operator werd verwacht, %s gevonden%s: onbekend programma %s
%s: onbekende optie '%s%s'
%s: %s is onschrijfbaar (modus %04lo, %s); toch proberen? %s: waarde is niet volledig geconverteerd%s: fout bij schrijven%s: schrijven is mislukt%s:%ju: is niet gesorteerd: %.*s%s:%lu: ongeldige bestandsnaam (lengte nul)%s:%td: ongeldige regel;  tweede token ontbreekt%s:%td: niet-herkend sleutelwoord %s%s}: geheel getal is vereist tussen '{' en '}'%td is te groot%td gebruiker%td gebruikers’'+' staat niet aan begin van getal: %s'+' is alleen toegestaan bij de laatste waardeovertollige tekens of ongeldig getal in argument van '-%c': %songeldig argument bij '-%c': %sontbrekend argument in '--pages=EERSTE[:LAATSTE]''-N AANTAL', ongeldig beginregelnummer'-W PAGINABREEDTE', ongeldig aantal tekens'-l PAGINALENGTE', ongeldig aantal regels'-o MARGE', ongeldige regelpositie'-w PAGINABREEDTE', ongeldig aantal tekens'/' gaat niet samen met '+''/' staat niet aan begin van getal: %s'/' is alleen toegestaan bij de laatste waarde'\c' mag niet voorkomen in een '-S'-tekenreeks met dubbele aanhalingstekens©,  gemiddelde belasting: %.2fargument %2$s van '--%1$s' is te groot--algorithm=%s vereist optie --length met waarde 224, 256, 384, of 512optie '--backup' gaat niet samen met '-n' of '--update=none-fail'de opties '--base64' en '--raw' gaan niet samenoptie '--check' wordt niet ondersteund met '--algorithm={bsd,crc,crc32b,sysv}'optie '--context' (-Z) werkt alleen in een kernel met SELinuxoptie '--context' (-Z) werkt alleen in een kernel met SELinux of SMACKoptie '--data' vereist minstens één argumentopties '--dired' en '--zero' gaan niet samenoptie '--filter' bewerkt geen brokken die naar standaarduitvoer gaande opvulling van '--format' overtroeft '--padding'optie '--group' gaat niet samen met '-c', '-d', '-D' en '-u'de opties '--grouping' en '--format' gaan niet samenoptie '--header' wordt genegeerd met invoer op de opdrachtregeloptie '--length' wordt alleen ondersteund met algotimes blake2b, sha2, of sha3optie '--reflink' kan alleen worden gebruikt met '--sparse=auto'optie '--tag' gaat niet samen met '--text''--terse --file-system' is equivalent aan de volgende OPMAAK:
    %stekstmodus wordt alleen ondersteund met '--untagged'de combinatie '-R --dereference' vereist of '-H' of '-L'de combinatie '-R -h' vereist '-P''-ef' accepteert geen '-l'optie '-r' is niet gegeven; map %s wordt overgeslagen; gestopt met volgen van deze naam<intern>(onbekend)
(onbekend)Afgebroken  Toegang: %x
Gewijzigd: %y
Veranderd: %z
 Ontstaan: %w
  Rechten: (%04a/%10.10A)   UID: (%5u/%8U)   GID: (%5g/%8G)
Adresfamilie voor hostnaam wordt niet ondersteundWekkerAlex DeymoAlle verzoeken zijn gedaanArgumentenbuffer is te kleinArnold RobbinsAssaf GordonBeschBeschikbaarOnjuiste systeemaanroepOngeldige waarde voor 'ai_flags'Codeert of decodeert het gegeven BESTAND (of standaardinvoer)
volgens de 'base%d'-methode naar standaarduitvoer.
Brian FoxGebroken pijpBusfoutNOTITIELimiet op processortijd is overschredenMaakt een harde koppeling met de naam BESTAND2 naar bestaand BESTAND1.

Verwijdert het gegeven BESTAND via de unlink()-functie.

VulgraadVerandert de SELinux-beveiligingscontext van elk gegeven BESTAND naar CONTEXT.

Als '--reference' gegeven is, dan wordt de beveiligingscontext van elk BESTAND
veranderd naar die van REFERENTIEBESTAND.
De groep van elk gegeven BESTAND veranderen naar de gegeven GROEP,
of naar de groep van REFERENTIEBESTAND.

De modus van elk gegeven BESTAND veranderen naar de gegeven MODUS,
of naar de modus van REFERENTIEBESTAND.

De eigenaar en/of groep van elk gegeven BESTAND veranderen naar de gegeven
EIGENAAR en/of GROEP, of naar de eigenaar en groep van REFERENTIEBESTAND.

Chet RameyDochterproces is afgeslotenColin PlumbVergelijkt de gesorteerde bestanden BESTAND1 en BESTAND2 regel voor regel.
Stuurt gegeven BESTAND(en achter elkaar) naar standaarduitvoer.
  Context: %C
DoorgegaanStuurt elk BESTAND naar standaarduitvoer met witruimte geconverteerd naar tabs.
Stuurt elk BESTAND naar standaarduitvoer met tabs geconverteerd naar spaties.
Kopieert een BRON naar een BESTEMMING, of BRON(nen) naar een MAP.
Een bestand kopiëren, converteren en opmaken aan de hand van de argumenten.

Kopieert standaardinvoer naar elk gegeven BESTAND, én naar standaarduitvoer.

Een tijdelijk bestand of map op een veilige manier aanmaken en de naam tonen.
SJABLOON moet minstens 3 elkaar opvolgende X-en bevatten in de laatste component.
Als geen SJABLOON gegeven is, wordt 'tmp.XXXXXXXXXX' gebruikt en is '--tmpdir'
impliciet.
Maakt voor elke gegeven NAAM een benoemde pijp (FIFO) aan.
Maakt de gegeven MAP(pen) aan (als ze nog niet bestaan).
Maakt het speciale bestand NAAM aan van het gegeven TYPE.
David M. IhnatDavid MacKenzieDavid Madore Apparaat: %Hd/%Ld   Inode: %-10i   Koppelingen: %-5h   Apparaattype: %Hr,%Lr
 Apparaat: %Hd/%Ld   Inode: %-10i   Koppelingen: %h
Controleert op ongeldige of niet-overdraagbare bestandsnamen.

Map: Toont de status van een bestand (of van een bestandssysteem).
Dmitry V. LevinEMT-instructieAFSLUITINGEen bereik kan zijn:
  N     N-de byte, teken of veld (tellend vanaf 1)
  N-    van N-de byte, teken of veld, tot het einde van de regel
  N-M   van N-de tot en met M-de byte, teken of veld
  -M    van eerste tot en met M-de byte, teken of veld
Stuurt de gegeven TEKENREEKS(en) naar standaarduitvoer.

Eric BlakeVoert het gegeven ingebouwde PROGRAMMA uit met de gegeven ARGUMENTEN.

Eindigt met de afsluitwaarde die mislukking aangeeft.Eindigt met de afsluitwaarde die succes aangeeft.Eindigt met de afsluitwaarde die bepaald wordt door de gegeven EXPRESSIE.

François PinardVERKEERDopenen of lezen is MISLUKTOPMAAK moet passend zijn voor het tonen van één argument van het type 'double';
de standaardopmaak is %.PRECf als EERSTE, STAP en LAATSTE allemaal decimale
vastekommagetallen zijn met een maximale precisie PREC, anders %g.
FIFO's hebben geen hoofd- en subapparaatnummers.BestandLimiet op bestandsgrootte is overschredenBestanden worden aangemaakt met de toegangsrechten u+rw,
en mappen met u+rwx, minus de 'umask'-restricties.
BestandssysteemFiltert duplicaten van voorgaande regels uit INVOER (of standaardinvoer)
en schrijft naar UITVOER (of standaarduitvoer).

Zonder opties worden identieke regels samengedrukt tot één voorkomen.
Drijvendekomma-berekeningsfoutStuurt voor elk paar invoerregels met identieke samenvoegvelden een regel
naar standaarduitvoer.  Het standaard samenvoegveld is het eerste veld,
afgebakend door spaties of tabs.
Volledige documentatie: <%s%s>
GROEPAlgemene hulp bij gebruik van GNU-software: <%s>
Giuseppe ScrivanoH. Peter AnvinOpgehangenIn-/uitvoer is mogelijkLEDIGIVrijIGeb%IGebrIan Lance TaylorLedigAls geen BESTAND gegeven is, wordt %s gebruikt.
Gewoonlijk wordt %s als BESTAND meegegeven.

Als u meer dan één van -i, -f, -n opgeeft, dan heeft alleen de laatste effect.
Ongeldige instructieEchte naam:   
In de 1ste vorm: een koppeling naar DOEL maken met de naam KOPPELINGSNAAM.
In de 2de vorm: een koppeling naar DOEL maken (met zelfde naam, in huidige map).
In de 3de en 4de vorm: koppelingen maken in MAP naar elk gegeven DOEL.

Standaard wordt een harde koppeling gemaakt, met '-s' een symbolische; en
standaard hoort de KOPPELINGSNAAM (naam van nieuwe link) nog niet te bestaan.
Bij het maken van een harde koppeling moet elk DOEL bestaan.  Symbolische
koppelingen kunnen een willekeurige tekst bevatten.  Bij het later herleiden
wordt een relatieve koppeling geïnterpreteerd in relatie tot haar ouder-map.
oneindigVerzoek om informatieI-nodesOnderbrokenOnderbroken door een signaalOngeldige terugverwijzingOngeldige tekenklassenaamOngeldig samengesteld tekenOngeldige inhoud van \{\}ongeldig getalOngeldige voorafgaande reguliere expressieOngeldig bereikeindeOngeldige reguliere expressieJames YoungmanJay LepreauJim KingdonJim MeyeringJoseph ArceneauxKaveh GhaziKayvan AghaiepourKevin BraunsdorfGeëlimineerdTERMINALLOGINDit is vrije software: u mag het vrijelijk wijzigen en verder verspreiden.
De precieze licentie is GPL-3+: GNU General Public License versie 3 of later.
Zie <%s> voor de volledige (Engelse) tekst.
Deze software kent GEEN GARANTIE, voor zover de wet dit toestaat.
Toont informatie over de gegeven BESTANDen (standaard over de huidige map).

De items worden alfabetisch gesorteerd als geen van de opties '-cftuvSUX'
noch '--sort' gegeven is.
GbruikrGebruikersnaam: Mark KettenisMatthew BradburnOnvoldoende geheugen beschikbaarOnvoldoende geheugen beschikbaarMichael MeskesMichael StoneMike HaertelMike ParkerAangekoppeld opNAAMVolledige naamNaam of dienst is onbekendNiels MollerAan hostnaam is geen adres verbondenGeen overeenkomstenGeen eerdere reguliere expressieOnherstelbaar probleem in naamsherleidinggoedSlechts één tekenreeks mag gegeven worden bij verwijderen zonder samendrukken.Sorteeropties:
Produceert een gepermuteerde index, inclusief context,
van de woorden in de invoerbestanden.
Toont de commando's voor het instellen van de omgevingsvariabele LS_COLOR.

Toont elke gegeven NAAM zonder het laatste '/...'-element;
als NAAM geen '/' bevat, dan '.' (de huidige map) tonen.

Deelt het gegeven BESTAND op aan de hand van het gegeven PATROON of de gegeven
patronen, schrijft de delen naar de bestanden 'xx00', 'xx01', 'xx02', enz.,
en toont het aantal bytes van elk deel op standaarduitvoer.
Schrijft stukken van de INVOER met een vaste grootte naar VOORVOEGSELaa,
VOORVOEGSELab, VOORVOEGSELac, ...; de standaardgrootte is 1000 regels en
het standaard VOORVOEGSEL is 'x'.
Toont platformafhankelijke limieten in een opmaak die bruikbaar is in shell-scripts.

Toont wie er (volgens BESTAND) momenteel ingelogd zijn.

Als geen BESTAND gegeven is, wordt %s gebruikt.
Gewoonlijk wordt %s als BESTAND meegegeven.

Overschrijft gegeven BESTAND(en) meerdere malen, om het zelfs voor heel
dure apparatuur moeilijk te maken de inhoud ervan te herstellen.
PIDIn pakketvorm gebracht door %s
In pakketvorm gebracht door %s (%s)
Pádraig BradyPagina %juMaakt van de gegeven BESTAND(en) pagina's of kolommen, om ze af te drukken.
Parametertekst is niet juist gecodeerdPaul EggertPaul RubinPete TerMaatPlan:
StroomstoringVoortijdig einde van reguliere expressieToont de ARGUMENTen volgens de gegeven OPMAAK.

Toont de NAAM zonder de voorafgaande mapcomponenten.
Indien gegeven, wordt ook het ACHTERVOEGSEL verwijderd.
Toont bepaalde systeeminformatie.  Geen OPTIE betekent hetzelfde als '-s'.

Voor elke GEBRUIKERSNAAM de groepen tonen waar deze lid van is.  Als
geen naam gegeven is, dan de groepen van het huidige proces tonen.
Toont informatie over gebruikers die nu zijn ingelogd.
Toont de machinearchitectuur.

Toont het aantal regels, woorden en bytes voor elk gegeven BESTAND, plus een
totaalscore als meer dan één BESTAND gegeven is.  Een woord is een reeks van
(minstens 1) niet-blanco tekens, begrensd door witruimte of begin/eind invoer.
Toont de getallen van EERSTE tot LAATSTE, met stapgrootte STAP.
Toont terminalkarakteristieken of stelt ze in.
Toont of controleert %s-controlesommen (%d-bits).
Toont of controleert %s-controlesommen.
Toont of controleert controlesommen.
Standaard wordt het 32-bits CRC-algoritme gebruikt.
Stuurt de geselecteerde delen van regels uit elk BESTAND naar standaarduitvoer.
Toont de huidige tijd, de tijdsduur dat het systeem in bedrijf is, het aantal
gebruikers op het systeem, en het gemiddelde aantal taken dat uitgevoerd werd
in de laatste 1, 5 en 15 minuten.Toont de bestandsnaam van de terminal die verbonden is met standaardinvoer.

Kopieert de eerste %d regels van elk gegeven BESTAND naar standaarduitvoer.
Als meer dan één BESTAND gegeven is, wordt de uitvoer van elk bestand
voorafgegaan door een kopje met de bestandsnaam.
Toont de volledige bestandsnaam van de huidige werkmap.

Kopieert de laatste %d regels van elk gegeven BESTAND naar standaarduitvoer.

Als meer dan één BESTAND gegeven is, wordt de uitvoer van elk bestand
voorafgegaan door een kopje met de bestandsnaam.
Toont de priemgetallen waaruit elk gegeven GETAL is opgebouwd.
Als geen GETAL gegeven is, dan worden getallen gelezen van standaardinvoer.

Toont de herleide absolute bestandsnaam.
Toont de gebruikersnaam die hoort bij het huidige effectieve gebruikers-ID.
(Hetzelfde als 'id -un'.)

Toont de inlognaam van de huidige gebruiker.

Toont gebruikers- en groepsinformatie voor de gegeven GEBRUIKER
of (als geen GEBRUIKER gegeven is) voor het huidige proces.

Toont de waarde van een symbolische koppeling of een canonieke naam.

Bezig met verwerken van verzoekTimer voor profilering is afgelopenProject: Q. Frank XiaAfgeslotenRandy SmithRealtime-signaal %dMaakt gegeven GETAL(len) opnieuw op,
of de getallen van standaardinvoer als er geen gegeven zijn.

Stuurt elk BESTAND naar standaarduitvoer met de alinea's opnieuw ingedeeld.
De optie -BREEDTE is een afkorting van --width=BREEDTE.
Reguliere expressie is te grootVerwijdert de gegeven BESTAND(en).

Verwijdert de gegeven MAP(pen), als ze leeg zijn.

Hernoemt BRON naar BESTEMMING, of verplaatst BRON(nen) naar MAP.
Produceert voortdurend een regel met de gegeven TEKST (of anders 'y').

Rapporteer gebreken in het programma '%s' aan <%s>;
meld fouten in de vertaling aan <vertaling@vrijschrift.org>.
Meld vertaalfouten aan <vertaling@vrijschrift.org>.
Rapporteer gebreken in het programma aan <%s>;
meld fouten in de vertaling aan <vertaling@vrijschrift.org>.
Verzoek is geannuleerdVerzoek is niet geannuleerdHulpbron verlorenRichard M. StallmanRichard MlynarikRoland HuebnerRoland McGrathRoss PatersonVoert het gegeven COMMANDO uit met een aangepaste procesbeleefdheid;
als geen COMMANDO gegeven is, dan de huidige procesbeleefdheid tonen.
Beleefdheidswaarden lopen van %d (krijgt meeste tijd) tot %d (minste tijd).
Voert het gegeven COMMANDO uit, met DOELMAP als basismap.

Voert het gegeven COMMANDO uit, 'hangup'-signalen negerend.

Voert COMMANDO uit met gewijzigde buffering voor zijn standaard streams.
Voert het gegeven COMMANDO in een andere SELinux-beveiligingscontext uit.

Zonder CONTEXT of COMMANDO, wordt de huidige beveiligingscontext getoond.
Russell CokerSamuel NevesScott BartramScott MillerSegmentatiefoutZendt signalen naar processen, of somt signaalnamen op.
Servicenaam wordt niet ondersteund voor 'ai_socktype'Zet LC_ALL='C' om het probleem te omzeilen.Kent de gegeven WAARDE aan omgevingsvariabele NAAM toe en voert COMMANDO uit.
Shell: Toont gebruikte en beschikbare ruimte van alle aangekoppelde bestandssystemen,
of van de bestandssystemen waarop de gegeven BESTANDen zich bevinden.
Vergroot of verkleint elk gegeven BESTAND tot de gespecificeerde grootte.

Een BESTAND dat nog niet bestaat wordt aangemaakt.

Als een BESTAND groter is dan de gespecificeerde grootte, dan gaan de extra
gegevens verloren.  Als een BESTAND kleiner is, dan wordt het uitgebreid en
het "toegevoegde" deel (een gat) leest als nul-bytes.
Simon JosefssonGrootteSpeciale bestanden vereisen hoofd- en subapparaatnummers.Stack-foutStart het gegeven COMMANDO, en beëindigt het als het na DUUR nog actief is.
GepauzeerdGepauzeerd (signaal)Gepauzeerd (terminalinvoer)Gepauzeerd (terminaluitvoer)Stuart KempGeluktVat het apparaatgebruik samen van elk gegeven BESTAND, recursief voor mappen.
Nog uitstaande schrijfoperaties naar persistente opslag nu uitvoeren.

Als één of meer bestanden gegeven zijn, dan alleen deze syncen
(of, met '-f', de bestandssystemen waar ze op staan).

SysteemfoutTIJDTijdelijk probleem in naamsherleidingBeëindigdDe volgende opmaakcodes mogen direct na elke '%' ingevoegd worden:

  -  (een koppelteken:) geen voorloop gebruiken
  _  (een liggend streepje:) voorloopspaties gebruiken
  0  (een nul:) voorloopnullen gebruiken (standaard)
  +  voorloopnullen gebruiken, en '+' voor toekomstjaren met meer dan vier cijfers
  ^  hoofdletters gebruiken, indien mogelijk
  #  hoofd- in kleine letters wijzigen en omgekeerd, indien mogelijk
De te vergelijken tekenreeksen waren %s en %s.Torbjörn GranlundTraceer-/breekpunt-instructieBackslash aan het eindZet tekens van standaardinvoer om, drukt ze samen of verwijdert ze,
en schrijft het resultaat naar standaarduitvoer.

Typ '%s --help' voor meer informatie.
Typ '%s ./%s' om het bestand %s te verwijderen.
Er moeten twee tekenreeksen gegeven worden als
zowel verwijderd wordt als herhalingen samengedrukt.Bij omzetting zijn twee tekenreeksen nodig.TypeUlrich DrepperOnbekende foutOnbekend signaal %dOnbekende systeemfoutOngepaarde ( of \(Ongepaarde ) of \)Ongepaarde [, [^, [:, [., of [=Ongepaarde \{Stelt de toegangs- en wijzigingstijden van elk BESTAND op de huidige tijd.

Elk BESTANDsargument dat niet bestaat wordt als een leeg bestand aangemaakt,
tenzij '-c' of '-h' wordt meegegeven.

Het BESTANDsargument '-' wordt speciaal behandeld: het zorgt ervoor dat 'touch'
de tijdsstempels van het bestand verbonden met standaarduitvoer wijzigt.
Urgente in-/uitvoertoestandGebruik:  %s
Gebruik:  %s --coreutils-prog=PROGRAMMA [ARGUMENTEN]
Gebruik:  %s COMMANDO [ARGUMENT...]
     of:  %s OPTIE

Gebruik:  %s EXPRESSIE
     of:  %s OPTIE
Gebruik:  %s BESTAND
     of:  %s OPTIE

Gebruik:  %s BESTAND1 BESTAND2
     of:  %s OPTIE

Gebruik:  %s OPMAAK [ARGUMENT...]
     of:  %s OPTIE

Gebruik:  %s NAAM [ACHTERVOEGSEL]
     of:  %s OPTIE... NAAM...

Gebruik:  %s AANTAL[ACHTERVOEGSEL]...
     of:  %s OPTIE

Pauzeert gedurende het gegeven AANTAL seconden.

Het ACHTERVOEGSEL mag respectievelijk 's' zijn voor seconden (standaard),
'm' voor minuten, 'h' voor uren, of 'd' voor dagen.  AANTAL hoeft geen
geheel getal te zijn.  Bij meerdere AANTALlen wordt er gepauzeerd
gedurende een tijd die de som is van de waarden.

Gebruik:  %s [OPTIE...] COMMANDO
Gebruik:  %s OPTIE... BESTAND...
Gebruik:  %s OPTIE... [BESTAND...]

Gebruik:  %s [-F APPARAAT | --file=APPARAAT] [INSTELLING...]
     of:  %s [-F APPARAAT | --file=APPARAAT] [-a|--all]
     of:  %s [-F APPARAAT | --file=APPARAAT] [-g|--save]
Gebruik:  %s [-BREEDTE] [OPTIE...] [BESTAND...]

Gebruik:  %s [-s SIGNAAL | -SIGNAAL] PID...
     of:  %s -l [SIGNAAL...]
     of:  %s -t [SIGNAAL...]

Gebruik:  %s [NAAM]
     of:  %s OPTIE

Toont de hostnaam van het huidige systeem of stelt deze in.

Gebruik:  %s [ARGUMENT...]
     of:  %s OPTIE

Gebruik:  %s [OPTIE]

Gebruik:  %s [OPTIE]

Toont de numerieke aanduiding (in hexadecimaal) van de huidige host.

Gebruik:  %s [OPTIE] NAAM...

Gebruik:  %s [OPTIE] [COMMANDO [ARGUMENT...]]

Gebruik:  %s [OPTIE] [BESTAND]

Produceert een volledig, topologisch gesorteerde lijst,
overeenkomend met de gegeven bestaande volgorde.
Gebruik:  %s [OPTIE...] [BESTAND...]

Gebruik:  %s [OPTIE] [GETAL...]

Gebruik:  %s [OPTIE...] [VARIABELE...]

Toont de waarde van de gegeven omgevingsvariabele(n).

Zonder VARIABELE worden de waarden van alle omgevingsvariabelen getoond.

Gebruik:  %s [OPTIE...]

Gebruik:  %s [OPTIE...] %s BESTAND...
     of:  %s [OPTIE...] --reference=REFERENTIEBESTAND BESTAND...

Gebruik:  %s [OPTIE...] CONTEXT BESTAND...
     of:  %s [OPTIE...] [-u GBRKR] [-r ROL] [-l BEREIK] [-t TYPE] BESTAND...
     of:  %s [OPTIE...] --reference=REFERENTIEBESTAND BESTAND...

Gebruik:  %s [OPTIE...] MAP...

Gebruik:  %s [OPTIE...] DUUR COMMANDO [ARGUMENT...]
Gebruik:  %s [OPTIE...] BESTAND PATROON...

Gebruik:  %s [OPTIE...] BESTAND...

Gebruik:  %s [OPTIE...] BESTAND1 BESTAND2

Gebruik:  %s [OPTIE...] LAATSTE
     of:  %s [OPTIE...] EERSTE LAATSTE
     of:  %s [OPTIE...] EERSTE STAP LAATSTE

Gebruik:  %s [OPTIE...] MODUS[,MODUS...] BESTAND
     of:  %s [OPTIE...] OCTALE_MODUS BESTAND...
     of:  %s [OPTIE...] --reference=REFERENTIEBESTAND BESTAND...

Gebruik:  %s [OPTIE...] NAAM TYPE [HOOFDNUMMER SUBNUMMER]

Gebruik:  %s [OPTIE...] NAAM...

Gebruik:  %s [OPTIE] DOELMAP [COMMANDO [ARGUMENT...]]
Gebruik:  %s [OPTIE...] SET1 [SET2]

Gebruik:  %s [OPTIE...] [ BESTAND | ARGUMENT1 ARGUMENT2 ]
Gebruik:  %s [OPTIE...] [-T] BRON BESTEMMING
     of:  %s [OPTIE...] BRON... MAP
     of:  %s [OPTIE...] -t MAP BRON...

Gebruik:  %s [OPTIE...] [-T] BRON DOEL
     of:  %s [OPTIE...] BRON... MAP
     of:  %s [OPTIE...] -t MAP BRON...
     of:  %s [OPTIE...] -d MAP...
Gebruik:  %s [OPTIE...] [-T] DOEL KOPPELINGSNAAM
     of:  %s [OPTIE...] DOEL
     of:  %s [OPTIE...] DOEL... MAP
     of:  %s [OPTIE...] -t MAP DOEL...
Gebruik:  %s [OPTIE...] [-] [NAAM=WAARDE]... [COMMANDO [ARGUMENT...]]
Gebruik:  %s [OPTIE...] [INVOER [VOORVOEGSEL]]
Gebruik:  %s [OPTIE...] [BESTAND]

Gebruik:  %s [OPTIE...] BESTAND
     of:  %s -e [OPTIE...] [ARGUMENT...]
     of:  %s -i LAAG-HOOG [OPTIE...]

Gebruik:  %s [OPTIE...] [BESTAND...]

Gebruik:  %s [OPTIE...] [BESTAND...]
     of:  %s [-abcdfilosx] [BESTAND] [[+]POSITIE[.][b]]
     of:  %s --traditional [OPTIES] [BSTND] [[+]POSITIE[.][b] [+][LABEL][.][b]]
Gebruik:  %s [OPTIE...] [BESTAND...]
     of:  %s [OPTIE...] --files0-from=LIJSTBESTAND

Gebruik:  %s [OPTIE...] [INVOER [UITVOER]]

Gebruik:  %s [OPTIE...] [INVOER...]    (zonder -G)
     of:  %s -G [OPTIE...] [INVOER [UITVOER]]
Gebruik:  %s [OPTIE...] [GETAL...]

Gebruik:  %s [OPTIE...] [SJABLOON]

Gebruik:  %s [OPTIE...] [GEBRUIKERSNAAM]
Gebruik:  %s [OPTIE...] [GEBRUIKER...]
Gebruik:  %s [KORTE_OPTIE...] [TEKST...]
     of:  %s LANGE_OPTIE
Gebruik:  %s [TEKST]
     of:  %s OPTIE

Gebruik:  %s [argumenten worden genegeerd]
     of:  %s OPTIE

Gebruik:  test EXPRESSIE
     of:  test
     of:  [ EXPRESSIE ]
     of:  [ ]
     of:  [ OPTIE

Geb%GebruiktGebruikergedefinieerd signaal 1Gebruikergedefinieerd signaal 2Geldige argumenten zijn:Geldige argumenten zijn:
Geldige opmaakspecificaties voor bestandssystemen zijn:

  %a   beschikbare vrije blokken voor niet-systeembeheerders
  %b   totaal aantal blokken met gegevens in bestandssysteem
  %c   totaal aantal inodes in bestandssysteem
  %d   aantal vrije inodes in bestandssysteem
  %f   aantal vrije blokken in bestandssysteem
Virtuele timer is afgelopenWAARSCHUWING: %ju berekende controlesom komt NIET overeenWAARSCHUWING: %ju berekende controlesommen komen NIET overeenWAARSCHUWING: %ju regel is onjuist opgemaaktWAARSCHUWING: %ju regels zijn onjuist opgemaaktWAARSCHUWING: %ju getoond bestand kan niet gelezen wordenWAARSCHUWING: %ju getoonde bestanden kunnen niet gelezen wordenWAARSCHUWING: Oneindige lus gevonden in de mappenstructuur.
Dit betekent vrijwel zeker dat het bestandssysteem beschadigd is.
** MELD DIT AAN UW SYSTEEMBEHEERDER. **
De volgende map is onderdeel van de lus:
  %s
Waarschuwing: optie '--preserve-context' wordt genegeerd;
deze kernel heeft geen SELinux.Waarschuwing: optie '--strip-program' wordt genegeerd
want optie '-s' is niet gegevenWaarschuwing: IngelogdBij het controleren moet de invoer voormalige uitvoer van dit programma
of van een equivalent programma zijn.
Bij het controleren moet de invoer voormalige uitvoer van dit programma zijn.
De standaardmodus toont voor elk BESTAND een regel met: een controlesom, een
spatie, een teken dat het type aangeeft ('*' voor binair, ' ' voor tekst of als
binair insignificant is), en de naam van het bestand.

Op GNU-systemen is er geen verschil tussen binaire modus en tekstmodus.
WaarVenster is veranderdMet '--follow' (-f) volgt 'tail' de bestandsdescriptor, wat betekent dat het
bestand nog steeds gevolgd wordt als de bestandsnaam wijzigt.  Dit standaard-
gedrag is ongewenst als u echt de naam wilt volgen en niet de descriptor,
bijvoorbeeld bij rotatie van logbestanden.  Gebruik dan '--follow=name'; dit
maakt dat 'tail' het genoemde bestand volgt op een manier die rekening houdt
met hernoemen, verwijderen en opnieuw aanmaken.
Stuurt elk BESTAND naar standaarduitvoer met de regels op een bepaalde lengte
afgebroken.

Stuurt een willekeurige husseling van de invoerregels naar standaarduitvoer.
Schrijft elk gegeven BESTAND naar standaarduitvoer, laatste regel eerst.
Stuurt elk gegeven BESTAND naar standaarduitvoer, met regelnummers toegevoegd.
Stuurt gegeven BESTAND(en samengevoegd en) gesorteerd naar standaarduitvoer.
Geschreven door %s en %s.
Geschreven door %s, %s, %s,
%s, %s, %s, %s,
%s, %s en anderen.
Geschreven door %s, %s, %s,
%s, %s, %s, %s,
%s en %s.
Geschreven door %s, %s, %s,
%s, %s, %s, %s
en %s.
Geschreven door %s, %s, %s,
%s, %s, %s en %s.
Geschreven door %s, %s, %s,
%s, %s en %s.
Geschreven door %s, %s, %s,
%s en %s.
Geschreven door %s, %s, %s
en %s.
Geschreven door %s, %s en %s.
Geschreven door %s.
bij omzetting mogen '[=t=]'-expressies niet voorkomen in SET2[EIGENAAR][:[GROEP]]^ geen overeenkomst voor sleutel
^[nN]^[jJyY]‘bij een aanpassing moet er een commando gegeven worden'ai_family' wordt niet ondersteund'ai_socktype' wordt niet ondersteundargument %s van %s is niet eenduidigeen scheidingsteken mag alleen gegeven worden als met velden gewerkt wordten '--preserve-root=all' is actiefuitvoer wordt aan %s toegevoegdasymmetrische in- en uitvoersnelheden (%lu/%lu) worden niet ondersteundgeen AVX2-ondersteuning gedetecteerdgeen AVX512-ondersteuning gedetecteerdeen reservekopie maken van %s kan de bron vernietigen;  %s is niet gekopieerdeen reservekopie maken van %s kan de bron vernietigen;  %s is niet verplaatstreservekopiemethodeCodeert of decodeert het gegeven BESTAND (of standaardinvoer)
volgens de 'basenc'-methode naar standaarduitvoer.
blok-apparaatblok-apparaatbestanden worden niet ondersteundblokkenniet beide bestanden mogen de standaardinvoer zijnbyte- of tekenpositie %s is te grootbyte- en tekenposities worden genummerd vanaf 1kan gedeeltelijke context niet toepassen op ongelabeld bestand %skan de context van het proces niet verkrijgenkan geen toegang krijgen tot %skan geen toegang krijgen tot %s: een ander apparaat is eroverheen aangekoppeldkan geen reservekopie maken van %skan niet zowel alleen totalen tonen als alle items tonenkan map niet wijzigen naar '%s'kan de eigenaar van %s niet veranderenkan de toegangsrechten van %s niet veranderenkan '%s' niet als basismap instellenkan niet naar map %s gaankan hoofdmap niet als huidige map instellenoptie '--backup' gaat niet samen met '--exchange', '-n', of '--update=none-fail'opties '--target-directory' (-t) en '--no-target-directory' (-T) gaan niet samenopties '--target-directory' en '--no-target-directory' gaan niet samenopties '-e' en '-i' gaan niet samenslechts één van {ascii,ebcdic,ibm} is mogelijk'block' en 'unblock' gaan niet samen'direct' en 'nocache' gaan niet samen'excl' en 'nocreat' gaan niet samen'lcase' en 'ucase' gaan niet sameneen expliciete modus gaat niet samen met optie '--reference'een signaal gaat niet samen met optie '-l' of '-t'kan bestandsnamen %s en %s niet vergelijkenkan U+%04X niet converteren naar de lokale tekensetkan U+%04X niet converteren naar de lokale tekenset: %skan map %s niet kopiëren naar binnen zichzelf (%s)kan cyclische symbolische koppeling %s niet kopiërenkan map %s niet aanmakenkan fifo %s niet aanmakenkan geen harde koppeling %s maken naar %skan de koppeling %s naar %s niet aanmakenkan het normale bestand %s niet aanmakenkan speciaal bestand %s niet aanmakenkan symbolische koppeling %s niet aanmakenkan symbolische koppeling %s naar %s niet aanmakenkan tijdelijk bestand %s niet aanmakenkan symbolische koppeling %s niet volgenkan het apparaat en de inode van %s niet bepalenkan de hostnaam niet achterhalenkan de locatie van '%s' niet bepalen; teruggevallen op polsenoptie '--relative' kan niet zonder '--symbolic'kan geen ioctl() doen op %skan %s en %s niet omwisselenkan geen naam vinden bij groeps-ID %jdkan geen naam vinden bij groeps-ID %jukan geen naam vinden bij gebruikers-ID %jukan %s niet op naam volgenkan status van %s niet opvragenkan huidige map niet opvragenkan effectieve GID niet verkrijgenkan effectieve UID niet verkrijgenkan de huidige beleefdheidswaarde niet verkrijgenkan werkelijke GID niet verkrijgenkan werkelijke UID niet verkrijgenkan de naam van het systeem niet verkrijgenkan de grootte van %s niet achterhalenkan geen 'lseek' doen op %skan niet zowel harde als symbolische koppelingen makenkan map %s niet aanmakenkan %s niet verplaatsen naar %skan %s niet verplaatsen naar een submap van zichzelf, %skan %s niet openenkan %s niet openen om te lezenkan %s niet openen om te schrijvenkan map %s niet openenkan niet werken op loze symbolische koppeling %skan %s niet overschrijvenkan geen opgemaakte uitvoer aanmakenkan de uitgebreide eigenschappen niet behouden;
'cp' is gecompileerd zonder ondersteuning voor 'xattr'kan beveiligingscontext niet behouden zonder een kernel met SELinuxkan niet meer dan één ding "alleen" tonenkan beveiligingscontext niet tonen als een gebruikersnaam gegeven iskan niet lezenkan map %s niet lezenkan geen bestandsnamen uit %s lezenkan informatie in bestandssysteem niet lezen voor %skan de realtime-klok niet lezenkan symbolische koppeling %s niet lezenkan tabel van aangekoppelde bestandssystemen niet lezenkan %s niet verwijderenkan %s niet uitvoerenkan 'strip'-programma %s niet uitvoerenkan %s geen waarde gevenkan datum niet instellenkan de naam niet wijzigen naar %skan beleefdheidswaarde niet instellenkan de toegangsrechten van %s niet instellenkan doelcontext niet zowel instellen als behoudenkan de tijdsstempels van %s niet instellenkan niet voorbij het einde van de gecombineerde invoer springenoptie '--null' (-0) gaat niet samen met een commandoopties '--data' en '--file-system' gaan niet samenkan niet zowel verticaal als horizontaal afdrukkenbij horizontaal afdrukken kan het aantal kolommen niet worden opgegevenoptie '-t' gaat niet samen met '-d' of '-r'kan niet op meerdere manieren splitsenkan status van %s niet opvragenkan status van huidige map %s niet opvragenkan 'stat' niet toepassen op standaardinvoerkan status van %s niet opvragenkan tijdsstempels van %s niet wijzigenkan %s niet uit reservekopie herstellenkan %s niet verwijderenkan %s niet verwijderenkan %s niet monitorenkan de bovenliggende map van %s niet monitorenkan toch niet om de kernelfout heen werkende groep van %s is veranderd van %s naar %s
de eigenaar van %s is veranderd van %s naar %s
veranderen van de groep van %sveranderen van de eigenaar van %sveranderen van toegangsrechten van %sveranderen van beveiligingscontext van %s
tekenpositie is nulteken ligt buiten toegestaan bereikbyte-apparaatbyte-apparaatbestanden worden niet ondersteunddochterproces heeft signaalmasker niet hersteldwissen van toegangsrechten van %sklok is verzetsluiten is misluktsluiten van %s (bestandsdescriptor=%d)sluiten van map %ssluiten van invoerbestand %ssluiten van uitvoerbestand %ssluiten van standaardinvoercompatibiliteitsmodus mag met hooguit één bestandconflicterende vervangingstekenreeksen voor lege veldenconflicterende specificaties voor beveiligingscontext gegevenaaneengesloten gegevensgekopieerd: %s -> %skan compressieprogramma '%s' niet uitvoerenkan compressieprogramma '%s -d' niet uitvoerenkan de buffering van %s niet in modus %s zetten
kan geen tijdelijk bestand aanmakenkan geen mapitem vinden in %s met een overeenkomende inodekan de opstarttijd niet vindenkan niet-blokkerende modus %s niet herstellenmap %s is aangemaaktmap %s is aangemaakt
aanmaken van map %saanmaken van bestand %s
lijst met scheidingstekens eindigt met onaangehaalde backslash: %scontrolesomlengte voor %s moet 224, 256, 384, of 512 zijnmapde map die het gemonitorde bestand bevatte werd verwijderddeling door nuldoorlege bestandsnaamleeg scheidingstekenlege tabfout bij canoniseren van %sfout bij sluiten van bestandfout bij kopiëren van %s naar %sfout bij vrijgeven van %sfout in zoeken met reguliere expressiefout in zoeken met reguliere expressiefout bij openen van %sfout bij lezen van %sfout bij lezen van 'inotify'-gebeurtenisfout bij lezen van invoerfout bij het syncen van %sfout bij het wachten op commandofout bij wachten op 'inotify'- en uitvoergebeurtenissenfout bij schrijven van %sfout: reguliere expressie heeft een overeenkomst met lengte nul: %somgewisseld: %s <-> %swordt uitgevoerd met FILE=%s
exit=overtollig argument: %sovertollig argument: %sextra argument %s is niet toegestaan bij optie '-%c'kan geen toegang krijgen tot %shet reserveren van %lu bytes voor een invoer-/uitvoerbuffer is mislukt
kan signaal %d niet blokkerencanoniseren van %s is misluktkan de context van %s niet veranderen naar %skan de groep van %s niet veranderen van %s naar %s
kan de groep van %s niet veranderen naar %s
kan modus van %s niet veranderen van %04lo (%s) naar %04lo (%s)
kan de eigenaar van %s niet veranderen
kan de eigenaar van %s niet veranderen van %s naar %s
kan de eigenaar van %s niet veranderen naar %s
kan niet naar map %s gaankan %2$s niet klonen naar %1$ssluiten van %s is misluktkan invoerpijp niet sluitenkan geen nieuwe context berekenenenkele van de invoergetallen zijn niet geconverteerdkan geen map aanmaken via sjabloon %skan geen bestand aanmaken via sjabloon %skan geen harde koppeling %s aanmakenkan geen harde koppeling %s naar %s aanmakenkan geen harde koppeling naar %s aanmakenaanmaken van pijp is misluktkan beveiligingscontext %s niet aanmakenkan geen symbolische koppeling %s aanmakenkan geen symbolische koppeling %s naar %s aanmakenaanmaken van tijdelijk bestand %s is misluktverwerpen van cache voor %s is misluktkan %s niet uitbreidenkan %s niet vindenkan de eigenschappen van %s niet verkrijgenkan de huidige context niet verkrijgenkan de groepen van het huidige proces niet verkrijgenkan de groepen van gebruiker %s niet verkrijgenkan de beveiligingscontext van %s niet verkrijgenkan de signaalactie voor signaal %d niet verkrijgenkan het signaalprocesmasker niet verkrijgenkan aanvullende groepen niet achterhalenkan bestand %s niet vindenaanmaken van een tijdelijke bestandsnaam is misluktopenen van %s is misluktkan %s niet openen om te lezenopenen voor schrijven van %s is misluktvoorbereiden van waarde '%Lf' voor tonen is misluktbehouden van het auteurschap van %s is misluktbehouden van eigenaar van %s is misluktbehouden van de toegangsrechten van %s is misluktbehouden van de tijdsstempels van %s is misluktkan standaardfoutuitvoer niet omleidenkan %s niet verwijderenkan %s niet verwijderen: symbolische koppeling is niet gevolgdkan map %s niet verwijderenkan standaardinvoer niet onbruikbaar makenkan de context voor %s niet herstellenkan de standaard aanmaakcontext niet herstellenkan niet terugkeren naar de oorspronkelijke werkmapterugspringen in stroom voor %s is misluktkan commando %s niet uitvoerenkan commando "%s -c %s" niet uitvoerenkan component %s van beveiligingscontext niet instellen op %sinstellen van omgevingsvariabele FILE is misluktkan de standaard aanmaakcontext voor %s niet instellenkan de standaard aanmaakcontext niet instellen op %skan de standaard aanmaakcontext niet instellen op %skan tekst-/binaire modus van bestandsdescriptor niet instelleninstellen van groeps-ID is misluktinstellen van taalregio is misluktkan nieuw bereik %s niet instellenkan nieuwe rol %s niet instellenkan nieuw type %s niet instellenkan nieuwe gebruiker %s niet instellenkan de signaalactie voor signaal %d niet instellenkan het signaalprocesmasker niet instelleninstellen van aanvullende groepen is misluktkan de beveiligingscontext van %s niet instelleninstellen van gebruikers-ID is misluktkan status van %s niet opvragenkan status van %s niet opvragen: %s wordt overgeslagenafkorten van %s op %jd bytes is misluktafkorten op %jd bytes van uitvoerbestand %s is misluktuitschakelen van O_DIRECT is mislukt: %shet bijwerken van de omgeving met %s is mislukt'fdatasync' is mislukt voor %salles naar schijf wegschrijven (fflush) is misluktveldnummer %s is te grootveldnummer is nulveldscheider %s wordt in getallen gezien als decimale kommaveldscheider %s wordt in getallen gezien als groepenscheiderveldscheider %s wordt in getallen gezien als mintekenveldscheider %s wordt in getallen gezien als plustekenvelden worden genummerd vanaf 1fifobestand %d is niet gesorteerdbestandsargumenten gaan niet samen met de optie '--files0-from'optie '--print-database' (-p) gaat niet samen met bestandenbestandssysteemtype %s is zowel gekozen als uitgeslotenkan geen nieuw proces startenopmaakspecificatie %s eindigt in '%%'opmaakspecificatie %s bevat geen '%%'opmaakspecificatie %s bevat te veel '%%'opmaakspecificatie %s bevat onbekende '%%%c'een opmaak gaat niet samen met uitvoer van gelijke breedtefout in fprintftime()'fsync' is mislukt voor %sfts_close() is misluktfts_read() is misluktfts_read() is mislukt: %saanmaken van relatief padverkrijgen van nieuwe eigenschappen van %sde groep van %s blijft %s
groeperen én de herhalingsaantallen tonen is onzingroepering gaat niet samen met optie '--to'groepering heeft geen effect in deze taalregiode functie iconv() is niet beschikbaarde functie iconv() is onbruikbaarid=optie '--no-newline' met meerdere argumenten wordt genegeerdinvoer wordt genegeerdinvoer wordt genegeerd en uitvoer wordt aan %s toegevoegdinvoer wordt genegeerd en standaardfoutuitvoer gaat naar standaarduitvoergenegeerd: ongeldige tab-grootte %s in omgevingsvariabele TABSIZEgenegeerd: ongeldige waarde %s van omgevingsvariabele QUOTING_STYLEgenegeerd: ongeldige breedte %s in omgevingsvariabele COLUMNSargumenten die geen optie zijn worden genegeerdincompatibele join-velden: %td, %tdincompatibele scheidingstekens'inotify' kan niet worden gebruikt; teruggevallen op polsenonvoldoende hulpbronnen beschikbaar voor 'inotify'invoer is niet gesorteerdinvoerregel is te langinteger-overflowverplaatsing tussen apparaten is mislukt: %s naar %s;  kan het doel niet verwijderenongeldig argument van '%s': %songeldig argument '%3$s' van %1$s%2$songeldig argument van '--%s': %songeldig argument van '--threshold': '-0'ongeldige IO-blokgrootteongeldig procesnummerongeldige stapwaarde: %songeldige aanpassing %songeldig argument: %songeldig argument %s van %songeldige backslash aan het eind van tekenreeks in -Songeldige stijl voor regelnummers: %songeldige bufferingsmodus %s voor %s
ongeldig bereik voor bytes of tekensongeldige byte- of tekenpositie %songeldig teken '%c' in opmaakreeks %songeldige tekenklasse %songeldig broknummerongeldige context: %songeldige conversieongeldige conversiespecificatie in achtervoegsel: %congeldige conversiespecificatie in achtervoegsel: \%.3oongeldige datum: %songeldige datumopmaak %songeldig aflopend bereikongeldig apparaat %s %songeldig apparaattype %songeldig veldnummer: %songeldig bereik voor veldenongeldige veldspecificatie: %songeldige veldwaarde %songeldige veldbreedte: %songeldig bestandsnummer in veldspecificatie: %songeldig bestandsnummer: %songeldige bestandsgrootteongeldige vlaggen in conversiespecificatie: %%%c%congeldig drijvendekomma-argument: %songeldige stijl voor voetregelnummering: %songeldige opmaak %s; een opmaakspecificatie moet %%[0]['][-][N][.][N]f zijnongeldige breedte van tussenruimte: %songeldige groepongeldige groep: %songeldige groepslijst: %songeldige stijl voor kopregelnummering: %songeldige kopregelwaarde %songeldige invoerongeldige invoer (de lengte moet een veelvoud van vier tekens zijn)ongeldige invoervlagongeldig invoerbereikongeldig geheel getal: %songeldig geheelgetal-argumentongeldige ispeed: %songeldige lengteongeldige lengte: %songeldig aantal regels: %songeldig lijnprotocol: %songeldige veldbreedte voor regelnummerongeldige ophoging voor regelnummersongeldig aantal lege regelsongeldige opmaak voor nummering: %songeldige regelbreedteongeldige regelbreedte: %songeldig hoofdapparaatnummer %songeldige maximum diepte %songeldig maximum aantal onveranderde statusopvragingenongeldig subapparaatnummer %songeldige modusongeldige modus %songeldige modus: %songeldig getalongeldig getal na ','ongeldig getal na '-'ongeldig getal na '.'ongeldig getal aan het begin van een veldongeldig aantal bytesongeldig aantal bytes om te vergelijkenongeldig aantal bytes om over te slaanongeldig aantal brokkenongeldig aantal kolommenongeldig aantal velden om over te slaanongeldig aantal regelsongeldig aantal regels: %songeldig aantal doorlopenongeldig aantal seconden: %songeldig getal: %songeldige optie: %congeldige optie: '%c';  -GETAL wordt alleen herkend als
het het eerste argument is; gebruik anders '-w GETAL'ongeldige optie -- '%c'ongeldige ospeed: %songeldige grondtalcode '%c' voor adressen; kies een teken uit [doxn]ongeldige uitvoervlagongeldige opvulwaarde %songeldige paginareeks %songeldige precisie in opmaakspecificatie %songeldige precisie: %songeldig bereik zonder eindpunt: -ongeldig herhalingsaantal %s in '[teken*aantal]'-constructieongeldige reeks '\%c' in -Songeldige aanduidingongeldig regelnummer voor beginregelongeldig argument van 'status'ongeldig achtervoegsel %s; het bevat een mapscheidingstekenongeldig achtervoegsel in argument '%3$s' van %1$s%2$songeldig achtervoegsel in invoer %s: %songeldig achtervoegsel in invoer: %songeldige lengte voor achtervoegselongeldige tab-grootteongeldig sjabloon %s; het bevat een mapscheidingstekenongeldig sjabloon %s; met '--tmpdir' mag deze niet absoluut zijnongeldig tijdsinterval: %songeldige opmaakstijl %s voor de tijdongeldige optie aan het eind: %congeldig type: %songeldig type: %s;
dit systeem kent geen drijvendekommagetal van %d bytesongeldig type: %s;
dit systeem kent geen geheelgetaltype van %d bytesongeldige eenheidsgrootte: %songeldige universele tekennaam \%c%0*xongeldige gebruikerongeldige gebruiker: %songeldige breedteongeldige waarde van optie '-w'/'--wrap'ongeldige bestandsnaam (lengte nul)het is gevaarlijk om recursief op %s te werkenhet is gevaarlijk om recursief op %s te werken (hetzelfde als %s)sleutel %lu heeft breedte nul en wordt genegeerdsleutel %lu is numeriek en beslaat meerdere veldengrote invoerwaarde %s: mogelijk verlies van precisievorige=een '-' aan het begin van een component in bestandsnaam %sleidende witruimte is significant in sleutel %lu; misschien ook '-b' opgeven?lengte is geen veelvoud van 8limiet %td is overschreden door de lengte %td van bestandsnaam %slimiet %td is overschreden door de lengte %td van bestandsnaamcomponent %sregelbuffering van standaardinvoer is zinloosregelnummer %s is kleiner dan het voorgaande regelnummer, %jdregelnummer loopt overmet huidige 'rlimit' is maximum argument van '--%s': %ude maximum lengte van de controlesom voor %s is %d bitsonvoldoende geheugen beschikbaaronvoldoende geheugen beschikbaar voor invoerbuffer van %td bytes (%s)onvoldoende geheugen beschikbaar voor uitvoerbuffer van %td bytes (%s)berichtenwachtrijgemigreerd bestand met gegevensgemigreerd bestand zonder gegevensminimum argument van '--%s' is %sverkeerd uitgelijnde constructie met [:upper:] en/of [:lower:]ontbrekende specificatie voor %%-conversie in achtervoegselontbrekende %sontbrekend achtervoegsel 'i' in invoer: %s (bijvoorbeeld Ki/Mi/Gi)ontbrekend argument na %sontbrekend argument bij %sontbrekende naam in tekenklasse '[::]'specificatie voor conversie ontbreekt in achtervoegselontbrekende bestemming na %sontbrekend coderingstypeontbrekend teken in equivalentieklasse '[==]'geen bestand opgegevenontbrekende hexadecimale cijfersontbrekende lijst van byte- en tekenpositiesontbrekende lijst van veldenontbrekend argumentontbrekend argument na %sde modus mag alleen bestandstoegangsrechten bevattenmodus van %s is veranderd van %04lo (%s) naar %04lo (%s)
modus van %s blijft %04lo (%s)
meerdere tekens in scheidingsteken %smeerdere tekens in scheidingsteken %smeer dan één optie '-i' gegevenmeer dan één optie '-l' of '-t' gegevenmeer dan één compressieprogramma opgegevenmeerdere veldspecificatiesmeerdere niveaubereiken gegevenmeer dan één scheiding gegevenmeer dan één uitvoerbestand gegevenmeer dan één uitvoeropmaak opgegevenmeer dan één bron van willekeurige bytes gegevener is meer dan één relatieve wijziging opgegevenmeerdere rollen gegevener zijn meerdere scheidingstekens gegevenmeer dan één doelmap opgegevenmeerdere typen gegevenmeerdere gebruikers gegevengemultiplexed blok-apparaatgemultiplexed byte-apparaatgemultiplexed bestandmet '--argv0' (-a) moet een commado gegeven wordenmet '--chdir' (-C) moet een commado gegeven wordenbenoemd bestandnoch de symbolische koppeling %s noch waar deze naar verwijst is veranderd
netwerkapparaatgeen omgevingsvariabele SHELL en geen shell-optie gegevende eigenaar van %s is onveranderd
geen commando gegevengeen conversie-optie gegevengeen bestandssystemen verwerktgeen bestanden meer overgeen groep opgegeven voor onbekend UID: %jugeen invoer van %sgeen regels om te herhalengeen inlognaamgeen proces-ID gegevengeen afsluitend aanhalingsteken in -Ser mag geen opmaaktype gegeven worden als symboolnamen getoond wordenals '-l' wordt gebruikt, moet minstens één gebruikersnaam gegeven wordenargument is geen geheel getalniet-overdraagbaar teken %s in bestandsnaam %sgeen TTY%s wordt niet vervangenzal niet schrijven via loze symbolische koppeling %smaximaal aantal parallelle processen mag niet nul zijngetallen gebruiken %s als decimale komma in deze taalregionumerieke startwaarde is te groot voor lengte van achtervoegselverouderde sleutel %s is gebruikt; gebruik liever %suitpositie werd te groot tijdens lezen van bestand %spositie is te groot: kan niet afkorten tot een lengte van seek=%jd (%td-byte) blokkenmap %s wordt overgeslagenaanalleen ${VARNAAM}-expansie wordt ondersteund; fout bij: %sslechts één '[t*]'-herhalingsconstructie mag voorkomen in SET2er mag slechts één apparaat gegeven wordener mag slechts één lijst gegeven wordenalleen de laatste optie '-d' wordt gebruiktalleen de laatste optie '-s' wordt gebruiktopenen is misluktoptie '-%s' wordt genegeerdopties '-%s' worden genegeerdoptie '-r' betreft alleen de noodvergelijkingoptie '--output': veld %s is onbekendoptie '--output': veld %s is meerdere keren opgegevenoptie '--skip-chdir' is alleen toegestaan wanneer DOELMAP de ouwe %s isoptie '--zero' is niet toegestaan bij standaardopmaakoptie is gebruikt in een ongeldige context -- %cde opties '%s' en '%s' gaan niet samenopties '-%s' gaan niet samende opties '--compare' (-C) en '--preserve-timestamps' gaan niet samende opties '--compare' (-C) en '--strip' gaan niet samende opties '--print-database' en '--print-ls-colors' gaan niet samenof lokaal via: info '(coreutils) %s%s'
achtervoegsels voor uitvoerbestanden zijn verbruiktuitvoeropmaak: %soverloop bij het vergroten van de grootte van bestand %soverloop in %jd * %td-byte blokken voor bestand %soverloop bij lezen van %sde eigenaar van %s blijft dezelfde
de eigenaar van %s blijft %s
paginanummer loopt overte smalle paginabreedtegeen PCLMUL-ondersteuning gedetecteerdpoortinitialisatie van posix_spawn() is misluktinstellen van posix_spawn() is misluktbehouden van toegangsrechten van %sbehouden van tijdsstempels van %salle herhaalde regels én de herhalingsaantallen tonen is onzinnamen printen in plaats van echte IDs vereist '-u', '-g', of '-G'pseudo-adres is te groot voor de invoerde eindpunten van bereik '%s-%s' staan in omgekeerde volgordefout bij lezenlezen is misluktlezen van map %srecord is te grootstandaardfoutuitvoer gaat naar standaarduitvoerzal de mappen %s en %s niet verwijderen;  %s wordt overgeslagenleeg normaal bestandnormaal bestandafgewezen achtervoegsel in invoer: %s (overweeg om '--from' te gebruiken)%s is verwijderd
map %s is verwijderd
verwijderen van map %shernoemd: %s -> %srun-levelsemafoorsignaal %s wordt gestuurd naar commando %sscheidingsteken mag niet leeg zijnzet LC_ALL='C' om het probleem te omzeileninstellen van vlaggen voor %sinstellen van toegangsrechten van %sinstellen van tijdsstempels van %sgedeeld geheugenobjectde som van de argumenten van '-j' en '-N' is te groot%s is overgeslagen
%s wordt overgeslagen, omdat deze zich op een ander apparaat bevindtbestand %s wordt overgeslagen, omdat het werd vervangen tijdens het kopiërensocketstandaardfoutuitvoerstandaardinvoerstandaardinvoer is geslotenstandaarduitvoerstartpaginanummer %ju is hoger dan het aantal pagina's %juopvragen van bestandsstatus is misluktverdwaald teken in veldspecificatievergelijken van tekenreeksen is mislukttransformatie van tekenreeks is mislukthet proces 'strip' is abnormaal afgeslotenhet onderdrukken van onbegrensde regels heeft
     alleen zin als met velden gewerkt wordtsymbolische koppelingsyntaxfout: verwachtte ')' na %ssyntaxfout: verwachtte ')' in plaats van %ssyntaxfout: ontbrekend argument na %ssyntaxfout: onverwachte ')'syntaxfout: onverwacht argument %sgestarttab-grootte of -positie mag niet 0 zijntab-grootte of -positie bevat ongeldig(e) teken(s): %stab-posities moeten toenementab-positie is te groot: %stabpositie is te groottabposities zijn te ver uit elkaardoel %sdoel %s is geen mapdoelmap %seen doelmap is niet toegestaan bij het installeren van een mapterm='test'/'['sorteerregels van %s worden gebruikteenvoudige byte-vergelijking wordt gebruiktde opties '--binary' en '--text' gelden niet voor het verifiëren van controlesommende optie '--compare' (-C) wordt genegeerd bij een modus met non-toegangsrechtende optie '--ignore-missing' geldt alleen voor het verifiëren van controlesommende optie '--quiet' geldt alleen voor het verifiëren van controlesommende optie '--raw' wordt niet ondersteund bij meerdere bestandende optie '--status' geldt alleen voor het verifiëren van controlesommende optie '--strict' geldt alleen voor het verifiëren van controlesommende optie '--tag' geldt niet voor het verifiëren van controlesommende optie '--warn' geldt alleen voor het verifiëren van controlesommende optie '--zero' wordt niet ondersteund bij het verifiëren van controlesommenbij omzetting mag de '[t*]'-constructie alleen in SET2 voorkomende '[t*]'-herhalingsconstructie mag niet voorkomen in SET1het argument %s begint niet met een plusteken;
als een optie gebruikt wordt om een datum op te geven,
moet een gewoon argument een opmaaktekenreeks zijn die begint met '+'het scheidingsteken moet een enkel teken zijnhet gemonitorde commando heeft een geheugendump gemaaktde opties voor duidelijke en voor 'stty'-leesbare uitvoer gaan niet samende opties voor syntax en kleurenlijst gaan niet samende opties om de tijd te tonen of in te stellen gaan niet samende gegeven opties om datums te tonen gaan niet samende originele tekenreeks was %sde te vergelijken tekenreeksen waren %s en %sde strip-optie mag niet gebruikt worden bij het installeren van een mapde lengte van het achtervoegsel moet minstens %d zijndit systeem kent geen drijvendekommagetaltype %stijd %s valt buiten bereikte weinig X'en in sjabloon %ste veel specificaties voor %%-conversie in achtervoegselte veel tekens in de sette veel invoerregelste veel herhaalde regelste veel sjablonentotaaltotaal aantal bytestotaal aantal tekenstotaal aantal regelstotaal aantal woordendoorlopen is mislukt: %sttyname() is misluktzelfstandig geheugenobjectUID=%jukan de huidige werkmap niet vastleggenkan beveiligingscontext %s niet instellenonverwachte fout: fts_info=%d: %s
gaarne rapporteren aan %sonbekende afsluitwaarde (%d) van commandoonbekende afsluitwaarde (0x%X) van commandoniet-ontleedbare waarde in omgevingsvariabele LS_COLORSniet-herkend argument van '--preserve-root': %sniet-herkend argument: %sniet-herkend voorvoegsel: %sniet-ondersteunde ispeed: %sniet-ondersteunde ospeed: %sin bedrijf  %2d:%02d,  in bedrijf %jd dag %2d:%02d,  in bedrijf %jd dagen %2d:%02d,  in bedrijf ???? dagen ??:??,  bijwerken van tijden voor %sgebruik '--no-preserve-root' om deze drempel te omzeilengebruik -[v]S om opties op te geven in '#!'-regelsgebruik van %s om standaardinvoer aan te duiden werkt niet in bestandssysteem-modusAVX2-hardware-ondersteuning wordt gebruiktAVX512-hardware-ondersteuning wordt gebruiktPCLMUL-hardware-ondersteuning wordt gebruiktVMULL-hardware-ondersteuning wordt gebruiktwaarde is te groot om geconverteerd te kunnen worden: %swaarde is te groot om weer te kunnen geven: '%Lg' (kan geen waardes > 999Q aan)waarde is te groot om weer te kunnen geven: '%Lg' (overweeg om '--to' te gebruiken)waarde/precisie is te groot om weer te kunnen geven: '%Lg/%zu' (overweeg om '--to' te gebruiken)geen VMULL-ondersteuning gedetecteerdwachten op %s [-d]wachten op dochterproceswachten op 'strip'waarschuwing: %s is nulvermenigvuldiger; gebruik %s als dat de bedoeling iswaarschuwing: %s: tekens na tekenconstante zijn genegeerdwaarschuwing: %s: achterhalen van context is misluktwaarschuwing: %s: kan beveiligingscontext niet veranderen naar %swaarschuwing: '.' zou ':' moeten zijnwaarschuwing: 'touch %s' is verouderd;
gebruik 'touch -t %04ld%02d%02d%02d%02d.%02d'waarschuwing: '--pid=PID' wordt niet ondersteund op dit systeemwaarschuwing: '--retry' wordt genegeerd;
optie '--retry' is alleen zinvol bij volgenwaarschuwing: '--retry' is alleen effectief bij de initiële openingwaarschuwing: een onaangehaalde backslash aan het eind van een tekenreeks
  is niet overdraagbaarwaarschuwing: backslash aan eind van opmaakaanduidingwaarschuwing: kan %s niet verwijderenwaarschuwing: uitschakelen van geheugendumps is misluktwaarschuwing: het onbeperkt volgen van standaardinvoer is ineffectiefwaarschuwing: optie '--context' wordt genegeerdWaarschuwing: optie '--context' (-Z) wordt genegeerd;
het vereist een kernel met SELinux.Waarschuwing: optie '--context' (-Z) wordt genegeerd;
het vereist een kernel met SELinux of SMACK.waarschuwing: overbodige argumenten worden genegeerd, beginnend bij %swaarschuwing: positie in bestand klopt niet meer na mislukte leesopdrachtwaarschuwing: ongeldige breedte %td; zal %d gebruikenwaarschuwing: regelnummer %s is gelijk aan het voorgaande regelnummerwaarschuwing: de opties '--apparent-size' en '-b' hebben geen effect samen met '--inodes'waarschuwing: kan signaal niet deblokkerenwaarschuwing: bronmap %s is meerdere keren opgegevenwaarschuwing: bronbestand %s is meerdere keren opgegevenfout: totalen tonen gaat niet samen met '--max-depth=%td'opmerking: totalen tonen is hetzelfde als '--max-depth=0'waarschuwing: de octale code \%c%c%c is niet eenduidig en wordt
  hier geïnterpreteerd als de volgende twee bytes: \0%c%c, %cWaarschuwing: kan timer niet aanmakenWaarschuwing: kan timertijd niet instellenwaarschuwing: onbekende stuurcode '\%c'merkwaardig bestandals SET1 niet ingekort wordt, mag SET2 niet leeg zijnbij het lezen van bestandsnamen van standaardinvoer is bestandsnaam %s niet toegestaanals een uitvoerstijl gegeven is mogen geen modussen ingesteld wordenbij omzetting met gecomplementeerde tekenklassen moet SET2
alle tekens in het domein naar één afbeeldentijdens een omzetting met SET1 langer dan SET2,
mag de laatste tekenreeks niet eindigen op een tekenklassebij omzetting zijn in SET2 alleen de tekenklassen
'upper' en 'lower' toegestaanwhiteoutzal %s niet kopiëren via zojuist gemaakte symbolische koppeling %szal geen harde koppeling %s maken naar map %szal zojuist aangemaakte %s niet overschrijven met %smet '--parents' moet de bestemming een map zijnmet '--suffix' moet sjabloon %s eindigen op een Xmet FILE=%s, afsluitwaarde %d van commando: %smet FILE=%s, signaal %s van commando: %sfout bij schrijvenfout bij schrijven naar %sschrijven is misluktschrijven naar %soptie '--no-preserve-root' mag niet afgekort wordenu moet -c, -l, -r, -t, -u, of een context opgevenu moet een bufferingsmodusoptie opgeven u moet een lijst van bytes, tekens, of velden gevenu moet een relatieve %s opgeven bij %su moet ofwel %s ofwel %s opgeven