File: tr.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 (3346 lines) | stat: -rw-r--r-- 252,268 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
d7C	nHap^!ϖ5~'6wݙTUGv]iǜw/#ўbnB>biAJHʫխMZ%Xk`G+s2>G&|*=	lGD;+"[U,J
ex8"Jm*;OQwKZ7FC+"NyM_ 7;X7ZFOLTXO?E=MTB&KiTS
N^L>9=YKOP3WRM/C}ODBVIJ7.DfKGT?H=>IZINF=<BA$3f'\Cdcg$A5;H8m*%ePx8/h.3b3r3Ii}LtZUG 5%9EK.&S!(uF,ReA,'AT4;2?:Sz>D
<R*EPGQACDGd;B@+DlVF	EO	I	9	;
LU
*
B
FUWCM3?8sI;B2
5u
P
?
A<H~*<H/;xJFGF9D4
NBL/HEW-D7FH4;HFII3-'LU>IA+Fm31-8HA-CM5)$FNSh.:K&IrE-0EK<P<\0uOFG=H8L9TFFK:h.KS Ar 9 T HC!>!G!X"Ll"Q"U#*a#F#G#N$Dj$A$N$<@%G}%>%;&F@&M&<&5'CH'E'?'5(AH(K(C(M)0h)G)9)Q*;m*1*L* (+0I+#z+O+2+;!,?],J,S,<-KU-7-L-A&.;h.3.J.S#/Nw/9/L0DM060M0L1=d1;1.1M
20[2;2C2B3O3L^3<3A37*44b4N4,4I5K]5J5955.6;d6H66+7;071l7J7M7O78J898>9GK9O9C9E':@m:@:K:+;;5g;D;B;D%<Fj<G<5<-/=9]=V===;,>Oh><>R>UH?;?3?I@FX@H@4@;A%YA9ANAMBNVB0BAB7CHPC#CC4CIDIUDHDAD@*EFkEDE8E80FKiFFFHFHEG=G-G:G=5HFsHRHL
I:ZIIIJI?*J/jJKJBJ.)KXK9L8>LHwL<LEL9CM<}MSMNmOPQQ?S$Uu
V0V(VJV+%WQW$JX%oX*XX:YBZ>]Z&Z8Z9Z#6[$Z[![E[[=\?],C]"p]]
]"],]1],/^@\^"^P^$_$6_F[_C_ _J`=R`;`L`+a6EaJ|aLa=b>Rb4bCb$
cH/cGxc4c:c0d7dJd4Fe4{e'e;e2f3Gf/{f=fuf7_g5g
ggggg&g	h)h5hHh]h{hh hhh$hi2i.Mi3|i5i)ij))jSj"gj'jjj"jk"k (kIk#akk>k"kl,#lPloll,ll#l"l$m:m/Zmm8mmmmn.nMnbnsnnnnnnn'o0o*Kovo$o oo"op)pEpYp"ppp.p,p)q,qIqZq"yqq.q'qr(r,Frsr.r'r(rs&s?s"Zs}ss"ssss,st+t;t0Wt.ttt0t"$uGuWu%hu)uu(u.u<v1Ov(v,v(vw, w,Mw(zw.w/wxxx67x<nx"x#x%x.y+Gy(sy-y"yCy)1z[zmz'zz
zzzz,z8{)I{s{
{{{{{{	{{{E	|	O|Y|	e|o|}}K}8}4~=~k~h4
.9F3R(	AƀA9JC@ȁ	1܂90Hy?($?OX](c
F+ޅ+
06	gqx1\I
Lj]&xljԉى߉:<P_cl	݌$ EWrÍՍ39
FTe

Əя֏ۏ#&/*NyE|M֐X$}iHoNDHX
m,{&ϔ
۔
#H,gu@ݕ;9*M&xDA&Bߘ";gTCkb7Λ%	=GTYeNyȜId/7@,FC
ĞҞ
#1'3J[}
$2
?MZ,m&*;(c05<;CTh}Iۤdq$v
$	&٧%C&+j
ʨߨ"#/S
h9s,&ڪ '"0J4{ͫ	)YʬT$(yX&+cRԮ#&ԯ"g~.4(S+|~'̲=m&ҳ^ OpF'ZZ"ݵ!$" G>h'<϶Tafk·ȸHG˹	f";SB5Ҽ=>F;3ؽ/+<'h#Ծ<=QW]*_Aٿ$@W2q1E(!;]#d%,0&07h*y"#AE`; , 0!Qs+##,&0S,# 'Ca$"'$5>'t*>Rf}(.-<Wr%FB+[1*(C)`

)8&U'|,<:.I!x&0@#P't"& /Pi%1H,_+-) 8?x#3	:-Dr	#"5Xiz+8Kci{%$+#1:U!/'
 ;Ni+*%#$H%^!'3,Q ~$)!!2K]{*$#%
3!Su/( 3!-U!1'-72e1.%A\w)!!()?Qp(
;=M873;;o.$%$JDo32O%%-	7)F=p@:*H,Z;$<W!p ( C!d"(
"6*I-t';Wn%1#":7r
"
7>Qex"#!Fh{7!.>O^w""; Uv]KGb!"*Do/$ ?[q2;
'E\(r
,9#*],-*G\z'78
9G_z/-
..H#_&)*$*(Ox+1"9Vm#$$,!L!n%'%"1"Ps&
7=A_t
!
-,CZ	'"?,Hu%y44 "Cb1n2!-7#-[$(G9>Ex2""EYs>BT
25']i		)#>R$g-70@Lj#J
$)B'l$*">Ws	8
.4AHvUG>]??8	=U	;	>	3
B
(
!
ENd[>@N#<
/#
S
n





*
!7* b"3)4D0Z*C#4:X<H"Y+|J2?A4@#$6=[BH4A.v<E((Qd5y07c|"
35jAh_u0~,*3(;&d(
4/#(S7|& W_j j"6"&#^#R$c$v&|&a'((ld*+q,.,..{/P1Y3A4K45	678L99:{_;<=s>Z@ABfC}CDDdF8H)SH}HIJGKt.LLS9N-NBNOPQ`fSTS^T{UV5VW#.XRX.YYZ[M[[\V^_$_R`Ra:bNbdddeMffNcgChh<ijBj+kkJlOOlElTlS:mmInA\nXnSnIKotoT
p _p5pBp@pv:qTqOrXVrRrIs>LsMsUsO/t;tNt|
uNuJuL!vLnvQv
wPwwHxNxSy myTyLy/0{p`{M{t||F}}1~ETB*OmtZρ,ki~<6ń%҇q(08i_9xU5x*;m?ES/*@T=DT;טMa<0*F[>U97Mq|D<MJϜ'PBOUI9HQ̞HEgJCL<FJРN[j;ơDKG,G@JILK8-BfNMVFGSP9JCզA>[RAQ/NOШ; K\<IJ/-zUN3MI5˫@7BDzz|:H&1'2YR:߮OCjA.21RKOа, SMQ0($AMN~޲/]7PųQPh)GFHHPص))4SPHٶM"OpAQGTTKX=78ιTN\V:=N@ENRռO(MxPƽ2FJSx6^QJA2StIGRZTS?VSJ;59qHQAFP8MH`I1>{E#H$-m6$4[|L
DZ,AB?QL@AQaV}
EKK6fINV6N5V;iLDR7J<S!:u6Q89rHPO?8)KbC:=G1SRE^FII5PJGEcQKG/>EBQMG(OpQ);<MxC4
N?ALO7m=QG5E};S-SMPL Pm@:A:I|-(:JXMJM<MACL^9CQ)~{V0Q6LRQYHH:=Ux|UK.M55T>D8F<G@=<eiedge3)}7q/V20(c046S)F}BB+JBv5&4'KHspQ"<t)$54O5K$R+&~&RN nMCD!f-5@SM8@:\<&I@E49DR@*:k+@6	7J	2	@	w	7n
4




	
%	.8DY5y# D[1p47(
"8
0[

'
8
+7 c%%$H&b*E`"q%$$49>H$4 Op'
"*.M1|,-Ma :7)( Rs$C%,R5q2.0)/Z*%'.Et%C(-(D1m,$$9&Pw.**5(8^/15./,^5'*54JEL.N}1//3)5]#C-) @ 'Y     
 B 9 -9!g!
s!#~!!!!!!!!"P"	m"w""p"$#$e5$C$$$%&&
>'I'\'Hh'''''R'MH(D(L(N()w)8\*/*0**++E"+,h++0+++++--
0-?;-*{-)-0-	.
..2.7
/E/#K/So/
// 00F12`1111111
1112D	2N2h28t2	4
44445!5%<5b5{5 5555556
66*6;6L6_6
e6p6=777
77	8%858
D8R8_8k8|8888-8
88*9.9B49w9U9c9K:;z;X(<<====
=5>$;>`>
l>w>>>%>O>a?@v??Ah@@9@6A:8AfsAOA*B=B+C:CCDiE/uEEE0FvF)FF
F	FFFTGXGG*H#1HOUHNH%HOIjIIIIIIII
JJ6K5?K\uKK
]LkL
xLLL8L)L4
M??MMM'N8OHO?NOOBO
OOPP=PIPNUPPSQbQ.gQQPQ*R#S#6SZSrS,(T5UTBT'TTT
UU/UIU`U"wUU@UVV>W3KW+W*W2W;	X8EX ~X#X%XX6YhYv!Z3ZZgZN[*n[q[$\0\M\']+/]%[]*]o]^4^"^._2B_u_``@ea,a$aqa'jbbM@c/cic((d&Qd.xd+dHd0ePMe^e
ef
f,fKfaf;xf!ggNhHh<iEipNiiiiIkM'l?ulMlUm YmHzm<m8n49n0nn,n(n$no45ojoooo%ooo%oRp#jp$pp?p>qOqQ`qq"qq&q#r;9r4urrrOr1s1Bs!ts s(s'st&tF>t<t&t@t:*u(eu1uMu0v'?v-gv5v9v,w'2wZw+vw"w,w w"x#6x/Zx*x!x0xy5!y+Wyyyyyy(z8zVzozz zz*z{{18{j{{{{{;{*|J2|H}|-|>|3}?}&U})|}}},}
~~9~K~_~|~%~/~(~1$M-r56)
 7X)jʀ6$E0j%*,(.B3q7݂(4Rf{"̃.4;5p57&C#jօI<.Bq
 ߆#&='d҇.E6V"
ψ.ވ
57-m8<ԉ*2<4o#Ê+74c4 ͋&//#_)&Ԍ'2+Z"*"ԍ&9If-(+ڎ!)('Rz-"4ߏ"<72t!#ɐ'9'O8w8>6(_{͒",$9 ^)"̓ ޓ9YmCM?4@t*(4:T5$Ŗ'+0.\=ɗ1+N%z6.ט3:$Lq4y7ęPPMX,
$52h+ΛE'Cb%&
̜%ڜ$(3M&*"ӝ!2Kk-0$?Ul؟/A4X.(?!%GVh(ʡ8ڡ-CYw+ۢ$,'Ks $֣L$B
guŤ%%.=!l!¥8LteڦKA^y )ʧ."#F'X1'ʨ!0J3a6̩%>%Yª&ݪ2<77t70%D@*BE9"ѭ?*0[-d"Ů%'6)Ku"*ٯ.4I,~ ̰!/	-9g)**$.:
i*w%Ȳײ $3&Fm;yCȳ$1&F m)д*)GLqص<3$EX5Զ"ܶ>6Z#"ط=J))t;Dڸ7.W,Kι=IXE#.!P d*ƻ%IA=
ɼ׼9J\?iν$(2Fy;1.DK
ʿܿ%&#@:d`
-+<-h"*+7;s-	9CHSQMS<TKL1L~DJD[@)#%8j5aK4N*3:Qm!.%'?M!;.
9OjT?K/%{'/<6Mj?|A)2([Lt,F35Ki*GCE!KQLI:??1Q58*`C&+7.zffXHB-7!:Y*)%
4G2_/,00 Q[:(tA[.Px'cl
_29D(k[hBHC(-Fm]4L^P2CB11
4GTpj]R, #"R01>,J|Z YQ"6rV^nnyftVX2S/[lJfkf{(O7q-U/m*9R*J5FE<36F]= bZ_fW?<gmo~DcqI#i:[]qf|mL2w6hxFT~
xA! i6"i3
~v1a%DjS? -V
	?ac	8a=&~=Ge7XV?MMDSr
*9>u&kq9Wi'w-C~luh%Ns)A|#scS@},pk<(o
AaA]
[SCo>gF/7FD(h-/BZYsbN7)QFV3Z9|p(	1i;"`LNz_%yN4
"n:?{zqj`fO`_W>,[WZ55$r*tyLPy'?,v6C:Jr+	$)l	iMp.)v7l5sR;EKMG{,vb{)rLnt@)n+BXI@r+^=8./SwT0^Os$K9\oG5I
SJxmbEB$M%dkiI#E=n=4N{X1]zH<WXzuybu\KZ6Mw&}PoNl7$PQuj@jITA!g-dJ}@&<.dVHG#UHB&2JP2yIUR-eK}\YbU<s1#^;t%;.^3!y0sRhO4K7'c`0 xn
'M8
me84|_{DZOt	.K]Td*4{H/ke@GUoG?xz+q!*h'<$YWH~E3U_0Q)L&L8,VXvp;T%!:'B>&v^=U:`Y:*eIOe$Q8;/Y"\ g0}+\wNTEgftd
~"Oq+;Yz2cl>5DwPuvh\`cX|!eu
EH.|k3j@a_>AjdQ!3a059gx6rmCb}KWp	ozgpd#\}+Qw%8a`RC


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

--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

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.

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.

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, 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.

Combination settings:

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 -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 is 0 if all input numbers were successfully converted.
By default, %s will stop at the first conversion error with exit status 2.
With --invalid='fail' a warning is printed for each conversion error
and the exit status is 2.  With --invalid='warn' each conversion error is
diagnosed, but the exit status is 0.  With --invalid='ignore' conversion
errors are not diagnosed and the exit status is 0.

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


FORMAT must be suitable for printing one floating-point argument '%f'.
Optional quote (%'f) will enable --grouping (if supported by current locale).
Optional width value (%10f) will pad output. Optional zero (%010f) width
will zero pad the number. Optional negative values (%-10f) will left align.
Optional precision (%.1f) will override the input determined precision.

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'.

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

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

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.

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

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 -

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 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 MODE argument of --cached can be: always, never, or default.
'always' will use cached attributes if available, while
'never' will try to synchronize with the latest attributes, and
'default' will leave it up to the underlying file system.

The TIME_STYLE argument can be full-iso, long-iso, iso, locale, or +FORMAT.
FORMAT is interpreted like in date(1).  If FORMAT is FORMAT1<newline>FORMAT2,
then FORMAT1 applies to non-recent files and FORMAT2 to recent files.
TIME_STYLE prefixed with 'posix-' takes effect only outside the POSIX locale.
Also the TIME_STYLE environment variable sets the default style to use.

The WHEN argument defaults to 'always' and can also be 'auto' or 'never'.

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 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.

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.
        ???      --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
      --color[=WHEN]
         color the output WHEN; more info below
      --copy-contents
         copy contents of special files when recursive
      --endian={big|little}
         swap input bytes according the specified order
      --exclude=PATTERN
         exclude files that match PATTERN
      --filter=COMMAND
         write to shell COMMAND; file name is $FILE
      --first-only
         convert only leading sequences of blanks (overrides -a)
      --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
      --lookup      attempt to canonicalize hostnames via DNS
      --message     same as -T
      --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)
      --numeric-suffixes[=FROM]
         same as -d, but allow setting the start value
      --output-error[=MODE]
         set behavior on write error.  See MODE below
      --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 '/'
      --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
      --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[=HOW]
         like -u but give control on HOW to delete;  See below
      --retry
         keep trying to open a file if it is inaccessible
      --si
         like -h, but use powers of 1000 not 1024
      --si
         likewise, but use powers of 1000 not 1024
      --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
      --sync
         invoke sync before getting usage info
      --traditional
         accept arguments in third form above
      --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
   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
   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   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)
  %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

  %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
  -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, --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
  -F
         same as --follow=name --retry
  -F, --classify[=WHEN]
         append indicator (one of */=>@|) to entries WHEN
  -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
         use PWD from environment, even if it contains symlinks
  -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, --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)
  -P, --portability
         use the POSIX output format
  -R, --recursive
         list subdirectories recursively
  -R, --right-side-refs          put references at right, not counted in -w
  -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
  -T, --format=tex               generate output as TeX directives
  -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, -w, --mesg    add user's message status as +, - or ?
  -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 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
  -a
         change only the access time
  -a
         ignore, for compatibility with other versions
  -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 FILE     FILE exists and is block special
  -b, --before             attach the separator before instead of after
  -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, --number-nonblank    number nonempty output lines, overrides -n
  -b, --suffix-format=FORMAT
         use sprintf FORMAT instead of %02d
  -c
         (ignored)
  -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=LIST
         select only these characters
  -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 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, --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 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
         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'
  -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 FILE     FILE exists and is a symbolic link (same as -L)
  -h, --header-numbering=STYLE    use STYLE for numbering header lines
  -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 symbolic links instead of any referenced file
  -i
         prompt before every removal
  -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 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, --count-links
         count sizes many times if hard linked
  -l, --join-blank-lines=NUMBER   group of NUMBER empty lines counted as one
  -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, --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, --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, --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-uid-gid
         like -l, but list numeric user and group IDs
  -o
         like -l, but do not list group information
  -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
  -p
         same as --preserve=mode,ownership,timestamps
  -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, --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, --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 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
         move all SOURCE arguments into DIRECTORY
  -t, --terse
         print the information in terse form
  -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, --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
         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 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, --width=COLS
         set output width to COLS.  0 means no limit
  -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
  -x
         list entries by lines instead of by columns
  -x
         use hex suffixes starting at 0, not alphabetic
  -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, --zero
         add a final overwrite with zeros to hide shredding
  -z, --zero                   end each output line with 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
  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)
  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)
  oflag=FLAGS     write as per the comma separated symbol list
  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 groups= old %.*s: invalid conversion specification%b %e  %Y%b %e %H:%M%s (for regexp %s)%s -> %s (unbackup)
%s [-d] terminated abnormally%s and %s are the same file%s could not be accessed
%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: %s: line number out of range%s: %s: match not found%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 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: 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 %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: unrecognized option '%s%s'
%s: unwritable %s (mode %04lo, %s); try anyway? %s: value not completely converted%s: write error%s: write failed%s:%lu: invalid zero-length file name%s}: integer required between '{' and '}'''+' specifier not at start of number: %s'+' specifier only allowed with the last value'-%c' extra characters or invalid number in the 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--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--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--reflink can be used only with --sparse=auto--tag does not support --text mode--terse --file-system is equivalent to the following FORMAT:
    %s-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 errorCAUTION: shred assumes the file system and hardware overwrite data in place.
Although this is common, many platforms operate otherwise.  Also, backups
and mirrors may contain unremovable copies that will let a shredded file
be recovered later.  See the GNU coreutils manual for details.
COMMENTCPU 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
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>
General 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.

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 BradyPaginate 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 numbers from FIRST to LAST, in steps of INCREMENT.
Print or change terminal characteristics.
Print or check %s (%d-bit) 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 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 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]...
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]... 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]... 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: 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.
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^ 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 %savx2 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 --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 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 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 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 supportedclearing 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 datacould 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: %sdirectorydirectory 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: %sexecuting with FILE=%s
exit=extra argument %sextra operand %sextra operand %s not allowed with -%cfailed to access %sfailed 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 pipefailed to create security context: %sfailed to create symbolic link %sfailed to create symbolic link %s -> %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 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 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 stringsfsync 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 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 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 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 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 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 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 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 8line number overflowmaximum 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 --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 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 argumentnot a ttynot writing through dangling symlink %snumber in parallel must be nonzeronumerical suffix start value is too large for the suffix lengthobsolescent key %s used; consider %s insteadoffoffset overflow while reading file %somitting 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 specifiedopen 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 reading %sownership of %s retained
ownership of %s retained as %s
page number overflowpage width too narrowpclmul support not detectedportpreserving permissions for %spreserving times for %sprinting all duplicated lines and repeat counts is meaninglessrange-endpoints of '%s-%s' are in reverse collating sequence orderread errorread failedreading directory %srecord too largerefusing 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, %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 largeskipping %s, since it's on a different deviceskipping file %s, as it was replaced while being copiedsocketstandard errorstandard inputstandard input is closedstandard outputstat 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 --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 multi-byte number group separator in this locale is not supportedthe 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 strings compared were %s and %sthe strip option may not be used when installing a directorytime %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 templatestotaltraversal failed: %styped memory objectunable 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: %sup  %2d:%02d,  up ???? days ??:??,  use --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 pclmul hardware supportvalue too large to be converted: %svalue too large to be printed: '%Lg' (consider using --to)waiting 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: line number %s is the same as preceding line numberwarning: options --apparent-size and -b are ineffective with --inodeswarning: security labeling handle failedwarning: setitimerwarning: sigprocmaskwarning: source directory %s specified more than oncewarning: source file %s specified more than oncewarning: 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 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.1-pre1
Report-Msgid-Bugs-To: bug-coreutils@gnu.org
PO-Revision-Date: 2022-04-10 23:00+0300
Last-Translator: Emir SARI <emir_sari@icloud.com>
Language-Team: Turkish <gnome-turk@gnome.org>
Language: tr
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.
X-Generator: Poedit 3.0.1



TÜR, bir veya daha çok şu belirtimlerden yapılmıştır:
  a          adlı karakter, yüksek sıralı biti yok sayar
  c          yazdırılabilir karakter veya ters eğik çizgi kaçışı


Geleneksel biçim belirtimleri birbiriyle karıştırılabilir; şunları toplarlar:

  ( İFADE )               İFADE doğrudur
  ! İFADE                 İFADE yanlıştır
  İFADE1 -a İFADE2   İFADE1 ve İFADE2 her ikisi de doğrudur
  İFADE1 -o İFADE2   ya İFADE1 ya da İFADE2 doğrudur

  ARG1 * ARG2       aritmetik çarpma işlemi
  ARG1 / ARG2       aritmetik bölme işleminde bölümü verir
  ARG1 % ARG2       aritmetik bölme işleminde kalanı verir

  ARG1 + ARG2       aritmetik toplama işlemi
  ARG1 - ARG2       aritmetik çıkarma işlemi

  ARG1 < ARG2       ARG1 küçüktür ARG2
  ARG1 <= ARG2      ARG1 küçük veya eşittir ARG2
  ARG1 = ARG2       ARG1 eşittir ARG2
  ARG1 != ARG2      ARG1 farklıdır ARG2
  ARG1 >= ARG2      ARG1 büyük veya eşittir ARG2
  ARG1 > ARG2       ARG1 büyüktür ARG2

  DİZİ : DÜZİFD     ilk karakter sonrasında DİZİ içindeki
                    DÜZİFD ile eşleşen kısım

  match DİZİ DÜZİFD         DİZİ : DÜZİFD ile aynı
  substr DİZİ KONUM UZNLK   DİZİ'nin KONUM'dan başlayan UZNLK alt dizisi
  index DİZİ KARAKTER       DİZİ içinde KARAKTER'in ilk rastlandığı konum
  length DİZİ               DİZİ'nin karakter sayısı

  b      özel blok (önbellekli) dosyası oluştur
  c, u   özel karakter (önbellekli) dosyası oluştur
  p      FIFO oluştur

--terse, aşağıdaki BİÇİM'e eşdeğerdir:
    %s
Alan genellikle boşluk ve/veya SEKME'lerin çalışmasıdır, sonra boşluk
olmayan karakterler. Alanlar karakterlerden önce atlanır.

Hafif bir 'parmak' programı; kullanıcı bilgisini yazdırır.
utmp dosyası %s olacaktır.

Yalnızca -, -i uygula. KOMUT verilmezse mevcut çevre değişkenlerini listele.

DİZİLİM'ler burada karakter dizileri olarak belirtilmiştir. Çoğu kendilerini
temsil eder. Yorumlanan sıralamalar aşağıdadır:

  \NNN           NNN sekizlik değerli karakter (1-3 sekizlik basamak)
  \\             ters eğik çizgi
  \a             bip sesi
  \b             geri sil
  \f             form beslemesi
  \n             yeni satır
  \r             satır başı
  \t             enine sekme

Herhangi bir türe z sonekini eklemek her çıktı satırının sonunda
yazdırılabilir karakterleri görüntüler.

Her bayraktan sonra, alan genişliğini belirten bir sayı;
sonrasında isteğe bağlı bir değiştirici, şunlardan biri olabilir:
E varsa alternatif yerel gösterimi kullanır,
O varsa alternatif yerel rakamları kullanır.

İFADE yok ise çıkış durumu öntanımlı olarak yanlış (false) olur.
İFADE'nin sonucunun doğru veya yanlış olmasına göre aşağıdaki
çıkış durumlarından biri belirlenir:

Özel bir durum olarak; cp, force ve backup seçenekleri verilip KAYNAK ve
HEDEF mevcut normal bir dosyanın aynı adına denk geliyorsa KAYNAK dosyanın
bir yedeğini alır.

Kabukta yorumlanması için öncelenmesi veya yorumlanmaması için tırnak içine
alınması gereken işleçlerden sakının. Karşılaştırmalar her ikisi de sayısal
ise sayısal, değilse sözlük sırasına göredir. Örgüsel eşleşmeler \(ve \)
arasındaki eşleşen dizi ile veya null ile sonuçlanır; eğer \(ve \)
kullanılmamışsa eşleşen karakter sayısıyla veya 0 ile sonuçlanır.

TÜR b, c veya u olduğu zaman hem MAJÖR hem de MİNÖR belirtilmelidir.
TÜR p olduğu zaman ne MAJÖR ne de MİNÖR belirtilmelidir. Eğer MAJÖR veya
MİNÖR 0x veya 0X ile başlarsa onaltılık olarak algılanır. Eğer 0 ile
başlarlarsa sekizlik olarak algılanır. Bütün diğer değerler onluk olarak
algılanır. TÜR, aşağıdaki değerler olabilir:

Öntanımlı olarak, rm dizinleri kaldırmaz. Listelenen her dizini, içeriği ile
birlikte kaldırmak için --recursive (-r veya -R) seçeneğini kullanın.

Öntanımlı olarak, aralıklı KAYNAK dosyaları ham bir buluşsal ile algılanır
ve eşleşen HEDEF dosyası da aralıklı yapılır. Bu, --sparse=auto tarafından
seçilen davranıştır. HEDEF dosya ne zaman yeterli uzunlukta bir sıfır bayt
dizisi içerirse bir aralıklı HEDEF oluşturmak için --sparse=always belirtin.
Aralıklı dosyaların oluşturulmasını engellemek için --sparse=never kullanın.

Birleştirme ayarları:

Denetim ayarları:
   [-]clocal     modem denetim sinyallerini devre dışı bırak
   [-]cread      girdinin alınmasına izin ver

SÜRE, isteğe bağlı sonekli bir kayan noktalı değerdir:
's', saniye için (öntanımlı); 'm', dakika için; 'h' saat için veya 'd' gün
için. 0, ilişkilendirilmiş zaman aşımını devre dışı bırakır.

Öntanımlı seçenekler:: -bt -d'\:' -fn -hn -i1 -l1 -n'rn' -s<TAB> -v1 -w6

KK, mantıksal sayfa ayırıcılarını yapmak için kullanılan iki sınırlandırıcı
karakterdir; eksik bir ikinci karakter, ':' ima eder. Bir GNU uzantısı olarak,
ikiden fazla karakter tanımlanabilir ve ayrıca boş diziyi belirtmek (-d '',)
bölüm eşleştirmesini devre dışı bırakır.

--remove (-u) belirtilmişse DOSYA'(lar)ı sil. Öntanımlı davranış bu dosyaları
kaldırmamaktır; çünkü genelde /dev/hda gibi aygıt dosyaları üzerinde çalışmak
yaygın bir durumdu ve bu dosyalar kaldırılmamalıdır.
İsteğe bağlı NASIL parametresi bir dizinin nasıl kaldırılacağını belirtir:
'unlink' => standart bağlantı kesme çağrısı kullan.
'wipe' => ayrıca ilk olarak addaki baytları belirsizleştir.
'wipesync' => ayrıca belirsizleştirilen her baytı aygıta eşzamanla.
Öntanımlı kip 'wipesync'tir; ancak pahalı bir işlem olduğunu unutmayın.

Görüntü değerleri, --block-size'daki ilk kullanılabilir BOYUT'un birimleridir
ve %s_BLOCK_SIZE, BLOCK_SIZE, BLOCKSIZE çevre değişkenleridir. Yoksa
birimler 1024 bayta öntanımlıdır (veya POSIXLY_CORRECT ayarlıysa 512)

Her bir BAYRAK sembolü şunlar olabilir:

  append    iliştir kipi (yalnızca çıkış için anlamlı; conv=notrunc önerilir)

Her KİP şu biçimdedir: '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.

Her DİZGİ şunlar olabilir:
  TAMSAYI            belirtilen satır numarasına dek onu içermeden kopyala
  /D-İFADE/[OFSET]   eşleşen bir satıra dek onu içermeden kopyala
  %D-İFADE%[OFSET]   eşleşen bir satıra atlayıp onu içermeden kopyala
  {TAMSAYI}          bir önceki dizgiyi belirtilen sayı kadar yinele
  {*}                bir önceki dizgiyi  olabildiğince çok yinele

Bir satır OFSET'i, bir pozitif tamsayı öncesi isteğe bağlı '+' veya '-'dir.

Örnekler:
  %s -12 dosya1 dosya2  Yalnızca hem dosya1'de hem dosya2'de bulunan
                          satırları yazdır.
  %s -3 dosya1 dosya2   Yalnızca dosya1'de bulunan dosya2'de bulunmayan (ve
                          bunun gibi) satırları yazdır.

Örnekler:
  %s /usr/bin/          -> "/usr"
  %s dir1/str dir2/str  -> "dir1", sonrasında "dir2" gelir
  %s stdio.h            -> "."

Örnekler:
  %s /usr/bin/sort           -> "sort"
  %s include/stdio.h .h      -> "stdio"
  %s -s .h include/stdio.h   -> "stdio"
  %s -a any/dizi1 any/dizi2  -> "dizi1", sonrasında "dizi2" gelir

Örnekler:
  %s f - g  f'nin içeriği çıktısı, sonra standart girdi, sonra g içeriği.
  %s        Standart girdiyi standart çıktıya kopyala.

Örnekler:
  %s root           /u /u'nun sahibini "root" olarak değiştir.
  %s root:staff /u  Yukarıdaki gibi; ancak grubunu da "staff" yapar.
  %s -hR root /u /  u'nun ve tüm altdosyaların sahibini "root" yapar.

Örnekler:
  %s personel /u      /u'nun grubunu "personel" olarak ayarlar.
  %s -hR personel /u  /u'nun ve tüm altdosyalarının grubunu "personel" yapar.

Örnekler:
Çığırdan beri olan saniyeleri (1970-01-01 UTC) tarihe dönüştür
  $ date --date='@2147483647'

ABD'nin batı kıyısındaki zamanı göster (zaman dilimi için tzselect(1) kullanın)
  $ TZ='America/Los_Angeles' date

ABD'nin batı kıyısı için önümüzdeki Cuma sabah 9'daki yerel zamanı göster
  $ date --date='TZ="America/Los_Angeles" 09:00 next Fri'

-h ve -L haricinde bütün DOSYA ile ilgili sınamalar sembolik bağları izler.
Parantezlerin kabukta kaçış (örn. tersbölü ile) gerektirdiğini unutmayın.
TAMSAYI yerine DİZİ uzunluğuna karşılık olarak -l DİZİ kullanılabilir.

Eğer İFADE boş veya 0 değil ise çıkış durumu 0, eğer İFADE boş veya 0 ise 1,
eğer İFADE sözdizim hatası içeriyor ise 2, bir hata var ise 3 olur.

Tüm girdi sayıları başarıyla dönüştürüldüyse çıkış durumu 0'dır. Öntanımlı
olarak, %s, ilk dönüştürme hatasında 2 numaralı çıkış durumuyla durur.
--invalid='fail' ile, her dönüştürme hatası için bir uyarı yazdırılır ve
2 numaralı çıkış durumu döndürülür. --invalid='warn' ile, her dönüştürme
hatası tanılanır; ancak çıkış durumu 0'dır. --invalid='ignore' ile, dönüştürme
hataları tanılanmaz ve çıkış durumu 0'dır.

Çıkış durumu:
 0  TAMAM ise
 1  sorunlar küçükse (örn. alt dizinlere erişilemiyorsa)
 2  sorunlar ciddiyse (örn komut satırı argümanına erişilemiyorsa).

ALANLAR, cut(1) tarzı alan erimlerini destekler:
  N     N. alan, 1'den sayılan
  N-    N. alandan satırın sonuna kadar
  N-M   N. alandan M. alana kadar (içeren)
  -M    birinciden M. alana kadar (içeren)
  -     tüm alanlar
Çoklu alanlar/erimler virgül ile ayrılabilir

ALAN_LİST, içerilecek sütunların virgülle ayrılmış bir listesidir. Geçerli
alan adları şunlardır: 'source', 'fstype', 'itotal', 'iused', 'iavail',
'ipcent', 'size', 'used', 'avail', 'pcent', 'file' ve 'target'
(bkz. bilgi sayfası).

BİÇİM, argümanları C printf'teki gibi denetler. Yorumlanan dizilimler:

  \"      çift tırnak

BİÇİM çıktıyı denetler. Sıralamaları şu şekilde değerlendir:

  %%   matbu %
  %a   kısaltılmış haftanın günü yerel ayarları (örn. Paz)

BİÇİM şunlardan biri olabilir:

  ln   sola dayalı, başında sıfır yok
  rn   sağa dayalı, başında sıfır yok
  rz   sağa dayalı, başında sıfırlar var


BİÇİM, bir kayan noktalı argüman '%f' yazdırmak için uygun olmalıdır.
İsteğe bağlı tırnak (%'f), --grouping'i etkinleştirecektir (geçerli yerel
tarafından destekleniyorsa). İsteğe bağlı genişlik değeri (%10f), çıktıyı
boşlukla dolduracaktır. İsteğe bağlı sıfır (%010f) genişliği, sayıyı sıfırla
dolduracaktır. İsteğe bağlı negatif değer (%-10f), sola dayar. İsteğe bağlı
kesinlik (%.1f), girdinin belirlediği kesinliği geçersiz kılar.

Standart girdiye bağlı olan tty satırtını yönetir. Argümansız
çalıştırıldığında iletişim hızını, satır disiplinini, stty sane ayarından
farklı ayarları gösterir. Ayarlarda KRKT yazıldığı gibi veya ^c, 0x37, 0177
veya 127 olarak gösterilmiş bir karakter olabilir. ^- veya undef değerleri
bu özel karakteri geçersiz kılar

Eğer -e geçerliyse aşağıdaki adımlar tanınır:


DOSYA - ise, standart çıktıyı kıy.

DOSYA belirtilmemişse %s kullan. %s, ortak DOSYA gibi.
ARG1, ARG2 verilmişse -m varsayılır: 'ben mi' veya 'annem sever' olağandır.

Eğer DOSYA belirtilmişse hangi dosya türleri ve uzantıları için hangi
rentlerin kullanılacağını algılamak için oku. Yoksa önceden derlenmiş
bir veritabanı kullanılır. Bu dosyaların biçimi hakkında bilgi için
'dircolors --print-database' çalıştırın.

Eğer İLK veya ARTIŞ boş bırakılırsa öntanımlı 1 olur. Boş bırakılan bir
ARTIŞ; SON, İLK'ten küçük olsa bile öntanımlı 1 olur. Sayı dizilişi, geçerli
sayının ve ARTIŞ'ın toplamı SON'dan büyük olduğunda sona erer.
Eğer İLK, SON'dan küçükse ARTIŞ genelde pozitiftir ve İLK, SON'dan küçükse
ARTIŞ genelde negatiftir. ARTIŞ, sıfır olmamalıdır; İLK, ARTIŞ ve SON'dan
hiçbiri sayı olmayan bir değer olabilir.

Kip '0' ise karşılık gelen akış arabellekten çıkarılacaktır.

Kip 'L' ise karşılık gelen akış satır ile arabelleklenecektir.
Bu seçenek, standart girdi ile geçersizdir.

Eğer birinci ve ikinci çağrı biçimleri geçerliyse ve son işlenen + ile
başlıyorsa (iki tane işlenen varsa) ikinci biçim varsayılır. Bir OFSET
işleneni -j OFSET demektir. ETİKET, birinci baytta yazdırılan sahte adrestir,
dökümleme ilerlerken artırılır. OFSET ve ETİKET için, bir 0x ve 0X öneki
onaltılık belirtir; sonekler sekizlik için . ve 512 ile çarpım için b
olabilir.

Hiç komut verilmemişse '"$SHELL" -i' çalıştır (öntanımlı: '/bin/sh -i').

Bir seçenek belirtilmezse -P varsayılır.

Standart girdi bir uçbirimse okunamayan bir dosyadan yeniden yönlendir.
Standart çıktı bir uçbirimse çıktıyı olanaklıysa 'nohup.out'a, değilse
'$HOME/nohup.out'a iliştir.
Standart hata bir uçbirimse standart çıktıya yeniden yönlendir.
Çıktıyı bir DOSYA'ya kaydetmek için '%s KOMUT > DOSYA' kullan.

Girdi ayarları:
   [-]brkint     kesimler bir yarıda kesme sinyaline neden olur
   [-]icrnl      satır başını yenisatıra çevir
   [-]ignbrk     kesim karakterlerini yok say
   [-]igncr      satır başını yok say
   [-]ignpar     denklik hatalı karakterleri yok say

ANTANIM, başlangıç ve bitiş konumu için F[.C][OPTS][,F[.C][OPTS]]'dur; F, bir
alan numarasıdır ve C alandaki karakterin konumudur; ikisinin de kökeni 1'dir
ve durma konumu satırın sonuna öntanımlıdır. -t veya -b etkin değilse alandaki
karakterler öndeki boşluktan sayılmaya başlanır. OPTS, bir veya birden çok tek
harfli sıralama seçenekleridir [bdgiMhnRrV], o anahtar için olan global
sıralama seçeneklerini geçersiz kılar. Bir anahtar verilmemişse girdi satırını
anahtar olarak kullanın. Yanlış anahtar kullanımını tanılamak için --debug
kullanın.

Yerel ayarlar:
   [-]crterase   silme karakterlerini geri sil-boşluk-geri sil olarak yankıla

Uzun seçeneklere olan gerekli argümanlar kısa seçenekler için de geçerlidir.

NOT: Eğer KOMUT, kendisinin standart akışlarının arabelleklemesini modifiye
ederse (örn. 'tee' bunu yapar) o zaman bu 'stdbuf' tarafından yapılan
değişiklikleri geçersiz kılacaktır. Ayrıca bazı süzgeçler (örn. 'dd' ve
'cat'), girdi-çıktı için akışlar kullanmazlar ve bu nedenden dolayı 'stdbuf'
ayarlarından etkilenmezler.

AYAR'dan önce isteğe bağlı - negatiflik belirtir. Bir *, POSIX olmayan ayar
belirtir. Hangi ayarın kullanılabilir olduğuna kullanılan sistem karar verir.

Çıktı ayarları:

Sahip eksikse değiştirilmez. Grup eksikse değiştirilmez; ancak bir ':'
ve takibinde sembolik bir SAHİP yazılmışsa login grubuna değiştirilir.
SAHİP ve GRUP sembolik olabileceği gibi rakamsal da olabilir.

İFADE'nin değerini standart çıktıya yazdır. Aşağıda boş satır
artan öncelik gruplarını ayırır. İFADE şunlar olabilir:
  ARG1 | ARG2       eğer ARG1 boş veya 0 ise ARG2, değil ise ARG1
  ARG1 & ARG2       eğer iki argüman da 0 veya boş ise ARG2, değil ise ARG1

DOSYA - ise standart girdi'yi oku

SİNYAL, 'HUP' gibi bir sinyal adı veya '1' gibi bir sinyal numarası veya
bir sinyal tarafından sonlandırılan bir sürecin çıkış durumu olabilir.
PID bir tamsayıdır; negatifse bir süreç grubunu tanımlar.

BOYUT ayrıca aşağıdaki değiştiren karakterlerle öneklenebilir:
'+' genişlet, '-' azalt, '<' en çok, '>' en az,
'/' katına aşağı doğru yuvarla, '%' katına yukarı doğru yuvarla.

TARZ, şunlardan biri olabilir:

  a         tüm satırları numarala
  t         yalnızca boş olmayan satırları numarala
  n         hiçbir satırı numaralama
  pBRE      yalnızca temel düzenli ifade ile eşleşen satırları numarala (BRE)

Bir %s sinyalini çalışan 'dd' sürecine göndermek onu girdi-çıktı
istatistiklerini standart çıktı'ya yazdırır ve kopyalamayı sürdürür.

Seçenekler:


Özel karakterler:

Özel ayarlar:
   N             girdi ve çıktı hızını N baud'a ayarla

--cached'in KİP argümanı: always, never veya default olabilir. 'always',
kullanılabilirse önbelleklenmiş öznitelikleri kullanır, 'never', güncel
özniteliklerle eşzamanlamaya çalışır ve 'default' yapılacak eylemi
dosya sistemine bırakır.

TIME_STYLE argümanı full-iso, long-iso, iso, locale veya +FORMAT olabilir.
FORMAT, date(1) gibi yorumlanır. Eğer FORMAT, FORMAT1<newline>FORMAT2 ise
o zaman FORMAT1 son kullanılmayan dosyalar için geçerlidir ve FORMAT2 son
kullanılan dosyalar için geçerlidir. 'posix-' ile öneklenen TIME_STYLE
yalnızca POSIX dışı yerellerde geçerli olur. Ayrıca TIME_STYLE çevre
değişkeni kullanılacak öntanımlı stili ayarlar.

NEZAMAN argümanı öntanımlı 'always'dir ve ayrıca 'auto' veya 'never' olabilir.

Yedek soneki, --suffix veya SIMPLE_BACKUP_SUFFIX ile ayarlanmadıysa '~'dir.
Sürüm denetim yöntemi --beckup seçeneği veya VERSION_CONTROL çevre değişkeni
üzerinden seçilebilir. Değerler şunlardır:

Veri, RFC 4648 içinde %s abecesi için tanımlandığı üzere kodlanmıştır.
Kod çözülürken; giriş, formal %s alfabesindeki baytların eklerinde
yenisatırlar içerebilir. Şifrelenmiş akıştaki alfabetik olmayan baytları
kurtarmaya çalışmak için --ignore-garbage kullanın.

Aşağıdaki satırlar yalnızca sağlama toplamları doğrularken yararlıdır:

Aşağıdaki seçenekler hangi sayımların yazdırılacağını her zaman aşağıdaki
sırada seçmede kullanılabilir:
  yenisatır, sözcük, karakter, bayt, en büyük satır uzunluğu.

Toplamlar, %s içinde açıklandığı gibi hesaplanır.

Bu kurulum programı seçtiğiniz hedef konumlara dosyalar (genelde derlenir)
kopyalar. Bir GNU/Linux sistemde kullanıma hazır paketler indirip kurmak
istiyorsanız yum(1) veya apt-get(1) gibi paket yöneticileri kullanmalısınız.

İlk üç biçimde izin kiplerini ve sahip/grup'u ayarlayıp KAYNAK'ı HEDEF'e veya
çoklu KAYNAK(LAR)'ı geçerli DİZİN'e kopyalayın. Dördüncü biçimde, verilen
DİZİN(LER)'in tüm bileşenlerini oluşturun.

Adı '-' ile başlayan bir dosyayı kaldırmak için, örneğin '-foo',
aşağıdaki komutlardan birini kullanın:
  %s -- -foo

  %s ./-foo

BİRİM seçenekleri:

Zaman aşımında, başka bir SİNYAL belirtilmemişse KOMUT'a TERM sinyalini
gönder. TERM sinyali, sinyali yakalamayan veya bloklamayan her süreci öldürür.
Bu sinyal yakalanamadığından, KILL sinyalini göndermek zorunlu olabilir.

-b, -c veya -f'den yalnızca birini kullanın. Her LİSTE bir erimden veya
birden çok virgülle ayrılmış erimden oluşturulmuştur. Seçili girdi okunduğu
sırayla yazılır ve yalnızca bir kez yazılır.

Program yardımı için '%s --coreutils-prog=PROGRAM_ADI --help' kullanın.

-s kullanmak, -L ve -P'yi yok sayar. Yoksa verilen son seçenek, bir HEDEF
sembolik bağ olduğunda davranışı denetler ve %s olarak değişir.

Dosya türlerini ayırt etmek için renk kullanımı hem öntanımlı olarak hem
--color=never ile devre dışı bırakılmıştır. --color=auto ile yalnızca standart
çıktı bir uçbirime bağlıysa ls renk kodları yayar. LS_COLORS çevre değişkeni
ayarları değiştirebilir. Ayarlamak için dircolors(1) komutunu kullanın.

DOSYA1 veya DOSYA2 (her ikisi değil) - ise standart girdi'yi oku

Kod çözerken; girdi, resmi abecenin baytları dışında yenisatırlar da içere-
bilir. Kodlanan akışta herhangi bir abece olmayan baytlardan kurtarmaya
çalışmak için --ignore-garbage kullanın.

DOSYA verilmemişse veya DOSYA - ise standart girdiyi oku.

Seçenek verilmemişse üç sütuna çıktı verir. Birinci sütun yalnızca DOSYA1'de
bulunan satırları, ikinci sütun yalnızca DOSYA2'de bulunan satırları,
üçüncü sütun her iki dosyada da bulunan satırları içerir.

SEÇENEK olmadan bazı yararlı kullanıcı bilgilerini yazdır.

Belirsiz bir betimleme yaz, öntanımlı olarak DOSYA'nın standart çıktı'ya
sekizlik baytlarla. Birden çok DOSYA argümanını, girdiyi oluşturmak için
onları listelenmiş sırada ard arda ekle.
        ???      --additional-suffix=SONEK  dosya adlarına ek olarak SONEK iliştir
      --attributes-only        dosya verisini kopyalama, yalnızca nitelikleri
      --author               -l ile her dosyanın yazarını yazdır
      --color[=NEZAMAN]      NEZAMAN çıktısını renklendir; ek bilgi aşağıda
      --copy-contents          özyineli ise özel dosyaların içeriğini kopyala
      --endian={big|little}   girdi baytlarını belirtilen sıraya göre
                                birbirleriyle değiştir
      --exclude=DİZGİ      DİZGİ ile eşleşen dosyaları hariç tut
      --filter=KOMUT      kabuk KOMUT'una yaz; dosya adı $DOSYA
      --first-only yalnızca öncü boşlukları dönüştür (-a'yı geçersiz kılar)
      --hex-suffixes[=NEREDEN]  -x ile aynı; ancak başlangıç değerini belirle
      --ignore-missing  eksik dosyalar için çıkma veya durum bildirme
      --inodes          blok kullanımı yerine dosya indeksi kullanım
                          bilgisini listele
      --lookup      makine adlarını DNS üzerinden IP ile eşleştirmeye çalış
      --message    -T ile aynı
      --no-preserve-root  '/'e özel olarak davranma
      --no-preserve-root '/' yoluna özel davranma (öntanımlı)
      --no-preserve=ÖZNT_LİSTE belirtilen özellikleri koruma
      --no-sync         (öntanımlı) kullanım bilgisini almadan önce
                          eşzamanlama yapma
      --numeric-suffixes[=NRDN]  -d ile aynı; ancak başlangıç değerini belirle
      --output-error[=KİP]  yazma hatasındaki davranışı ayarla, bkz. KİP
      --parallel=N          dönüşümlü çalışan sıralamaların sayısını N yap
      --parents                DİZİN altındaki tam kaynak dosya adını kullan
      --portability   tüm POSIX sistemleri denetle (-p -P'ye eşdeğer)
      --preserve-context  SELinux güvenlik bağlamını koru
      --preserve-root    '/' üzerinde özyineli işlemeyi başarısız kıl
      --print-ls-colors       tümüyle kaçırılmış komutları ekrana çıktıla
      --quiet           her düzgünce doğrulanan dosya için TAMAM yazdırma
      --random-source=DOSYA DOSYA'dan rastgele bayt'lar al
      --reflink[=NE_ZAMAN]     klon/KY kopyalarını denetle, aşağı bakın
      --relative-base=DIR      DİZİN altında yollar olmadıkça mutlak yolları
                                 yazdır
      --relative-to=DIR        DİZİN'e göreceli çözülmüş yolu yazdır
      --remove[=NASIL]  -u gibi; ancak NASIL silineceği denetimini verir
      --retry              dosya erişilemiyorsa açmayı denemeyi sürdür
      --si              -h gibi; ancak 1024 yerine 1000'in üssünü kullan
      --si                   aynısı; ancak 1024 yerine 1000'in katını kullan
      --sparse=NEZAMAN         aralıklı dosyalar oluşturulmasını denetle,
                                 ek bilgi için aşağı bakın
      --status          bir şey çıktılama, durum kodu başarıyı gösterir
      --strict          düzgün biçimlendirilmemiş sağlama toplamı satırları
                          için sıfır olmayan kod ile çık
      --strip-program=PROGRAM  programı, ikilileri soymak için kullan
      --sync            kullanım bilgisi almadan önce eşzamanlamayı işle
      --traditional           yukarıdaki üçüncü biçimde argümanlar kabul et
      --writable   -T ile aynı
      --zero                 çıktı satırlarını yenisatır yerine NUL'la bitir
   [-]cstopb     karakter başına iki durdurma biti kullan ('-' ile bir)
   [-]hup        son süreç tty'yi kapattığında bir bitiş sinyali gönder
   [-]hupcl      [-]hup ile aynı
   [-]parenb     çıktıda denklik biti oluştur ve girdide denklik biti bekle
   [-]parodd     tek denklik ayarla (veya '-' ile çift denklik)
   [-]echo       girdi karakterlerini yankıla
   [-]echoe      [-]crterase ile aynı
   [-]echok      bir öldür karakterinden sonra bir yenisatır yankıla
   [-]echonl     başka karakterler yankılanmasa bile yenisatırı yankıla
   [-]icanon     özel karakterleri etkinleştir: %s
   [-]iexten     POSIX olmayan özel karakterleri etkinleştir
   [-]inlcr      yenisatırı satır başına çevir
   [-]inpck      girdi denkliği denetimini etkinleştir
   [-]istrip     girdi karakterlerinin yüksek bitini (8.) temizle
   [-]isig       yarıda kes, çık, askıya al özel karakterlerini etkinleştir
   [-]noflsh     yarıda kes/çık özel karakterlerinden sonra floşlamayı kapat
   [-]ixoff      başlat/bitir karakterleri gönderimini etkinleştir
   [-]ixon       XON/XOFF akış denetimini etkinleştir
   [-]parmrk     denklik hatalarıni imle (bir 255-0-karakter dizilişiyle)
   [-]tandem     [-]ixoff ile aynı
   [-]opost      çıktıyı ek işleme tabi tut
   cbreak        -icanon ile aynı
   -cbreak       icanon ile aynı
   cooked        brkint ignpar istrip icrnl ixon opost isig icanon, eof ve
                   eol karakterlerinin öntanımlı değerleriyle aynı
   -cooked       ham ile aynı raw
   crt           %s ile aynı
   csN           karakter boyutunu N bit olarak ayarla; N, [5..8]
   dec           %s intr ^c erase 0177 ile aynı
                   ^u öldür
   ek            karakterleri öntanımlı değerlerine sil ve öldür
   evenp         parenb -parodd cs7 ile aynı
   -evenp        -parenb cs8 ile aynı
   eof KAR       KAR, bir dosya sonu gönderir (girdiyi sonlandırır)
   eol KAR       KAR, satırı sonlandırır
   erase KAR     KAR, son girilen karakteri siler
   intr KAR      KAR, bir yarıda kesme sinyalı gönderir
   kill KAR      KAR, geçerli satırı siler
   ispeed N      girdi hızını N'e ayarla
   litout        -parenb -istrip -opost cs8 ile aynı
   -litout       parenb istrip opost cs7 ile aynı
   min N         -icanon ile, tam bir okuma için en az N karakter ayarla
   ospeed N      çıktı hızını N olarak ayarla
   nl            %s ile aynı
   -nl           %s ile aynı
  oddp          parenb parodd cs7 ile aynı
  -oddp         -parenb cs8 ile aynı
  [-]parity     [-]evenp ile aynı
  pass8         -parenb -istrip cs8 ile aynı
  -pass8        parenb istrip cs7 ile aynı
   quit KAR      KAR, bir çıkış sinyali gönderir
   raw           -ignbrk -brkint -ignpar -parmrk -inpck -istrip
                   -inlcr -igncr -icrnl -ixon -ixoff -icanon -opost
                   -isig%s min 1 time 0 ile aynı
   -raw          pişmiş ile aynı
   sane          cread -ignbrk brkint -inlcr -igncr icrnl icanon
                   iexten echo echoe echok -echonl -noflsh ile aynı
                 %s
                 %s
                 %s,
                 tüm özel karakterler öntanımle değerlerine
   speed         uçbirim hızını yazdır
   time N        -icanon ile, okuma zaman aşımını saniyenin N'de birine ayarla
   start KAR     KAR, çıktıyı durdurduktan sonra yeniden başlatır
   stop KAR      KAR, çıktıyı durdurur
   susp KAR      KAR, bir uçbirim dur sinyali gönderir
  %A   tam hafta içi gün adı yerel ayarı (örn. Pazar)
  %b   kısaltılmış ay adı yerel ayarı (örn. Oca)
  %B   tam ay adı yerel ayarı (örn. Ocak)
  %c   tarih ve zaman yerel ayarı (örn. Cum Mar 3 23:05:25 2005)
  %S   saniye (00..60)
  %t   sekme
  %T   zaman; %H:%M:%S ile aynı
  %u   haftanın günü (1..7); 1 Pazartesi
  %U   Pazar haftanın ilk günü olmak üzere, hafta numarası (00..53)
  %V   Pazartesi haftanın ilk günü olmak üzere, ISO hafta numarası (01..53)
  %w   Haftanın günü (0..6); Pazar 0
  %W   Pazartesi haftanın ilk günü olmak üzere, hafta numarası (00..53)
  %d   onluk sistemde aygıt numarası (st_dev)
  %D   onaltılık sistemde aygıt numarası (st_dev)
  %Hd  onluk sistemde majör aygıt numarası
  %Ld  onluk sistemde minör aygıt numarası
  %f   onaltılık sistemde ham kip
  %F   dosya türü
  %g   sahibin grup kimliği
  %G   sahibin grup adı
  %h   sabit bağların sayısı
  %i   indeks numarası
  %m   bağlama noktası
  %n   dosya adı
  %N   sembolik bağsa tırnak içindeki başvuru kaldırması ile dosya adı
  %o   en iyi girdi-çıktı aktarım boyut ipucu
  %s   bayt türünden toplam boyut
  %r   onluk sistemde aygıt türü (st_rdev)
  %R   onaltılık sistemde aygıt türü (st_rdev)
  %Hr  karakter/blok aygıt özel dosyaları için onluk majör aygıt türü
  %Lr  karakter/blok aygıt özel dosyaları için onluk minör aygıt türü
  %t   karakter/blok aygıt özel dosyaları için onaltılık majör aygıt türü
  %T   karakter/blok aygıt özel dosyaları için onaltılık minör aygıt türü
  %h   %b ile aynı
  %H   saat (00..23)
  %I   saat (01..12)
  %j   yılın günü (001..366)
  %i   onaltılık sistemde dosya sistemi kimliği
  %l   dosya adlarının en büyük uzunluğu
  %n   dosya adı
  %s   blok boyutu (daha tez aktarımlar için)
  %S   temel blok bayutu (blok sayımı için)
  %t   onaltılık sistemde dosya sistemi türü
  %T   insan okuyabilir biçimde dosya sistemi türü
  %k   saat, boşluk bırakılmış ( 0..23); %_H ile aynı
  %l   saat, boşluk bırakılmış ( 1..12); %_I ile aynı
  %m   ay (01..12)
  %M   dakika (00..59)
  %n   bir yenisatır  %N   nano saniye (000000000..999999999)
  %N   nano saniyeler (000000000..999999999)
  %p   AM ve PM'in yerel ayar dengi, yoksa boş
  %P   %p gibi; ancak küçük harf ile
  %q   yılın çeyreği (1..4)
  %r   12 saatlik saat biçiminin yerel ayar dengi (örn, 11:11:04 PM)
  %R   24 saatlik saat ve dakika; %H:%M ile aynı
  %s   çığırdan bu yana geçen saniye (1970-01-01 00:00 UTC)
  %u   sahibin kullanıcı kimliği
  %U   sahibin kullanıcı adı
  %w   dosya doğumu tarihi, insan okuyabilir; bilinemiyorsa -
  %W   dosya doğumu tarihi, çığırdan beri geçen saniye; bilinemiyorsa 0
  %x   son erişim tarihi, insan okuyabilir
  %X   son erişim tarihi, çığırdan beri geçen saniye
  %y   son veri değişiklik zamanı, insan okuyabilir
  %Y   son veri değişiklik zamanı, çığırdan beri geçen saniye
  %z   son durum değişiklik zamanı, insan okuyabilir
  %Z   son durum değişiklik zamanı, çığırdan beri geçen saniye

  %z   +ssdd nümerik zaman dilimi (e.g., -0400)
  %:z  +ss:dd nümerik zaman dilimi (e.g., -04:00)
  %::z  +ss:dd:snsn nümerik zaman dilimi (e.g., -04:00:00)
  %:::z  gereken kesinlik bilgisiyle nümerik zaman dilimi (e.g., -04, +05:30)
  %Z   abecesel zaman dilimi kısaltması (örn. EDT)

Öntanımlı olarak, date rakam alanlarını gerektiğinde sıfırlarla doldurur.
  + JETON                   JETON'u dizi olarak yorumla, 'match gibi bir
                              anahtar sözcük veya '/' gibi işleç olsa bile

  ( İFADE )                 İFADE'nin değeri
  - +FORMAT (örn. +%H:%M), bir 'date' tarzı biçim için
  -1                         satır başına bir dosya listele
  -A, --almost-all           ima edilen . ve .. ögelerini listeleme
  -A, --auto-reference           kendiliğinden oluşmuş başvuruları çıktıla
  -A, --show-all           -vET ile aynı
  -C                         girdileri sütunlara göre listele
  -C, --line-bytes=BOYUT  çıktı dosyası başına en fazla BOYUT bayt kayıt koy
  -D                    tüm yinelenmiş satırları yazdır
  -D, --dired                Emacs dired kipi için tasarlanmış çıktı oluştur
  -F                       --follow=name --retry ile aynı
  -F, --classify[=NEZAMAN]   NEZAMAN girdilerine gösterge iliştir (*/=>@|)
  -F, --flag-truncation=DİZİ     bayraklı satır kısaltımı için DİZİ kullan,
                                   öntanımlı: '/'
  -G DOSYA    DOSYA vardır ve etkin grup kimliğine aittir
  -G, --groups   tüm grup kimliklerini yazdır
  -G, --traditional              daha çok System V 'ptx' gibi davran
  -H                    --dereference-args (-D) ile eşdeğer
  -H                           KAYNAK'taki komut satırı sembolik bağlarını izle
  -H, --heading     sütun üstbilgi satırı yazdırır
  -H, --si              boyutları 1000'in üsü olarak yazdır (örn. 1,1G)
  -I, --ignore=DİZGİ         kabuk DİZGİ'si ile eşleşen ima edilen girdileri
                               listeleme
  -L DOSYA    DOSYA vardır ve bir sembolik bağdır (-h ile aynı)
  -L, --dereference            her zaman KAYNAK'taki sembolik bağları izle
  -L, --dereference     tüm sembolik bağların başvurularını kaldır
  -L, --dereference     bağları izle
  -L, --logical               sembolik bağ olan HEDEF başvurularını kaldır
  -L, --logical   PWD'yi sembolik bağlar içeriyor olsa bile çevreden kullan
  -L, --logical                '..' bileşenlerini sembolik bağlar öncesinde çöz
  -L, --max-line-length  en büyük görüntüleme genişliğini yazdır
  -M, --macro-name=DİZİ          'xx' yerine kullanılacak makro adı
  -M, --month-sort            (bilinmeyen) < 'JAN' < ... < 'DEC' karşılaştır
  -N DOSYA    DOSYA vardır ve son okumadan bu yana değiştirilmiştir
  -N, --literal              girdi adlarını tırnaklamadan yazdır
  -N, --read-bytes=BAYT       dökümlemeyi BAYT girdi baytına sınırla
  -O DOSYA    DOSYA vardır ve etkin kullanıcı kimliğine aittir
  -O, --format=roff              çıktıyı roff dizinleri olarak oluştur
  -P, --no-dereference  hiçbir sembolik bağı izleme (öntanımlı)
  -P, --no-dereference         KAYNAK'taki sembolik bağları asla izleme
  -P, --physical              sabit bağları doğrudan sembolik bağlara yap
  -P, --physical               sembolik bağı görüldüğünde çözümle (öntanımlı)
  -P, --portability     POSIX çıktı biçimlerini kullan
  -R, --recursive            alt dizinleri özyineli olarak listele
  -R, --right-side-refs          başvuruları sağa koy, -w içinde sayma
  -S DOSYA    DOSYA vardır ve bir sokettir
  -S, --buffer-size=BOYUT    ana bellek arabelleği için BOYUT kullan
  -S, --sentence-regexp=İFADE    satır veya tümce sonu için
  -S, --separate-dirs   alt dizinlerin boyutunu içermeyen dizinler için
  -T, --format=tex               çıktıyı TeX yönergesi olarak oluştur
  -T, --no-target-directory   BAĞ_ADI'na hep normal bir dosya gibi davran
  -T, --print-type      dosya sistemi türünü yazdır
  -T, --show-tabs          TAB karakterlerini ^I olarak gösterir
  -T, --tabsize=SÜTUNLAR     8 yerine her SÜTUNLAR'da sekme durağı varsay
  -T, -w, --mesg   kullanıcının ileti durumunu +, - veya ? olarak göster
  -W, --word-regexp=iFADE        her anahtar sözcüğü eşlemek için İFADE kullan
  -X                         girdi uzantısına göre abecesel sırala
  -X, --exclude-from=DOSYA DOSYA'daki bir dizgiyle eşleşen dosyaları hariç tut
  -Z                   SELinux güvenlik bağlamını öntanımlı türe ayarla
  -Z, --context              her dosyanın güvenlik bağlamını yazdır
  -Z, --context  sürecin yalnızca güvenlik bağlamını yazdır
  -a                     yalnızca erişim zamanını değiştir
  -a             yok say, diğer sürümlerle uyumluluk için
  -a, --all        yalnızca ilk boşluklar yerine tüm boşlukları dönüştür
  -a, --all                  . ile başlayan girdileri yok sayma
  -a, --all             yalancı, yineli, erişilemeyen dosya sistemlerini içer
  -a, --all             yalnızca dizinler değil dosya sayımlarını da yaz
  -a, --all          tüm geçerli ayarları insan okuyabilir biçimde yazdır
  -a, --all         -b -d --login -p -r -t -T -u ile aynı
  -a, --append              DOSYA'ların üzerine yazmaz sonuna iliştirir
  -a, --archive                -dR --preserve=all ile aynı
  -a, --multiple       +1 argüman destekle ve her birine AD gibi davran
  -a, --suffix-length=N   N uzunluklu sonekler oluştur (öntanımlı %d)
  -b DOSYA    DOSYA vardır ve blok özeldir
  -b, --before             ayırıcıyı satırdan sonra değil, satırdan önce koy
  -b, --body-numbering=TARZ       gövde satırları numaralamada TARZ kullan
  -b, --boot        son sistem önyükleme zamanı
  -b, --break-file=DOSYA         bu DOSYA'daki karakterleri sözcük kes
  -b, --bytes         sütunlar yerine baytları say
  -b, --bytes           '--apparent-size --block-size=1'a eşit
  -b, --bytes=LİSTE       yalnızca bu baytları seç
  -b, --bytes=BOYUT       çıktı dosyası başına BOYUT bayt koy
  -b, --escape               grafik olmayan karakterler için C tarzı
                               kaçışlar yazdır
  -b, --number-nonblank    boş olmayan çıktı satırlarını numarala,
                             -n'yi geçersiz kıl
  -b, --suffix-format=BİÇİM  %02d yerine sprintf BİÇİM'ini kullan
  -c                  (yok sayılır)
  -c DOSYA    DOSYA vardır ve karakter özeldir
  -c, --bytes            bayt sayımını yazdır
  -c, --changes          verbose gibi; ancak bir değişiklik olduğunda bildirir
  -c, --characters=LİSTE  yalnızca bu karakterleri seç
  -c, --compute      değişiklik öncesi süreç geçiş bağlamını hesapla
  -c, --count           satırları oluş sayısına göre önekle
  -c, --crown-margin        paragrafın ilk iki satırını koru
  -c, --no-create        bir dosya oluşturma
  -c, --no-create        hiçbir dosya oluşturma
  -c, --total           genel bir toplam üretir
  -d                           --no-dereference --preserve=links ile aynı
  -d                      0 ile başlayan nümerik sonekler kullan, abc değil
  -d DOSYA    DOSYA vardır ve bir dizindir
  -d, --data             yalnızca dosya verisini eşzamanla, üstveriye gerek yok
  -d, --date=DİZİ        DİZİ'yi ayrıştır ve geçerli zaman yerine kullan
  -d, --dead        ölü işlemleri yazdırır
  -d, --decode          veri kodu çöz
  -d, --delete            DİZİLİM1'den karakter sil, çevirme
  -d, --delimiter=AYRAÇ   alan ayracı olarak TAB yerine AYRAÇ'ı kullanır
  -d, --dictionary-order      yalnızca boşlukları ve alfanumerik karakterleri
                                değerlendir
  -d, --dir             boş dizinleri kaldır
  -d, --directory     bir dizin oluştur, dosya değil
  -d, --directory            dizinlerin kendilerini listele, içeriğini değil
  -d, --repeated        yinelenmiş satırları yazdır, her grup için bir tane
  -d, --section-delimiter=KK      mantıksal sayfa ayırıcılarında KK kullan
  -e                       -vE ile aynı
  -e DOSYA    DOSYA vardır
  -e, --canonicalize-existing  yolun tüm bileşenleri var olmalıdır
  -e, --echo                her ARG'ye bir girdi satırı gibi davran
  -e, --elide-empty-files  '-n' ile boş çıktı dosyaları oluşturma
  -e, --error=KİP    standart hata akış önbelleklemesi ayarını değiştir
  -f                     (yok sayılır)
  -f DOSYA    DOSYA vardır ve normal bir dosyadır
  -f, --file-system     dosya durumu yerine dosya sistemi durumunu görüntüle
  -f, --file-system      dosyayı içeren dosya sistemlerini eşzamanla
  -f, --footer-numbering=TARZ     altbilgi satırı numaralamada TARZ kullan
  -f, --force    eğer gerekirse yazmaya onay vermek için izinleri değiştir
  -f, --force                  üzerine yazmadan önce sorgulama
  -f, --force           var olmayan dosyaları/argümanları yok say, asla sorma
  -f, --force                 önceden var olan hedef dosyaları siler
  -f, --format=BİÇİM       printf tarzı kayan noktalı değer BİÇİM'i kullan
  -f, --ignore-case           küçük harfleri büyük harfe dönüştür
  -f, --ignore-case              sıralama için küçüğü büyük harfe dönüştür
  -f, --prefix=ÖNEK          'xx' yerine ÖNEK kullan
  -g DOSYA    DOSYA vardır ve grup-kimliği belirlidir
  -g, --gap-size=SAYI            çıktı alanları arasında sütun boşluk boyutu
  -g, --general-numeric-sort  genel nümerik değerlere göre karşılaştır
  -g, --goal=GENİŞLİK       hedef genişliği (öntanımlı, genişliğin %%93'ü)
  -g, --group    yalnızca etkili grup kimliğini yazdır
  -g, --group=GRUP    geçerli grup sürecinin yerine grup sahipliğini ayarla  -m, --mode=KİP      izin kipini rwxr-xr-x yerine KİP olarak atar (chmod
                        gibi)
  -g, --save         tüm geçerli ayarları stty okuyabilir biçimde yazdır
  -h DOSYA    DOSYA vardır ve sembolik bağdır (-L ile aynı)
  -h, --header-numbering=TARZ     üstbilgi satırı numaralamada TARZ kullan
  -h, --human-readable  boyutları okunabilir biçimde yazdır (örn. 1K 234M 2G)
  -h, --human-readable  boyutları 1024'ün üsü olarak yazdır (örn. 1023M)
  -h, --human-readable       -l ve -s ile boyutları 1K 234M 2G gibi yazdır
  -h, --no-dereference   başvurulan bir dosya yerine sembolik bağları etkile
  -i                    her kaldırma öncesi sor
  -i, --hardware-platform  donanım platformunu yazdır (taşınamaz)
  -i, --ignore-case     karşılaştırırken BÜYÜK/küçük harf ayrımı yapma
  -i, --ignore-case      alanları karşılaştırırken harf biçimi ayrımlarını
                           yok say
  -i, --ignore-environment  boş bir çevreyle başla
  -i, --ignore-file=DOSYA        yok sayılacak sözcük listesini DOSYA'dan oku
  -i, --ignore-garbage  kod çözerken abece dışı karakterleri yok say
  -i, --ignore-interrupts   yarıda kesme sinyallerini yok sayar
  -i, --ignore-nonprinting    yalnızca yazdırılabilir karakterleri değerlendir
  -i, --initial      boş olmayanlardan sonraki sekmeleri dönüştürme
  -i, --inode                her dosyanın indeks numarasını yazdır
  -i, --inodes          blok kullanımı yerine dosya indeksi bilgilerini göster
  -i, --input-range=DÜ-YU   her DÜ-YÜ arası numaraya girdi satırı gibi davran
  -i, --input=KİP    standart girdi akışı önbelleklemesi ayarını değiştir
  -i, --interactive            üzerine yazmadan önce sorgula
  -i, --interactive           hedeflerin kaldırılıp kaldırılmayacağını sor
  -i, --line-increment=NUMARA     satır numarasını her satırda artır
  -j, --skip-bytes=BAYT       BAYT girdi baytlarını atla
  -k DOSYA    DOSYA vardır ve kalıcı biti ayarlıdır
  -k, --keep-files           hatalarda çıktı dosyalarını kaldırma
  -k, --key=ANTANIM         bir anahtar ile sırala; ANTANIM konum ve tür verir
  -l, --count-links     sabit bağlıysa boyutları çok kez say
  -l, --join-blank-lines=NUMARA   NUMARA boş satırı tek satır olarak grupla
  -l, --lines            yenisatır sayımını yazdır
  -l, --lines=SAYI        çıkış dosyası başına SAYI satır/kayıt koy
  -l, --link                   kopyalama yerine dosyaları sabit bağla
  -l, --list       sinyal adlarını listele veya sinyal adları ile sinyal
                     numaraları arasında dönüşüm yap
  -l, --local           listelemeyi yerel dosya sistemleri ile sınırla
  -l, --login       sistem oturum açma süreçlerini yazdır
  -l, --range=ERİM      ERİM'i hedef güvenlik bağlamında ayarla
  -l, --range=ERİM   düzey erimi
  -m                     yalnızca değiştirilme zamanını değiştir
  -m                    --block-size=1M gibi
  -m, --canonicalize-missing   hiçbir yol bileşeninin var olma veya dizinde
                                 olma zorunluluğu yoktur
  -m, --chars            karakter sayımını yazdır
  -m, --machine            donanım adını yazdır
  -m, --merge               halihazırda sıralanmış dosyaları birleştir;
                              sıralama yapma
  -m, --mode=KİP    dosya kipini ayarla (chmod gibi), a=rwx - umask değil
  -o, --owner=SAHİP   sahibi ayarla (yalnızca süper kullanıcı)
  -n                        (yok sayılır)
  -n, --digits=BASAMAK       2 yerine belirli bir basamak kullan
  -n, --head-count=SAYIM    en çok SAYIM kadar satır çıktıla
  -n, --iterations=N  var olan (%d) yerine N kere üzerine yaz
  -n, --no-newline              sondaki sınırlandırıcıyı çıktılama
  -n, --nodename           ana ağ bilgisayarının adını yaz
  -n, --number             tüm çıktı satırlarını numarala
  -n, --number-format=BİÇİM       satır numaralarını BİÇİM'e göre ekle
  -n, --number=PARÇALAR   çıktı dosyaları PARÇALAR'ı oluştur; aşağı bakın
  -n, --numeric-uid-gid      -l gibi; ancak rakamsal kullanıcı ve grup
                               kimliklerini listele
  -o                         -l gibi; ancak grup bilgisini yazdırma
  -o, --io-blocks        BOYUT'a bayt yerine GÇ blok sayısı gibi davran
  -o, --only-file=DOSYA          okunacak sözcük listesini DOSYA'dan oku
  -o, --operating-system   işletim sistemini yazdır
  -o, --output=DOSYA        standart çıktı yerine sonucu DOSYA'ya yaz
  -o, --output=DOSYA        sonuçları standart çıktı yerine DOSYA'ya yaz
  -o, --output=KİP   standart çıktı akışı önbelleklemesi ayarını değiştir
  -p                           --preserve=mode,ownership,timestamps aynıdır
  -p DOSYA    DOSYA vardır ve bir adlı veriyoludur
  -p, --no-renumber               her bölüm için satır numaralarını sıfırlama
  -p, --print-database        öntanımlıları çıktıla
  -p, --process     init tarafından başlatılan etkin süreçleri listele
  -p, --processor          işlemci türünü yazdır (taşınamaz)
  -q, --count       tüm çalışan kullanıcı adlarını ve sayısını göster
  -q, --quiet
  -q, --quiet         dosya/dizin oluşturma hatası tanılarını sustur
  -q, --quiet                  çoğu hata iletisini sustur
  -r              BSD toplam algoritmasını kullan (öntanımlı), 1K blok kullan
  -r DOSYA    DOSYA vardır ve kullanıcı onu okuyabilir
  -r, --kernel-release     çekirdek sürümünü yaz
  -r, --reference=DOSYA  geçerli zaman yerine bu dosyanın zamanlarını kullan
  -r, --reference=BDOSYA BDOSYA üzerindeki taban boyut
 -r, --references                her satırın ilk alanı bir başvurudur
 -t, --typeset-mode                [henüz çalışmıyor]
 -w, --width=SAYI                başvuru hariç sütun türünden çıktı genişliği
  -r, --regex              ayırıcıyı düzenli ifade olarak kabul et
  -r, --relative              -s ile, bağları bağ konumuna göreli oluştur
  -r, --repeat              çıktı satırları yinelenebilir
  -r, --reverse              sıralarken tersine çevir
  -r, --reverse               karşılaştırma sonuçlarını ters çevir
  -r, --role=ROL        ROL'ü hedef güvenlik bağlamında ayarla
  -r, --role=ROL     rol
  -r, --runlevel    şimdiki açılış düzeyini göster
  -s DOSYA    DOSYA vardır ve boyutu sıfırdan büyüktür
  -s, --kernel-name        çekirdek adını yaz
  -s, --number-separator=DİZİ     (olası) satır numarası sonrası DİZİ ekle
  -s, --only-delimited    içinde sınırlandırıcı olmayan alanları yazdırma
  -s, --separator=DİZİ     sayıları ayırmak için DİZİ kullan
  -s, --seperator=DİZİ     satırları `\n' yerine DİZİ ile ayır
  -s, --set=DİZİ             DİZİ tarafından verilen zamanı ayarla
  -s, --short       yalnız ad, satır ve zamanı göster (öntanımlı)
  -s, --size                 bloklardaki her dosyanın ayrılmış boyutunu yaz
  -s, --size=N   bunu çok bayta kıy (K, M, G gibi erişilmiş sonekler)
  -s, --size=BOYUT       dosya boyutunu BOYUT'a ayarla veya değiştir
  -s, --skip-chars=N    ilk N karakteri karşılaştırmadan kaçın
  -s, --split-only          uzun satırları böl; ancak kısaları birleştirme
  -s, --squeeze-blank      arka arkaya gelen boş satırları bire indirge
  -s, --stable              son çare sıralamasını devre dışı bırakarak
                              sıralamayı kararlılaştır
  -s, --strip         sembol tablolarını soy
  -s, --strip, --no-symlinks   sembolik bağları genişletme
  -s, --suffix=SONEK   bir arddaki SONEK'i kaldır; -a ile eşdeğer
  -s, --summarize       her bir argüman için yalnızca bir toplam görüntüle
  -s, --symbolic              sabit bağlar yerine sembolik bağlar oluştur
  -s, --symbolic-link          kopyalama yerine sembolik bağ oluştur
  -s, --sysv      Sistem V toplam algoritmasını kullan, 512 bayt blok kullan
  -t                         zamana göre sırala, en yeni en önce; bkz. --time
  -t                       -vT ile aynı
  -t [DB]     dosya belirteci DB bir uçbirimde açıktır
  -t, --field-separator=AYI boş olmayandan boşa geçişi yerine AYI kullan
  -t, --format=TÜR            biçimlerin çıktı biçimini seç
  -t, --table      sinyal bilgileri tablosu göster
  -t, --tabs=N     sekmeleri 8 yerine N karakter aralığında yap (-a açar)
  -t, --tabs=N       sekmeleri 8 yerine N karakter olarak ayarla
  -t, --tagged-paragraph    ilk satırın girintilemesi ikinciden ayrımlı
  -t, --target-directory=DİZİN tüm KAYNAK argümanlarını DİZİN'e taşı
  -t, --terse           bilgiyi özet biçimde yazdır
  -t, --time        son sistem saat değişikliğini göster
  -t, --truncate-set1     ilkin, DİZİLİM1'i, DİZİLİM2'nin uzunluğuna buda
  -t, --type=TÜR        dosya sistemleri listelemeyi TÜR'e sınırla
  -t, --type=TÜR        TÜR'ü hedef güvenlik bağlamında ayarla
  -t, --type=TÜR     tür (üst öge ile aynı rol için)
  -u             üzerine yazdıktan sonra dosyayı ve ona ayrılan alanı kaldır
  -u                         (yok sayılır)
  -u DOSYA    DOSYA vardır ve kullanıcı-kimlik belirleme biti ayarlıdır
  -u, --dry-run       bir şey oluşturma; yalnızca bir ad yazdır (güvensiz)
  -u, --unbuffered        '-n r/...' ile anında girdiyi çıktıya kopyala
  -u, --uniform-spacing     sözcük arasında bir boşluk, tümceden sonra iki
  -u, --unique          yalnızca benzersiz satırları yazdır
  -u, --unset=NAME          çevreden değişkeni kaldır
  -u, --user     yalnızca etkili kullanıcı kimliğini yazdır
  -u, --user=KULLANICI  KULLANICI'yi hedef güvenlik bağlamında ayarla
  -u, --user=KULLANICI  kullanıcı kimliği
  -v                    (yok sayıldı)
  -v, --kernel-version     çekirdek sürümünü yazdır
  -v, --output-duplicates     satır susturmayı imlemek için * kullanma
  -v, --show-nonprinting   LFD ve TAB hariç ^ ve  M- nitelemesini kullanır
  -v, --starting-line-number=NUMARA  her bölümdeki ilk satır numarası
  -v, --verbose            dosya adlarını veren üstbilgiyi hep çıktıla
  -v, --verbose            dosya adlarını gösteren üstveriyi hep yazdır
  -v, --verbose          işlenen her dosya için çıktı verir
  -v, --verbose     her oluşturulan dizin için bir ileti yazdır
  -v, --verbose               her bağlantılanan dosyanın adını yazdır
  -w DOSYA    DOSYA vardır ve kullanıcı ona yazabilir
  -w, --equal-width        başta sıfırlarla genişliği eşitle
  -w, --number-width=NUMARA       satır numaraları için NUMARA sütün kullan
  -w, --width=SÜTUNLAR       çıktı genişliğini SÜTUNLAR'a ayarla; 0, limit
                               yok demektir
  -w, --width=GENİŞLİK      en büyük satır genişliği (öntanımlı 75 sütun)
  -w, --width=N       80 yerine N sütun kullan
  -w, --words            sözcük sayımını yazdır
  -x                         girdileri sütunlar yerine satırlarla listele
  -x                      0 ile başlayan onaltılık sonekler kullan, abc değil
  -x DOSYA    DOSYA vardır ve kullanıcının çalıştırma/arama izni vardır
  -x, --exclude-type=TÜR  dosya sistemleri listelemeyi TÜR hariç tut
  -x, --one-file-system    farklı dosya sistemlerindeki dizinleri atla
  -x, --one-file-system        bu dosya sisteminde kalır
  -z, --zero     kıymayı gizlemek için sıfırlarla son bir kez daha üzerine yaz
  -z, --zero                   çıktı satırlarını yenisatır yerine NUL'la
                                 sonlandır
  -z, --zero-terminated     satır sınırlandırıcısı NUL'dur, yenisatır değil
  BAĞLAM             tam güvenlik bağlamı
  DOSYA1 -ef DOSYA2   DOSYA1 ve DOSYA2 aynı aygıtta ve aynı uzunluktadır
  DOSYA1 -nt DOSYA2   DOSYA1 DOSYA2'den daha yenidir
  DOSYA1 -ot DOSYA2   DOSYA1 DOSYA2'den daha eskidir
 Dosya: "%n"
Kimlik: %-8i Ad uzunluğu: %-7l Tür: %T
Blok boyutu: %-10s Temel blok boyutu: %S
Bloklar: Toplam: %-10b Boş: %-10f Kullanılabilir: %a
İndeksler: Toplam: %-10c Boş: %d
 Dosya: %N
 Boyut: %-10s	Bloklar: %-10b Kimlik bloku: %-6o %F
  TAMSAYI1 -eq TAMSAYI2   TAMSAYI1 TAMSAYI2'ye eşittir
  TAMSAYI1 -ge TAMSAYI2   TAMSAYI1 TAMSAYI2'ye eşit veya büyüktür
  TAMSAYI1 -gt TAMSAYI2   TAMSAYI1 TAMSAYI2'den büyüktür
  TAMSAYI1 -le TAMSAYI2   TAMSAYI1 TAMSAYI2'ye eşit veya küçüktür
  TAMSAYI1 -lt TAMSAYI2   TAMSAYI1 TAMSAYI2'den küçüktür
  TAMSAYI1 -ne TAMSAYI2   TAMSAYI1 TAMSAYI2'den farklıdır
  Yarıda kesilemeyen
bir uyku durumunda olan süreçler de yükleme averajına katkıda bulunurlar.
  [:graph:]       boşluk hariç, tüm yazdırılabilir karakterler
  [:lower:]       tüm küçük harfler
  [:print:]       boşluk dahil, tüm yazdırılabilir karakterler
  [:punct:]       tüm noktalama isaretleri
  [:space:]       tüm enine veya boyuna boşluklar
  [:upper:]       tüm büyük harfler
  [:xdigit:]      tüm onaltılık rakamlar
  [=KAR=]         KAR'a eş olan tüm karakterler
  \0NNN   sekizlik NNN değerli bayt (1-3 basamak)
  \xHH    sekizlik HH değerli bayt (1-2 basamak)
  \NNN    sekizlik NNN değerli bayt (1-3 basamak)
  \xHH    onaltılık HH değerli bayt (1-2 basamak)
  \uHHHH  onaltılık HHHH değerli Unicode (ISO/IEC 10646) karakter (4 basamak)
  \UHHHHHHHH  onaltılık HHHHHHHH değerli Unicode karakter (8 basamak)
  \\      ters eğik çizgi
  \a      uyarı (BEL)
  \b      geri sil
  \c      artık çıktı gösterme
  \e      kaçış
  \f      form besleme
  \n      yeni satır
  \r      taşıyıcı döngüsü (CR)
  \t      yatay sekme
  \v      dikey sekme
  \v              boyuna sekme
  KAR1-KAR2       büyükten küçüğe KAR1'den KAR2 ye kadar tüm karakterler
  [KAR*]          DİZİLİM2'de, DİZİLİM1 uzunluğuna kadar KAR kopyaları
  [KAR*YİNE       KAR'ın YİNE kadar yinelemesi, YİNE 0'la başlıyorsa sekizlik
  [:alnum:]       tüm harf ve rakamlar
  [:alpha:]       tüm harfler
  [:blank:]       tüm enine boşluklar
  [:cntrl:]       tüm denetim karakterleri
  [:digit:]       tüm rakamlar
  ascii     EBCDIC'den ASCII'ye
  ebcdic    ASCII'den EBCDIC'ye
  ibm       ASCII'den alternatif EBCDIC'ye
  block     yenisatır ile sonlanan kayıtları cbs-size ile boşluklarla doldur
  unblock   cbs-size içindeki satır sonu boşluklarını yenisatırla değiştir
  lcase     BÜYÜK harfleri küçük harfe dönüştür
  ucase     küçük harfleri BÜYÜK harfe dönüştür
  sparse    tüm NUL çıktı bloklarını yazma yerine aramayı dene
  swab      her bir çıktı baytını çiftini takas et
  sync      her NUL içeren girdi blokunu ibs-size ile doldur; block veya
            unblock ile kullanıldığında NUL yerine boşluklarla doldur
  binary    veri için ikili G/Ç kullan
  bs=BAYTLAR      bir kerede BAYTLAR bayt oku ve yaz (öntanımlı: 512); ibs
                    ve obs'yi geçersiz kılar
  cbs=BAYTLAR     bir kerede BAYTLAR bayt dönüştür
  cio       veri için eşzamanlı G/Ç kullan
  conv=DNŞTR      dosyayı virgülle ayrılmış sembol listesine göre dönüştür
  count=N         yalnızca N girdi bloku kopyala
  d[BOYUT]    imzalı onluk, tamsayı başına BOYUT bayt
  f[BOYUT]    kayan noktalı değer, değer başına BOYUT bayt
  o[BOYUT]    sekizlik, tamsayı başına BOYUT bayt
  u[BOYUT]    imzalanmamış onluk, tamsayı başına BOYUT bayt
  x[BOYUT]    onaltılık, tamsayı başına BOYUT bayt
  direct    veri için doğrudan G/Ç kullanır
  directory  dizin olmadığı durumda başarısız
  dsync    veri için eşzamanlanmış G/Ç kullanır
  excl      çıktı dosyası halihazırda varsa başarısız ol
  nocreat   çıktı dosyasını oluşturma
  notrunc   çıktı dosyasını budama
  noerror   okuma hatalarından sonra sürdür
  fdatasync bitirmeden önce çıktı dosya verisini fiziksel olarak yazdır
  fsync     fdatasync gibi; ancak ek olarak üstveriyi de yazdır
  fullblock  girişin bütün bloklarını biriktir (yalnızca iflag)
  ibs=BAYTLAR     bir kerede BAYTLAR bayt oku (öntanımlı: 512)
  obs=BAYTLAR     bir kerede BAYTLAR bayt yaz (öntanımlı: 512)
  noatime   erişim zamanını güncelleme
  nocache   Önbelleği bırakmayı iste. Ayrıca bkz. oflag=sync
  noctty    dosyadan denetleyen uçbirim atama yapma
  nofollow  sembolik bağları izleme
  nolinks   çoklu bağlantı varsa başarısız ol
  nonblock  bloklamayan G/Ç kullanır
  none       otomatik ölçekleme yapılmaz; sonekler bir hata tetikler
  none, off       hiç yedekleme yapma (--backup kullanılsa bile)
  numbered, t     numaralanmış yedekleme yap
  existing, nil   eğer numaralanmış yedekler varsa numaralanmış, yoksa basit
  simple, never   her zaman basit yedekleme yap
  of=DOSYA        stdout yerine DOSYA'ya yaz
  oflag=BAYRAKLAR virgülle ayrılmış sembol listesine göre yaz
  skip=N          (veya iseek=N) çıktının başında N ibs boyutlu bloku atla
  sync      önceki gibi; ancak meta veri için de geçerli
  text      veri için metin G/Ç kullan
 %H:%M:%S   (yedek: %s) * [-]LCASE      [-]lcase ile aynı
 * [-]cdtrdsr    DTR/DSR el sıkışmasına izin ver
 * [-]cmspar     "stick" (im/uzay) denkliği kullan
 * [-]crtscts    RTS/CTS el sıkışmasına izin ver
 * [-]ctlecho    denetim karakterlerini şapka simgeleminde yankıla ('^c)
 * [-]decctlq    [-]ixany ile aynı
 * [-]drain      ayarları uygulamadan önce işlem için bekle (öntanımlı %s)
 * [-]echoctl    [-]ctlecho ile aynı
 * [-]echoke     [-]crtkill ile aynı
 * [-]echoprt    '\' ve '/' arasında silinen karakterleri geriye doğru yankıla
 * [-]extproc    "LINEMODE"u etkinleştir; yüksek gecikmeli bağlarda iyidir
 * [-]flusho     çıktıyı at
 * [-]imaxbel    biple ve bir karakterde bir tam girdi arabelleği floşlama
 * [-]iutf8      büyük harfli karakterleri küçük harfe çevir
 * [-]iutf8      girdi karakterlerinin UTF-8 kodlu olduğunu varsay
 * [-]ixany      yalnızca başlangıç karakteri değil, her karakterin çıktıyı
                   yeniden başlatmasına izin ver
 * [-]lcase      xcase iuclc olcuc ile aynı
 * [-]ocrnl      satır başını yenisatıra çevir
 * [-]ofdel      dolgu için NUL yerine sil karakterleri kullan
 * [-]ofill      gecikmeler için zamanlama yerine dolgu karakterleri kullan
 * [-]olcuc      küçük harfleri büyük harfe çevir
 * [-]onlcr      yenisatırı satır başı-yenisatır'a çevir
 * [-]onlret     yenisatır, satır başı gibi davranır
 * [-]onocr      ilk sütunda satır başlarını yazdırma
 * [-]prterase   [-]echoprt ile aynı
 * [-]tostop     uçbirime yazmaya çalışan arka plan işlerini durdur
 * [-]xcase      icanon ile, büyük harfler için '\' ile kaç
 * bsN           geri sil gecikme tarzı; N, [0..1]
 * crN           satır başı gecikme tarzı; N, [0..3]
 * crtkill       echoprt ve echoe ayarlarına uyarak tüm satırları öldür
 * -crtkill      echoctl ve echok ayarlarına uyarak tüm satırları öldür
 * discard KAR   KAR, bir çıktının atılmasını açar/kapatır
 * dsusp KAR     KAR, girdi floşlandığında bir uçbirim dur sinyali gönderir
 * eol2 KAR      satırı sonlandırmak için KAR'ı değiştir
 * ffN           form beslemesi gecikme tarzı; N, [0..1]
 * line N        N satır disiplini kullan
 * lnext KAR     KAR, tırnağa alınan sonraki karakteri girer
 * nlN           yenisatır gecikme tarzı; N, [0..1]
 * rprnt KAR     KAR, geçerli satırı yeniden çizer
 * status KAR    KAR, bir bilgi sinyali gönderir
 * swtch KAR     KAR, başka bir kabuk katmanına geçiş yapar
 * tabN          yatay sekme gecikme tarzı; N, [0..3]
 * tabs          tab0 ile aynı
 * -tabs         tab3 ile aynı
 * vtN           dikey sekme gecikme tarzı; N, [0..1]
 * werase KAR    KAR, girilen son sözcüğü siler
 ??:????   TTY içerik=%s gruplar= eski %.*s: geçersiz dönüşüm belirtimi%b %e  %Y%b %e %H:%M%s (regexp %s için)%s -> %s (yedeklemeyi geri al)
%s [-d] olağan olmayan bir biçimde sonlandırıldı%s ve %s aynı dosya%s erişilemedi
%s var; ancak bir dizin değil%s bekleniyordu%s bekleniyordu, %s bulundu%s göründü; yeni dosya izleniyor%s, erişilebilir oldu%s, erişilemez oldu%s, tail'lanamayan bir dosya ile değiştirildi%s%s, tail'lanamayan bir uzak dosya ile değiştirildi%s, tail'lanamayan bir sembolik bağ ile değiştirildi%s, değiştirildi; yeni dosya izleniyor%s bilinmeyen dosya türüne sahip%s faydasız, görüşüne göre negatif boyutlu%s ana sayfası: <%s>
%s geçerli bir pozitif tamsayı değil%s, yalnızca bir SELinux çekirdeğinde kullanılabilir%s değiştirilmiş%s belirtildi; ancak %s değil%s, girdinin üzerine yazar; iptal ediliyor%s%s argümanı '%s' pek büyük%s-%s%s: %s: satır numarası erim dışı%s: %s: eşleşme bulunamadı%s: tekrar sayısında '}' gereklidir%s: iki terimli işleç bekleniyordu%s: göreceli sembolik bağlar yalnızca mevcut dizinde oluşturulabilir%s: bloklamayan kip değiştirilemiyor%s: Dosya boyutu belirlenemiyor%s: bu dosya türünün sonu izlenemiyor%s%s: Dizinin üzerine yazılamaz%s: Geri sarılamıyor%s: Aranamadı%s: Yalnızca iliştirilebilir dosya açıklayıcısı kıyılamıyor%s: Atlanamıyor%s: Belirtilen konuma geçilemiyor%s: satır sonlandırıcı '%c' eksik%s: bloklamayan kip sıfırlanamadı%s: %s dizininin içine inilsin mi? %s: yazma korumalı %s dizininin içine inilsin mi? %s: Dosya sonu%s: Denklik sınıfı işleneni tek karakterden oluşmalıdır%s: %s ayarlanırken hata%s: Budamada hata%s: Bir sayısal değer bekleniyordu%s: Kapatılamadı%s: Yazma için açılamadı%s: Kaldırılamadı%s: fcntl başarısız%s: fdatasync başarısız%s: Dosya büyüklüğü negatif%s: Dosya fazla küçülmüş%s: Dosya pek büyük%s: dosya budandı%s: fstat başarısız%s: fsync başarısız%s: Dizinde sabit bağa izin verilmiyor%s: Girdide bir döngü var:%s: Girdide tek sayılı jeton var%s: Girdi dosyası çıktı dosyası ile aynı%s: sınırlandırıcıdan sonra tamsayı olmalı%s: %s konumundan başlayan geçersiz sayım%s: Geçersiz yönerge%s: geçersiz alan belirtimi %s%s: Geçersiz dosya türü%s: Geçersiz seçenek -- '%c'
%s: geçersiz dizgi%s: Geçersiz işlem kimliği%s: geçersiz düzenli ifade: %s%s: Geçersiz sinyal%s: Onaltılık sonek için geçersiz başlangıç değeri%s: Nümerik sonek için geçersiz başlangıç değeri%s: satır sayısı 0'dan büyük olmalı%s: satır sayısı erim dışı%s: lseek başarısız%s: Birden fazla sinyal belirtilmiş%s: Yeni izinler %s, %s değil%s: Doğrulanan dosya yok%s: Düzgünce biçimlenmiş sağlama toplamı satırı bulunamadı%s: bu aygıt için boyut bilgisi yok%s: Böyle bir kullanıcı yok%s: önceden listelenmiş dizin yeniden listelenmiyor%s: '%s%s' seçeneği bir argümana izin vermiyor
%s: '%s%s' seçeneği belirsiz
%s: '%s%s' seçeneği belirsiz; olasılıklar:%s: '%s%s' seçeneği bir argüman gerektiriyor
%s: Seçenek bir argüman gerektiriyor -- '%c'
%s: %s ögesinin üzerine yazılsın mı? %s: Geçiş %lu/%lu (%s)...%s: Geçiş %lu/%lu (%s)...%s%s: Geçiş %lu/%lu (%s)...%s/%s %d%%%s: Okuma hatası%s: %s %s kaldırılsın mi? %s: yazma korumalı %s %s kaldırılsın mı? %s: Kaldırıldı%s: Kaldırılıyor%s: %s olarak yeniden adlandırıldı%s: %s, %04lo (%s) kipinin üzerine yazılarak değiştirilsin mi? %s: %s başkasıyla değiştirilsin mi? %s: arama başarısız%s: Pek fazla sağlama toplamı satırı%s: en büyük dosya adı uzunluğu belirlenemedi%s: istenen işlemlerin tümü yapılamıyor%s: tek terimli işleç bekleniyordu%s: Tanımlanamayan seçenek '%s%s'
%s: %s yazılamaz (%04lo kipi, %s); yine de denensin mi? %s: Değer tamamen dönüştürülmedi%s: yazma hatası%s: yazım başarısız%s:%lu: geçersiz sıfır-uzunluklu dosya adı%s}: '{' ve '}' arasında tamsayı gerekli''+' belirticisi sayı başında değil: %s'+' belirticisine yalnızca son değerde izin verilir'-%c' argümanda ek karakterler veya geçersiz sayı: %s'--pages=İLK_SAYFA[:SON_SAYFA]' eksik argüman'-N SAYI' geçersiz başlangıç satır numarası'-W SAYFA_GENİŞLİĞİ' geçersiz karakter sayısı'-l SAYFA_UZUNLUĞU' geçersiz satır sayısı'-o KENAR BOŞLUĞU' geçersiz satır ofseti'-w SAYFA_GENİŞLİĞİ' geçersiz karakter sayısı'/' ayırıcısı '+' ile kullanılamaz'/' belirticisi sayı başında değil: %s'/' belirticisine yalnızca son değerde izin verilir'\c', çift tırnaklı -S dizisinde görünmemelidir(C), yük ortalaması: %.2f--%s argümanı %s pek büyük-- (-Z) bağlamı yalnızca SELinux etkin bir çekirdekte çalışır--context (-Z) yalnızca bir SELinux/SMACK etkin bir çekirdekte çalışır--data, en az bir argümana gereksinim duyuyor--dired ve --zero uyumsuz--format dolgusu, --padding'i geçersiz kılıyor--group, -c/-d/-D/-u ile birlikte kullanılamaz--grouping, --format ile birlikte kullanılamaz--header, komut satırı girdisiyle yok sayılıyor--reflink yalnızca --sparse=auto ile kullanılabilir--tağ, --text kipini desteklemiyor--terse --file-system, aşağıdaki BİÇİM'e eşdeğerdir:
    %s-R --dereference, ya -H ya da -L gerektiriyor-R -h, -P gerektiriyor-ef, -l'yi kabul etmiyor-r belirtilmemiş; %s dizini atlanıyor; bu addan vazgeçiliyor<içsel>???
?????İptal edildi    Erişim: %x
Değiştirme: %y
Değişiklik: %z
     Doğum: %w
Erişim: (%04a/%10.10A)  Uid: (%5u/%8U)   Gid: (%5g/%8G)
Makine adı için adres ailesi desteklenmiyorÇalar saatAlex DeymoBütün istekler gerçekleştirildiArgüman arabelleği pek küçükArnold RobbinsAssaf GordonBoşBoşBozuk sistem çağrısıHatalı ai_flags değeriDOSYA'yı base%d veya standart girdi ile standart çıktı'ya kodla veya çöz.
Brian FoxVeriyolu hatalıVeri yolu hatasıDİKKAT: shred, dosya sistemi ve donanımın mevcut verinin üzerine yazacağını
varsayar. Bu, yaygın bir davranıştır; ancak çoğu platform başka türlü
davranı. Ayrıca, yedekler ve yansılar kaldırılamaz kopyalar içerebilir, bu da
kıyılan bir dosyanın daha sonra kurtarılabilmesine olanak verir. Ayrıntılar
için GNU coreutils kılavuzuna bakın.
YORUMİşlemci zaman sınırı aşıldıMevcut olan DOSYA1'e DOSYA2 adında bir bağ oluşturmak için 'link' (bağ)
işlevini çağırın.

Belirtilen DOSYA'yı silmek için 'unlink' işlevini çağırın.

SığaHer bir DOSYA'nın SELinux güvenlik içeriğini BAĞLAM'a değiştir.
--reference ile her bir DOSYA'nın güvenlik bağlamını BDOSYASI'na değiştir.
Her bir DOSYA'nin grubunu GRUP olarak değiştir.
--reference ile, her bir DOSYA'nın grubunu BDOSYASI'nın grubu ile değiştir.

Her bir DOSYA'nın kipini KİP olarak değiştir.
--reference ile, her bir DOSYA'nın kipini BDOSYASI'nın kipi ile değiştir.

Her bir DOSYA'nın sahibini ve/veya grubunu SAHİP'e ve/veya GRUP'a değiştir.
--reference ile, her bir DOSYA'nın sahibini ve grubunu BDOSYASI'nın sahibine
ve grubuna değiştir.

Chet RameyAltişlem çıktıColin PlumbSıralı dosyalar DOSYA1 ve DOSYA2'yi satır satır karşılaştırır.
DOSYA(lar)(y)ı standart girdi'ye yaz.
Bağlam: %C
SürdürüldüHer DOSYA'daki boşlukları sekmelere dönüştür, standart çıktı'ya yazdır.
Her bir DOSYA'daki sekmeleri boşluklara çevir ve standart çıktı'ya yaz.
KAYNAK'ı HEDEF'e veya birden fazla KAYNAK'ları DİZİN'e kopyala.
Bir dosyayı işlenene göre dönüştürerek ve biçimlendirerek kopyala.

Standart girdiyi verilen DOSYA'lara ve ayrıca standart çıktı'ya kopyala.

Güvenli bir biçimde bir geçici dosya veya dizin oluştur ve adını yazdır.
ŞABLON, son bileşende en az üç birbirini izleyen 'X'ler içermelidir.
ŞABLON belirtilmemişse tmp.XXXXXXXXXX kullanın ve --tmpdir ima edilir.
Verilen AD'lara adlı veriyolları oluştur (FIFO'lar).
Halihazırda yoklarsa DİZİN'(ler)i oluştur.
Verilen TÜR ile özel AD dosyasını oluştur.
David M. IhnatDavid MacKenzieDavid MadoreAygıt: %Hd,%Ld	İndeks: %-10i  Bağlar: %-5h Aygıt türü: %Hr,%Lr
Aygıt: %Hd,%Ld	İndeks: %-10i  Bağlar: %h
Dizin: Dosya veya dosya sistemi durumunu görüntüle.
Dmitry V. LevinEMT tuzağıÇIKIŞHer bir erim şunlardan biridir:

  N     N. bayt, karakter veya alan, 1'den hesaplandı
  N-    N. bayt, karakter veya alandan satırın sonuna kadar
  N-M   N.'den M.'ye kadar bayt, karakter veya alan dahil
  -M    Birinciden M.'ye kadar, bayt, karakter ve alan dahil
DİZİ(leri) standart çıktı'ya yankıla.

Eric BlakeDahili PROGRAM_ADI'nı verilen PARAMETRELER ile çalıştır.

Hatayı belirten bir durum kodu ile çık.Başarıyı belirten durum koduyla çık.İFADE tarafından belirlenen durum ile çık.

F. PinardBAŞARISIZBAŞARISIZ açma veya okumaBİÇİM, 'double' türü bir argüman yazdırmak için uygun olmalıdır; eğer İLK,
ARTIŞ ve SON en çok kesinlik KESİNLİK'li sabit noktalı onluk sayılarsa
%.PRECf'ye öntanımlı olarak döner, yoksa %g olur.
Fifo'ların majör ve minör aygıt numarası bulunmaz.DosyaDosya uzunluğu sınırı aşıldıDosyalar u+rw ve dizinler umask kısıtlamaları hariç u+rwx olarak oluşturulur.
Dosya sistemiArdışık eşleşen satırları GİRDİ ile süz (veya standart girdi) ve ÇIKTI'ya yaz
(veya stanadart çıktı).

Seçenek olmadan, eşleşen satırlar ilk oluşa birleştirilirler.
Kayan noktalı değer istisnasıAynı birleşme alanlı her bir girdi satırı için standart çıktı'ya yaz.
Öntanımlı birleşme alanı ilkidir, boşluklarla sınırlandırılır.
Tam belgelendirme <%s%s>
GNU yazılımı kullanımı genel yardımı: <%s>
Giuseppe ScrivanoH. Peter AnvinTıkanmaG/Ç olanaklıBOŞTABoşİnİnKullanım%DoluİnIan Lance TaylorBoştaEğer DOSYA belirtilmemişse %s kullan. DOSYA olarak %s ortaktır.

İzin verilmeyen yönergeGerçekte: Birinci biçimde, HEDEF'e BAĞ_ADI olan bir bağ oluştur.
İkinci biçimde, HEDEF'e geçerli dizinde bir bağ oluştur.
Üçüncü ve dördüncü biçimlerde, DİZİN'deki her bir HEDEF'e bağlar oluştur.
Öntanımlı olarak sabit bağlar, --symbolic eklenirse sembolik bağlar oluştur.
Öntanımlı olarak, her hedef (bağ adı) halihazırda var olmamalıdır.
Sabit bağlar oluştururken her HEDEF var olmalıdır. Sembolik bağlar, isteğe
bağlı metinler tutabilir; daha sonra çözülürse bir göreli bağ onun üst
dizini ile ilişkisine göre yorumlanır.
SonsuzlukBilgi isteğiDosya indeksleriYarıda kesBir işaret tarafından kesildiGeçersiz ters başvuruGeçersiz karakter sınıfı adıGeçersiz karşılaştırma karakteri\{\} içeriği geçersizGeçersiz sayıÖnceki düzenli ifade geçersizGeçersiz erim sonuGeçersiz düzenli ifadeJames YoungmanJay LepreauJim KingdonJim MeyeringJoseph ArceneauxKaveh GhaziKayvan AğaiepurKevin BraunsdorfSüreç durdurulduSATIROTURUM AÇGPLv3+ lisansı: GNU GPL sürüm 3 veya sonrası <%s>.
Bu özgür yazılımdır; değiştirmekte ve yeniden dağıtmakta özgürsünüz.
Yasaların izin verdiği ölçüde herhangi bir GARANTİ verilmez.
DOSYA'lar hakkında bilgi listele (öntanımlı olarak geçerli dizin).
-cftuvSUX veya --sort belirtilmemişse girdileri abecesel olarak sırala.
GirişKullanıcı adı: Mark KettenisMatthew BradburnBellek ayırma başarısızBellek tükendiMichael MeskesMichael StoneMike HaertelMike ParkerBağlanılan yerADAdAd veya hizmet bilinmiyorNiels MollerMakine adı ile ilişkilendirilmiş adres yokEşleşme yokÖncesinde düzenli ifade yokAd çözümlenmesinde kurtarılamayan hataTamamTıkıştıran yinelemeler olmadan yalnızca bir dizi verilebilir.Sıralama seçenekleri:

Girdi dosyası sözcüklerinin bağlamı dahil, devşirilmiş bir indeks çıktıla.
LS_COLORS çevre değişkenini ayarlamak için çıktı komutları.

Çıktı formatını belirle:
Her bir AD'ı onun son eğik çizgi olmayan bileşeniyle çıktıla ve art eğik
çizgileri kaldır; eğer AD bir '/' içermiyorsa '.' çıktıla (geçerli dizin
anlamına gelir).
DOSYA'nın KALIP'larla ayrılmış parçalarını 'xx00', 'xx01', ... dosyalarına
çıktıla ve her bir parçanın bayt sayımlarını da standart çıktı'ya çıktıla.
DOSYA parçalarını SONEKaa, SONEKab'ye çıktıla ...]
öntanımlı boyut 1000 satırdır ve öntanımlı SONEK 'x'tir.
Bir biçimde çıktı platformuna bağlı limitler kabuk betikleri için yararlıdır.

DOSYA'ya göre çalışmakta olan kullanıcıları gösterir.
DOSYA verilmezse %s kullanılır. DOSYA olarak %s kullanımı yaygındır.

Belirtilen DOSYA'(lar)nın yineli olarak üzerine yaz, böylece dosyanın
üst düzey kurtarma donanımları tarafından bile kurtarılmasını ileri kertede
zorlaştır.
PID%s tarafından paketlendi
%s tarafından paketlendi (%s)
Padraig BradyDOSYA'(lar)ı yazdırma için sayfala veya sütunla.
Parametre dizgisi doğru kodlanmadıPaul EggertPaul RubinPete TerMaatPlan:
Güç başarısızDüzenli ifadenin sonu eksik kalmışBİÇİM'e göre ARGÜMAN'(lar)ı yazdır veya SEÇENEK'e göre çalıştır:

Dizinlerle ilgili kısımlar kaldırılarak AD basılır.
Belirtilmişse SONEK de kaldırılır.
Belirli sistem bilgilerini yaz. SEÇENEK olmadan -s ile aynı.

Her KULLANICIADI için grup üyeliklerini yazdır veya mevcut işlem için
eğer belirtilmiş KULLANICIADI yoksa (gruplarının veritabanı değiştirilmişse
farklı olacak).
Şu anda oturum açmış kullanıcılar hakkında bilgi yazdır.
Makine mimarisini yazdır.

Sayıları İLK'ten SON'a ARTIŞ'la ilerleyerek yazdır.
Uçbirim karakteristiklerini yazdır veya değiştir.
%s (%d bit) sağlama toplamlarını yazdır veya denetle.
Sağlama toplamlarını yazdır veya doğrula.
Öntanımlı olarak 32 bit CRC algoritmasını kullan.
Her bir DOSYA'dan seçili satır kısımlarını standart çıktı'ya yazdır.
Geçerli zamanı, sistemin açık olduğu süreyi, sistemdeki kullanıcıların
sayısını ve son 1, 5 ve 15 dakika içinde sistem çalıştırma kuyruğundaki
ortalama iş sayısını yazdır.Standart girdi'ye bağlı uçbirimin dosya adını yazdır.

Her bir DOSYA'nın ilk %d satırını standart çıktı'ya yazdır.
Birden çok DOSYA ile her birini dosya adını gösteren bir üstveri ile başlat.
Geçerli çalışma dizininin tam dosya adını yazdır.

Her dosyanın son %d satırını standart çıktı'ya yazdır.
Birden çok DOSYA varsa hepsinin başına dosya adını koy ve yazdır.
Belirtilen her tamsayı SAYI'nın asal çarpanlarını yazdır.
Eğer komut satırında belirtilmemişlerse standart girdiden oku.

Geçerli etkin kullanıcı kimliği ile ilişkili kullanıcı adını yazdır.
id -un ile olduğu gibi.

Kullanıcının oturum açma adını yazdır.

Kullanıcı ve grup bilgisini her belirtilen KULLANICI için yazdır veya
(KULLANICI sağlanmadığında) geçerli süreç için yazdır.
Bir sembolik bağın veya kurallı dosya adının değerini yazdır

İlerleyen istek işleniyorProfilleyen süreölçerde zaman aşımıProje: Q. Frank ŞiaÇıkışRandy SmithGerçek zamanlı sinyal %dHiç belirtilmemişse NUMARA'ları veya stdin'den numaraları yeniden biçimlendir.
DOSYA(LAR)'daki her paragrafı yeniden biçimlendir, standart çıktı'ya yaz.
-WIDTH seçeneği, --width=BASAMAKLAR'ın kısaltılmış halidir.
Düzenli ifade pek büyükDOSYA'(lar)ı kaldır (bağını kopar).

Boşlarsa DİZİN(LER)'i kaldır.

KAYNAK'ı HEDEF olarak yeniden adlandır veya KAYNAK'(lar)ı DİZİN'e taşı.
Tüm belirtilen DİZİ'(ler)le bir satırı yineleyerek çıktıla veya 'y'.

%s hatalarını şuraya bildirin: %s
Çeviri hatalarını <https://translationproject.org/team/tr.html>'ye bildirin
Hataları şuraya bildirin: %s
İstek iptal edildiİstek iptal edilmediÖzkaynak kaybıRichard M. StallmanRichard MlynarikRoland HuebnerRoland McGrathRoss PatersonKOMUT'u, süreç zamanlamalarını etkileyen ayarlanmış bir öncelikle çalıştır.
KOMUT olmadan, geçerli öncelikleri yazdır. Öncelik değerleri %d (sürecin
en hoşuna giden) <=> %d (sürecin en hoşuna gitmeyen) aralığındadır.
KOMUT'u kök dizin YENİKÖK olarak çalıştırır.

KOMUT'u çalıştır ve bitir sinyallerini yok say.

Standart akışları için değiştirilmiş önbellekleme işlemleriyle KOMUT çalıştır.
Farklı bir SELinux güvenlik bağlamında bir program çalıştır.
BAĞLAM veya KOMUT olmadan, geçerli güvenlik bağlamını yazdır.
Russell CokerSamuel NevesScott BartramScott MillerParçalanma hatasıSinyalleri süreçlere gönder veya sinyalleri listele.
Servname ai_socktype için desteklenmiyorSorunu bertaraf etmek için LC_ALL='C' tanımlayın.Her bir AD'ı ortamda DEĞER'e ayarla ve KOMUT'u çalıştır.
Kabuk: Her bir DOSYA'nın üzerinde bulunduğu dosya sistemi hakkında bilgi göster
veya tüm dosya sistemlerini öntanımlı olarak göster.
Her DOSYA'nın boyutunu belirtilen boyuta küçült veya genişlet

Var olmayan bir DOSYA argümanı oluşturulur.

Eğer bir DOSYA belirtilen boyuttan büyükse ek veri kaybolur.
Eğer bir DOSYA küçükse genişletilir ve aralıklı genişletilmiş kısım (delik)
sıfır bayt olarak okunur.
Simon JosefssonBoyutÖzel dosyalar, majör ve minör aygıt numaraları gerektirir.Yığın hatasıKOMUT'u başlat ve SÜRE sonrası hâlâ çalışıyorsa öldür.
DurdurulduDurduruldu (sinyal)Durduruldu (konsol girdisi)Durduruldu (konsol çıktısı)Stuart KempBaşarılıDOSYA'lar kümesinin aygıt kullanımını özetle, dizinler için özyineli.
Önbelleklenmiş yazmaları sürekli depolamaya eşzamanla

Bir veya birden çok dosya belirtilmişse yalnızca onları veya
onların içerdiği dosya sistemini eşzamanla.

Sistem hatasıSAATAd çözümlenmesinde geçici başarısızlıkSonlandırıldıAşağıdaki isteğe bağlı bayraklar '%' ögesini izleyebilir:

  -  (tire) alana boşluk ekleme
  _  (alt çizgi) boşluk ekle
  0  (sıfır) sıfırlarla doldur
  +  sıfırlarla doldur ve 4'ten büyük basamaklı yılların başına '+' koy
  ^  olabildiğince BÜYÜK harf kullan
  #  karşıt BÜYÜK/küçük harf durumu kullan
Karşılaştırılan diziler %s ve %s idi.Torbjörn Granlundİzleme/kesme noktası yakalayıcıSonda eğik ters çizgiStandart girdiden standart çıktıya yazarken çevir, tıkıştır ve/veya karakter
sil. DİZİ1 ve DİZİ2, eylemi denetleyen DİZİLİM1 ve DİZİLİM2 karakterlerini
belirtir.

Daha fazla bilgi için '%s --help' deneyin.
Şu dosyayı kaldırmak için '%s ./%s' deneyin: %s.
Yinelemeleri silerken ve tıkıştırırken iki dizi verilmelidir.Çeviri yaparken iki dizi verilmelidir.TürUlrich DrepperBilinmeyen hataBilinmeyen sinyal %dBilinmeyen sistem hatasıEşleşmeyen ( veya \(Eşleşmeyen ) veya \)Eşleşmeyen [, [^, [:, [. veya [=Eşleşmeyen \{DOSYA'nın erişim ve değiştirilme zamanlarını geçerli zamana güncelle.

Var olmayan bir DOSYA argümanı boş oluşturulur, -c veya -h verilmemişse.

Bir - DOSYA argümanı dizisine özel olarak davranılır ve touch'ın standar
çıktı ile ilişkilendirilmiş dosyanın zamanını değiştirmesine neden olur.
Acil G/Ç koşuluKullanım: %s
Kullanım: %s --coreutils-prog=PROGRAM_ADI [PARAMETRELER]... 
Kullanım: %s KOMUT [ARG]...
   veya:  %s SEÇENEK
Kullanım: %s İFADE
   veya:  %s SEÇENEK
Kullanım: %s DOSYA
    veya: %s SEÇENEK
Kullanım: %s DOSYA1 DOSYA2
   veya:  %s SEÇENEK
Kullanım: %s BİÇİM [ARGÜMAN]...
   veya:  %s SEÇENEK
Kullanım: %s AD [SONEK]
   veya:  %s SEÇENEK... AD...
Kullanım: %s SEÇENEK... KOMUT
Kullanım: %s SEÇENEK... DOSYA...
Kullanım: %s SEÇENEK... [DOSYA]...
Kullanım: %s [-F AYGIT | --file=AYGIT] [AYAR]...
   veya:  %s [-F AYGIT | --file=AYGIT] [-a|--all]
   veya:  %s [-F AYGIT | --file=AYGIT] [-g|--save]
Kullanım: %s [-GENİŞLİK] [SEÇENEK]... [DOSYA]...
Kullanım: %s [-s SİNYAL] | -SİNYAL] PID...
   veya:  %s -l [SİNYAL]...
   veya:  %s -t [SİNYAL]...
Kullanım: %s [AD]
   veya:  %s SEÇENEK
Çalıştırıldığı sistemin makine adını değiştirir veya gösterir.

Kullanım: %s [İŞLENEN]...
   veya:  %s SEÇENEK
Kullanım: %s [SEÇENEK]
Kullanım: %s [OPTION]
Var olan sunucu için sayısal tanımlayıcıyı onaltılık sistemde yazdır.

Kullanım: %s [SEÇENEK] AD...
Kullanım: %s [SEÇENEK] [KOMUT [ARG]...]
Kullanım: %s [SEÇENEK] [DOSYA]
DOSYA'daki kısımsal sıralama ile uyumlu bir tam düzenli sıralı liste yaz.
Kullanım: %s [SEÇENEK] [DOSYA]...
Kullanım: %s [SEÇENEK]...
Kullanım: %s [SEÇENEK]... BAĞLAM DOSYASI...
   veya:  %s [SEÇENEK]... [-u KULLANICI] [-r ROL] [-l ERİM] [-t TÜR] DOSYA...
   veya:  %s [SEÇENEK]... --reference=BDOSYASI DOSYA...
Kullanım: %s [SEÇENEK]... DİZİN...
Kullanım: %s [SEÇENEK]... DOSYA KALIP...
Kullanım: %s [SEÇENEK]... DOSYA...
Kullanım: %s [SEÇENEK]... DOSYA1 DOSYA2
Kullanım: %s [SEÇENEK]... SON
   veya:  %s [SEÇENEK]... İLK SON
   veya:  %s [SEÇENEK]... İLK ARTIŞ SON
Kullanım: %s [SEÇENEK]... KİP[,KİP]... DOSYA...
   veya:  %s [SEÇENEK]... SEKİZLİK-KİP DOSYA
   veya:  %s [SEÇENEK]... --reference=BDOSYASI DOSYA...
Kullanım: %s [SEÇENEK]...AD TÜR [MAJÖR MİNÖR]
Kullanım: %s [SEÇENEK]... AD...
Kullanım: %s [SEÇENEK]... DİZİ1 [DİZİ2]
Kullanım: %s [SEÇENEK]... [ DOSYA | ARG1 ARG2 ]
Kullanım: %s [SEÇENEK]... [-T] KAYNAK HEDEF
   veya:  %s [SEÇENEK]... KAYNAK... DİZİN
   veya:  %s [SEÇENEK]... -t DİZİN KAYNAĞI
Kullanım: %s [SEÇENEK]... [T] KAYNAK HEDEFİ
   veya:  %s [SEÇENEK]... KAYNAK... DİZİN
   veya:  %s [SEÇENEK]... -t DİZİN KAYNAK...
   veya:  %s [SEÇENEK]... -d DİZİN...
Kullanım: %s [SEÇENEK]... [-T] HEDEF [BAĞ_ADI]
   veya:  %s [SEÇENEK]... HEDEF
   veya:  %s [SEÇENEK]... HEDEF... DİZİN
   veya:  %s [SEÇENEK]... -t DİZİN HEDEF...
Kullanım: %s [SEÇENEK]... [-] [AD=DEĞER]... [KOMUT [ARG]...]
Kullanım: %s [SEÇENEK]... [DOSYA [ÖNEK]]
Kullanım: %s [SEÇENEK]... [DOSYA]
Kullanım: %s [SEÇENEK]... [DOSYA]
   veya:  %s -e [SEÇENEK]... [ARG]...
   veya:  %s -i DÜ-YÜ [SEÇENEK]...
Kullanım: %s [SEÇENEK]... [DOSYA]...
Kullanım: %s [SEÇENEK]... [DOSYA]...
veya:  %s [-abcdfilosx]... [DOSYA] [[+]OFSET[.][b]]
veya:  %s --traditional [SEÇENEK]... [DOSYA] [[+]OFSET[.][b] [+][ETİKET][.][b]]
Kullanım: %s [SEÇENEK]... DOSYA
   veya:  %s [SEÇENEK]... --files0-from=F
Kullanım: %s [SEÇENEK]... [GİRDİ [ÇIKTI]]
Kullanım: %s [SEÇENEK]... [GİRDİ]...   (-G olmadan)
   veya:  %s -G [SEÇENEK]... [GİRDİ [ÇIKTI]]
Kullanım: %s [SEÇENEK]... [NUMARA]...
Kullanım: %s [SEÇENEK]... [ŞABLON]
Kullanım: %s [SEÇENEK]... [KULLANICIADI]...
Kullanım: %s [SEÇENEK]... [KULLANICI]...
Kullanım: %s [KISA-SEÇENEK]... [DİZİ]...
   veya:  %s UZUN SEÇENEK
Kullanım: %s [DİZİ]...
   veya:  %s SEÇENEK
Kullanım: %s [yok sayılan komut satırı argümanları]
   veya:  %s SEÇENEK
Kullanım: test İFADE
   veya:  test
   veya:  [ İFADE ]
   veya:  [ ]
   veya:  [ SEÇENEK
Kullanım%DoluKullanıcı tanımlı sinyal 1Kullanıcı tanımlı sinyal 1Geçerli argümanlar:Geçerli argümanlar:
Dosya sistemleri için geçerli biçim dizilişleri:

  %a   süper kullanıcı olmayanlar için kullanılabilir boş bloklar
  %b   dosya sistemindeki toplam veri blokları
  %c   dosya sistemindeki toplam dosya düğümleri
  %d   dosya sistemindeki boş dosya düğümleri
  %f   dosya sistemindeki boş bloklar
Sanal süreölçer zaman aşımıUYARI: Döngülü dizin yapısı.
Bu, neredeyse kesin olarak dosya sisteminizin hasarlı olduğu anlamına gelir.
SİSTEM YÖNETİCİNİZE HABER VERİN.
Aşağıdaki dizin bu çevrimin bir parçası:
  %s
UYARI: --preserve-context yok sayılıyor; bu çekirdekte SELinux etkin değilUYARI: -s seçeneği belirtilmediğinden --strip-program yok sayılıyorUyarı: Ne zamanDenetlerken, girdi bu programın veya eşdeğer başka bir programın daha
önceki bir çıktısı olmalıdır.
NeredePencere değişti--follow (-f) ile; tail, dosya açıklayıcısını izlemeye öntanımlanır; bu,
tail'lanmış bir dosya yeniden adlandırılsa bile tail bu dosyanın sonunu
izlemeyi sürdürecektir. Bu öntanımlı davranış, gerçekten dosyanın adını
(dosya açıklayıcısını değil) izlemek istediğiniz durumlarda istenmeyebilir
(örn. günlük dönüşümü). Bu durumda --follow=name kullanın. Bu, tail'ın
dosyayı yeniden adlandırma, kaldırılma ve oluşturulmayı içerecek bir
biçimde izlemesine olanak verir.
Her bir DOSYA'da girdi satırlarını kaydır, standart çıktı'ya yaz.
Standart çıktı'ya girdi satırlarının rastgele bir permütasyonunu yaz.
Her DOSYA'yı standart çıktı'ya yaz, son satır ilk olarak.
Her DOSYA'yı satır numaraları ekli biçimde standart çıktı'ya yazdır.
Tüm DOSYA'(lar)ın sıralanmış uç uca eklemelerini standart çıktı'ya yazdır.
%s ve %s tarafından yazıldı.
%s, %s, %s, %s, %s, %s,
%s, %s, %s ve diğerleri
tarafından yazıldı.
%s, %s, %s, %s, %s, %s,
%s, %s ve %s tarafından
yazıldı.
%s, %s, %s, %s,
%s, %s, %s ve %s
tarafından yazıldı.
%s, %s, %s,
%s, %s, %s ve %s tarafından yazıldı.
%s, %s, %s,
%s, %s ve %s tarafından yazıldı.
%s, %s, %s,
%s ve %s tarafından yazıldı.
%s, %s, %s
ve %s tarafından yazıldı.
%s, %s ve %s tarafından yazıldı.
%s tarafından yazıldı.
dizi2'de çeviri yaparken [=c=] ifadeleri yer alamaz^ anahtar için eşleşme yok
^[hH]^[eE]`komut ayarlama ile birlikte verilmeliai_family desteklenmiyorai_socktype desteklenmiyor`%2$s' için %1$s argümanı belirsizyalnızca alanlar üzerinde işlem yaparken bir sınırlandırıcı belirtilebilirve --preserve-root=all şu an etkinçıktı, %s ögesine iliştiriliyoravx2 desteği algılanamadı%s ögesini yedeklemek kaynağı yok edebilir; %s kopyalanmadı%s ögesini yedeklemek kaynağı yok edebilir; %s taşınmadıyedekleme türüDOSYA'yı baseenc veya standart girdi ile standart çıktı'ya kodla veya çöz.
blok özel dosyasıözel blok dosyalar desteklenmiyorblokher iki dosya da standart girdi olamazbayt/karakter ofseti %s pek büyükbayt/karakter konumları 1'den itibaren numaralandırılır%s etiketsiz dosyasına kısmi içerik uygulanamadıişlem bağlamı alınamıyor%s ögesine erişilemedi%s erişimi yapılamıyor: Farklı bir aygıt tarafından üzerine bağlanmış%s yedeklenemedihem özetleyip hem bütün girdiler gösterilemezdizin %s olarak değiştirilemedi%s sahipliği değiştirilemiyor%s ögesinin izinleri değiştirilemiyorkök dizin %s olarak değiştirilemiyor%s dizinine değiştirilemedikök dizine geçilemedi--target-directory (-t) ve --no-target-directory (-T) birleştirilemez--target-directory ve --no-target-directory birleştirilemez-e ve -i seçenekleri birleştirilemez{ascii,ebcdic,ibm} değerlerinin herhangi ikisi birleştirilemez`block' ve `unblock' seçenekleri aynı anda kullanılamazdirect ve nocache birlikte kullanılamaz`excl' ve `nocreat' seçenekleri birleştirilemez`lcase'/'ucase' (küçük/büyük harf) seçenekleri aynı anda kullanılamazkip ve --reference seçenekleri birleştirilemezsinyal, -l veya -t ile birleştirilemez%s ve %s dosya adları karşılaştırılamazU+%04X yerel karakter kümesine dönüştürülemiyorU+%04X yerel karakter kümesine dönüştürülemiyor: %sbir dizin, %s, kendi içine kopyalanamaz, %sçevrimli sembolik bağ %s kopyalanamaz%s dizini oluşturulamıyor%s ilk giren ilk çıkarı oluşturulamadı%s sabit bağı %s'e bağlanamadı%s sabit bağı %s ögesine oluşturulamadınormal dosya %s oluşturulamadı%s özel dosyası oluşturulamadı%s sembolik bağı oluşturulamadışuraya %s sembolik bağı oluşturulamadı: %s%s içinde geçici dosya oluşturulamıyor%s başvurusundan ayrılınamadı%s' ögesinin aygıtı ve indeksi belirlenemiyormakine adı saptanamadı%s konumu belirlenemiyor; yoklamaya geri dönülüyor--symbolic olmadan --relative yapılamıyor%s üzerinde ioctl başarısız%s, adı ile takip edilemiyor%s' ögesi durumlanamıyorgeçerli dizin alınamadıetkili GID alınamıyoretkili kullanıcı kimliği alınamıyoröncelik değeri alınamıyorgerçek GID alınamıyorgerçek UID alınamıyorsistem adı alınamıyor%s ögesinin boyutu alınamıyor%s lseek yapılamadıhem sabit hem sembolik bağ oluşturulamaz%s dizini yapılamadı%s, %s konumuna taşınamadı%s, kendi alt dizini olan %s konumuna taşınamaz%s açılamıyor%s okuma için açılamadı%s yazma için açılamadı%s dizini açılamıyoraskıda kalan sembolik bağ %s üzerinde çalışılamıyorbiçimlendirilmiş çıktı uygulanamıyorgenişletilmiş özellik korunamıyor, cp xattr desteği olmadan yapılırSELinux etkin bir çekirdek olmadan güvenlik bağlantısı korunamıyorpek çok seçenekten "biri" yazdırılamıyorkullanıcı belirtildiğinde güvenlik içeriği yazdırılmazokunamıyor%s dizini okunamıyor%s konumundan dosya adları okunamadı%s için dosya sistemi bilgisi okunamadıgerçek zaman saati okunamıyor%s sembolik bağı okunamadıbağlı dosya sistemleri tablosu okunamıyor%s silinemedi%s çalıştırılamıyor%s ayarlanamıyortarih ayarlanamadıad, %s olarak ayarlanamıyoröncelik değeri ayarlanamıyor'%s' ögesinin izinleri ayarlanamadıhedef bağlamı hem ayarlanıp hem korunamıyor%s için zaman damgaları ayarlanamıyorbirleşik girdinin sonundan sonrası atlanamıyorkomut ile --null (-0) belirtilemiyor--data ve --file-system birlikte belirtilemezparalelde ve karşılıklı yazılırken belirtilemezparalelde yazılırken sütün sayıları belirtilemezzaman birden fazla kaynaktan belirtilemezbirden çok biçimde bölünemez%s durumlanamadıgeçerli dizin durumlanamadı (şimdi %s)standart girdi durumlanamıyor%s, statx yapılamadı`touch' %s yapılamadı%s yedeklemesi geri alınamadı%s bağı çözülemedi%s ayarı kaldırılamıyor%s izlenemiyor%s ögesinin üst dizini izlenemiyorçekirdek hatasının berisinden dolanılamıyor%s grubu %s iken %s olarak değişti
%s sahipliği %s iken %s olarak değişti
%s ögesinin grup üyeliği değiştiriliyor%s ögesinin sahipliği değiştiriliyor%s ögesinin erişim izinleri değiştiriliyor%s ögesinin güvenlik şartları değiştiriliyor
sıralama anahtarında belirtilen karakter yeri sıfırkarakter erim dışıkarakter özel dosyasıözel karakter dosyaları desteklenmiyor%s için izinler temizleniyorsaat değişikliğikapatma başarısız%s kapatılıyor (fd=%d)%s dizini kapatılıyorgirdi dosyası %s kapatılıyorçıktı dosyası %s kapatılıyorstandart girdi kapatılıyoruyumluluk kipi en fazla bir dosyayı desteklerçelişkili boş-alan değiştirme karakter dizileriçelişkili güvenlik durum belirleyicileri verilmişardışık veri%s ögesinin arabelleklemesi %s kipine ayarlanamadı
geçici dosya oluşturulamadı%s içinde eşleşen indeksli dizin girdisi bulunamadısistem önyükleme zamanı alınamadıbloklamayan kip %s sıfırlanamadı%s dizini oluşturuldu%s dizini oluşturuldu
%s dizini oluşturuluyor%s dosyası oluşturuluyor
sınırlayıcı listesi kabul edilmeyen ters eğik çizgi ile bitiyor: %sdizinizlenen dosyayı içeren dizin kaldırılmışsıfırla bölümkapıboş dosya adıboş kayıt ayırıcısıboş sekme%s standartlaştırmasında hatadosya kapatılırken hata%s, %s konumuna kopyalanırken hata%s serbest bırakılırken hatadüzenli ifade eşleştiricisinde hatadüzenli ifade aramasında hata oluştu%s açılırken hata%s okunurken hatainotify olayın okunurken hatagirdi okunurken hata%s eşzamanlanırken hatakomut beklerken hatainotify ve çıktı olayları beklenirken hata%s yazarken hatahata: Düzenli ifade eşleşmesi uzunluğu sıfır: %sDOSYA=%s ile çalıştırılıyor
çıkış=%s argümanı fazlaek işlenen %sfazlalık işlenen %s, -%c ile izin verilmiyor%s erişilemedi%s kurallaştırılamadı%s bağlamını %s için değiştirirken hata oluştu%s grubu %s iken %s olarak değiştirilemedi
%s ögesinin grup üyeliği %s olarak değiştirilemedi
%s kipi %04lo (%s) iken %04lo (%s) olarak değiştirilemedi
%s ögesinin sahipliği değiştirilemedi
%s sahipliği %s iken %s olarak değiştirilemedi
%s ögesinin sahipliği %s olarak değiştirilemedi
%s dizinine chdir başarısız%s, %s konumundan çoğaltılamadı%s kapatılamadıgirdi veriyolu kapatılamadıyeni bir bağlam hesaplanamadıkimi girdi numaraları dönüştürülemedi%s şablonu üzerinden dizin oluşturma başarısız%s şablonu üzerinden dosya oluşturma başarısız%s sabit bağı oluşturulamadı%s => %s sabit bağı oluşturulamadıveriyolu oluşturulamadıgüvenlik bağlamı oluşturma başarısız: %s%s sembolik bağı oluşturulamadı%s -> %s sembolik bağı oluşturulamadışunun için önbellek atılamadı: %s%s genişletilemedi%s bulunamadı%s öznitelikleri alınamadıgeçerli bağlam alınamadımevcut işlemden grup alma başarısız%s kullanıcısı için gruplar alınamadı%s güvenlik içeriği alınamadı%d sinyali için sinyal eylemi alınamadısinyal süreç maskesi alınamadıtümleyici grupları alma başarısız%s dosyasına bakılamadı%s açılamadı%s, yazma için açılamadı%s, yazma için açılamadıyazdırma için '%Lf' değeri hazırlanamadı%s ögesinin yazar bilgileri korunamadı%s ögesinin sahiplik bilgileri korunamadı%s ögesinin izinleri korunamadı%s ögesinin zaman damgaları korunamadıstandart hata yeniden yönlendirilemedi%s kaldırılamadı%s kaldırılamadı: Sembolik bağ izlenmiyor%s dizinini kaldırma başarısızstandart girdi kullanılamaz bir duruma getirilemedi%s için bağlam geri yüklenemediVarsayılan dosya oluşturma durumu eski haline getirilemedibaşlangıç çalışma dizinine geri dönülemedi%s için akış geri sarılamadı%s komutunu çalıştırırken hatakomut çalıştırılamadı: "%s -c %s"%s bileşen güvenlik bağlamını %s için ayarlanamadıDOSYA çevre değişkeni ayarlanamıyor%s için öntanımlı oluşturma bağlamı ayarlanamadı%s için öntanımlı dosya bağlamını ayarlamada hata%s dosyasında öntanımlı dosya bağlamını ayarlamada hatadosya açıklayıcısı metin/ikili kipi ayarlanamadıgrup kimliği ayarlanamadıyerel verisi ayarlanamadıyeni erim ayarlanamadı: %syeni rol ayarlanamadı: %syeni tür ayarlanamadı: %syeni kullanıcı ayarlanamadı: %s%d sinyali için sinyal eylemi ayarlanamadısinyal süreç maskesi ayarlanamadıtümleyici gruplar ayarlanamadı%s güvenlik bağlamını ayarlamada hatakullanıcı kimliği ayarlanamadı%s durumlanamadı%s durumlanamadı: %s atlanıyorO_DIRECT kapatılamadı: %s%s ile çevre güncellenemedi%s için fdatasync başarısızfflush başarısızalan numarası %s pek büyükalan numarası sıfır%s alan ayırıcısına sayılarda ondalık imi gibi davranılıyor%s alan ayırıcısına sayılarda bir grup ayırıcısı gibi davranılıyor%s alan ayırıcısına sayılarda eksi imi gibi davranılıyor%s alan ayırıcısına sayılarda artı imi gibi davranılıyoralanlar 1'den itibaren numaralandırılırilk giren ilk çıkar%d dosyası sıralı bir düzende değildosya işleçleri --files0-from ile birleştirilemezdosya terimleri --print-database (-p) ile birleştirilemezdosya sistemi türü %s hem seçili hem dışlanmışfork sistem çağrısı başarısız%s biçimi %% konumunda biter%s biçimi %% yönergesine sahip değil%s biçimi çok fazla %% yönergesine sahip%s biçimi, bilinmeyen %%%c yönergesine sahipeş genişlikli diziler için biçem dizisi belirtilmeyebilir%s için fsync başarısızfts_close başarısızfts_read başarısız oldufts_read başarısız: %sgöreceli yol oluşturuluyor%s ögesinin yeni öznitelikleri alınıyor%s ögesinin grubu %s olarak korundu
yineleme sayılarını gruplama ve yazdırma anlamsızgruplandırma, --to ile birlikte kullanılamazgruplandırmanın bu yerel üzerinde bir etkisi yokiconv işlevi yokiconv işlevi kullanılabilir değilkimlik=birden çok argümanlı --no-newline yok sayılıyorgirdi yok sayılıyorgirdi yok sayılıyor ve çıktı %s ögesine ekleniyorçevre değişkeni TABSIZE'da bulunan geçersiz sekme boyutu yok sayılıyor: %sçevre değişkeni QUOTING_STYLE'da bulunan geçersiz değer yok sayılıyor: %sçevre değişkeni COLUMNS'da belirtilen geçersiz genişlik değeri yok sayılıyor: %sseçenek olmayan argümanlar yok sayılıyoruyumsuz sekmeinotify kullanılamıyor, yoklamaya geri dönülüyorinotify özkaynakları tükendigirdi dosyası sıralı bir düzende değilgirdi satırı fazla uzuntamsayı taşmasıaygıt arası taşıma başarısız: %s -> %s; hedef kaldırılamadıgeçersiz %s argümanı: %sgeçersiz %s%s argümanı '%s'geçersiz --%s argümanı %sgeçersiz --threshold argümanı '-0'geçersiz giriş/çıkış blok boyutugeçersiz PIDgeçersiz sıfır artış değeri: %sgeçersiz ayar %sgeçersiz argüman %s%2$s için %1$s argümanı geçersiz-S içinde dizi sonunda geçersiz ters eğik çizgigeçersiz gövde numaralama tarzı: %sgeçersiz arabellekleme kipi %s, %s için
geçersiz bayt veya karakter erimigeçersiz bayt/karakter konumu %s%2$s tür dizisi içinde geçersiz karakter '%1$c'geçersiz karakter sınıfı %sgeçersiz parça sayısıgeçersiz bağlam: %shatalı dönüştürmesonekte geçersiz dönüşüm belirleyici: %csonekte geçersiz dönüşüm belirleyici: \%.3ogeçersiz tarih %sgeçersiz tarih biçemi %sgeçersiz azalan erimgeçersiz aygıt %s %sgeçersiz aygıt türü %sgeçersiz alan numarası: %sgeçersiz alan erimigeçersiz alan belirticisi: %sgeçersiz alan değeri %sgeçersiz alan genişliği: %salan belirtecinde geçersiz dosya numarası: %sgeçersiz dosya boyutudönüşüm belirtiminde geçersiz bayraklar: %%%c%cgeçersiz kayan noktalı değer argümanı: %sgeçersiz altbilgi numaralama tarzı: %sgeçersiz biçim %s, yönerge %%[0]['][-][N][.][N]f olmalıdırgeçersiz boşluk genişliği: %sgeçersiz grupgeçersiz grup %sgeçersiz grup listesi %sgeçersiz başlık numaralama tarzı: %sgeçersiz üstbilgi değeri %sgeçersiz girdigeçersiz girdi (uzunluk 4 karakterin katı olmalıdır)geçersiz girdi bayrağıgeçersiz girdi erimigeçersiz tamsayı %sgeçersiz tamsayı argümanıgeçersiz uzunlukgeçersiz uzunluk: %sgeçersiz satır sayısı: %sgeçersiz satır disiplini %sgeçersiz satır numarası alan genişliğigeçersiz satır numarası artışıgeçersiz boş satır sayısıgeçersiz satır numaralama biçemi: %sgeçersiz satır genişliğigeçersiz satır genişliği: %sgeçersiz majör aygıt numarası %sgeçersiz en fazla derinlik %saçmalar arasında geçersiz en fazla değiştirilmemiş istatistik sayısıgeçersiz minör aygıt numarası %sgeçersiz kipgeçersiz kip %sgeçersiz kip: %sgeçersiz sayı',' sonrası geçersiz sayı'-' sonrası geçersiz sayı'.' sonrası geçersiz sayıalan başlangıcında geçersiz sayıgeçersiz bayt sayısıkarşılaştırılacak bayt sayısı geçersizatlanacak bayt sayısı geçersizgeçersiz parça sayısıgeçersiz sütun sayısıatlanacak alan sayısı geçersizgeçersiz satır sayısıgeçersiz geçiş sayısıgeçersiz sanıyi sayısı: %sgeçersiz sayı: %sgeçersiz seçenek -- %cgeçersiz seçenek -- %c; GENİŞLİK yalnızca ilk seçenek olduğu zaman kabul
edilir; bunun yerine -w N kullanıngeçersiz seçenek -- '%c'geçersiz çıktı adresi tabanı '%c': [doxn]'dan bir karakter olmalıdırgeçersiz çıktı bayrağıgeçersiz dolgu değeri %sgeçersiz sayfa erimi %s%s biçiminde geçersiz kesinlikgeçersiz kesinlik: %sbitiş noktası olmayan geçersiz erim: -[c*n] içinde geçersiz '%s' yineleme sayısı-S içinde geçersiz dizilim '\%c'geçersiz nitelikgeçersiz başlangıç satır numarasıgeçersiz durum düzeyigeçersiz sonek %s, dizin ayırıcısı içeriyor%s%s argümanında '%s' geçersiz sonek%s girdisinde geçersiz sonek: %sgirdide geçersiz sonek: %sgeçersiz sonek uzunluğugeçersiz sekme boyutugeçersiz şablon, %s dizin ayırıcısı içeriyorgeçersiz şablon, %s; --tmpdir ile mutlak olmayabilirgeçersiz zaman aralığı %sgeçersiz zaman biçemi %sgeçersiz takip seçeneği --%cgeçersiz tür dizisi %sgeçersiz birim boyutu: %sgeçersiz genel karakter adı \%c%0*xgeçersiz kullanıcıgeçersiz kullanıcı %sgeçersiz genişlikgeçersiz kaydırma boyutugeçersiz sıfır uzunluklu dosya adı%s üzerinde döngüsel işlem yapmak tehlikelidir%s üzerinde döngüsel işlem yapmak tehlikelidir (%s gibi)%lu anahtarının genişliği sıfır ve yok sayılacak%lu anahtarı nümerik ve birden çok alana yayılıyorbüyük girdi değeri %s: olası kesinlik kaybıson=%s dosya adı bileşeni başında '-'öncü boşluklar %lu anahtarında baskın; ayrıca 'b' tanımlayınuzunluk, 8'in katı değilsatır numarası taşması%s için en büyük özet uzunluğu %d bitbellek tükendibellek, %td baytlık girdi arabelleği tarafından tüketildi (%s)bellek, %td baytlık çıktı arabelleği tarafından tüketildi (%s)ileti kuyruğuveri içeren taşınmış dosyaveri içermeyen taşınmış dosyaen düşük --%s argümanı %sayarlanmamış veya uymayan [:upper:] ve/veya [:lower:] ifadesisonekte %% dönüşüm belirleyicisi eksik%s eksikgirdide eksik 'i' soneki: %s (örn. Ki/Mi/Gi)%s sonrası eksik argüman%s için argüman eksikeksik karakter sınıf adı '[::]'sonekte dönüşüm belirleyici eksik%s sonrası hedef dosya işleneni eksikeksik kodlama türüeksik denklik sınıfı karakteri '[==a']dosya işleneni eksikkaçışta onaltılık sayı eksikbayt/karakter konumlarının listesi eksikalanlar listesi eksikeksik işlenen`%s sonrası eksik işlenenkip yalnızca dosya izin bitlerini belirlemeli%s kipi %04lo (%s) iken %04lo (%s) olarak değişti
%s ögesinin kipi %04lo (%s) olarak korundu
çoklu karakter ayırıcısı %sçoklu karakter sekmesi %sçoklu -i seçenekleri belirlendibirden fazla -l veya -t seçeneği belirtilmişçoklu sıkıştırma programları belirlendiçoklu alan belirtimleriçoklu düzey oranıbirden çok sınırlayıcılar belirlendibirden çok çıktı dosyası belirtilmişbirden fazla çıktı biçimi belirtilmişçoklu rastgele kaynaklar belirlendigöreceli çarpım değiştiriciler belirtildiçoklu rollerçoklu karakter ayırıcıları belirtildibirden fazla hedef dizin belirtilmişçoklu türlerçoklu kullanıcılarçoklanmış blok özel dosyasıçoklanmış karakter özel dosyasıçoklanmış dosya--chdir (-C) ile komut belirtilmelidiradlı dosyane sembolik bağ %s ne de imlediği dosya değiştirilmedi
ağ özel dosyasıSHELL çevre değişkeni yok ve kabuk türü seçeneği verilmemiş%s ögesinin sahipliği değişmedi
komut belirtilmemişdönüştürme seçeneği belirtilmedihiçbir dosya sistemi işlenmediüzerinde çalışabilecek dosya kalmadı%s konumundan girdi yokyinelenecek satır yokkullanıcı adı yoksüreç kimliği belirtilmemiş-S dizisi içinde sonlandıran tırnak yokdiziler dökümlenirken tür belirtilemezkullanıcı adı belirtilmemiş; -l kullanırken en az bir tane belirtilmelitamsayı olmayan argümanbir tty değilsallanan sembolik bağ olan %s ögesine yazım yapılamıyorparaleldeki sayılar sıfırdan farklı olmalıdırnümerik sonek başlangıç değeri sonek uzunluğu için pek büyükeskimiş anahtar %s kullanıldı; yerine %s kullanınkapalı%s dosya okunurken ofset taşması%s dizini atlanıyoraçıkyalnızca ${VARNAME} genişlemesi desteklenir, hata konumu: %sdizi2'de yalnızca bir [c*] yineleme yapısı olabiliryalnızca bir aygıt belirtilebiliryalnızca bir liste belirtilebiliraçma başarısız'-%s' seçeneği yok sayıldı'-%s' seçeneği yok sayıldı'-r' seçeneği yalnızca son çare karşılaştırması için geçerlidir--output seçeneği: Bilinmeyen %s alanı--output seçeneği: %s alanı birden çok kez kullanıldı--skip-chdir seçeneği yalnızca YENİKÖK eski %s ise izin veriliröntanımlı biçimde --zero seçeneğine izin verilmezseçenek geçersiz bağlamda kullanıldı --%c%s ve %s seçenekleri birlikte kullanılamaz'-%s' seçenekleri uyumsuz--compare (-C) ve --preserve-timestamps seçenekleri birlikte kullanılamaz--compare (-C) ve --strip seçenekleri birlikte kullanılamaz--print-database ve --print-ls-colors seçenekleri birlikte kullanılamazveya yerel olarak info '(coreutils) %s%s' üzerinden kullanılabilir
çıktı dosyası sonekleri bitmişçıktı biçimi: %s%s dosyasının boyutu genişletilirken taşma%s okunurken taşma%s ögesinin sahipliği korundu
%s ögesinin sahipliği %s olarak korundu
taşan sayfa sayısısayfa genişliği pek darpclmul desteği algılanamadıkapı%s izinleri korunuyor%s ögesinin zaman damgaları korundutüm yinelenen satırları ve yineleme sayılarını yazdırmak anlamsız'%s-%s' ögesinin erim bitiş noktaları ters dizilen sıradaokuma hatasıokuma başarısız%s dizini okunuyorkayıt pek büyük%s veya %s dizinini kaldırma reddediliyor: %s atlanıyornormal boş dosyanormal dosyagirdide sonek reddediliyor: %s (--from kullanmayı düşünün)%s silindi
%s dizini kaldırıldı
dizin kaldırılıyor, %saçılış düzeyisemafor%s sinyali %s komutuna gönderiliyorayırıcı boş bırakılamazsorunu çözmek için LC_ALL='C' olarak ayarlayın%s için bayraklar ayarlanıyor%s izinleri ayarlanıyor%s zamanları ayarlanıyorpaylaşımlı bellek nesnesiatlanacak baytlar + okunacak baytlar çok büyükfarklı bir aygıtta olduğundan %s atlanıyorkopyalandığı sırada değiştirildiği için %s dosyası atlandısoketstandart hatastandart girdistandart girdi kapalıstandart çıktıdurumlama başarısızalan belirtiminde başıboş karakterdizi karşılaştırması başarısızdizi dönüştürümü başarısızsoyma işlemi olağandışı bir biçimde sonlandırıldısınırlandırılmamış satırları susturmak anlamlıdır
	yalnızca alanlarda işlem yaparkensembolik bağsözdizim hatası: %s sonrası ')' bekleniyorsözdizim hatası: %s yerine ')' bekleniyorsözdizim hatası: %s sonrası eksik argümansözdizim hatası: Beklenmedik ')'sözdizim hatası: Beklenmedik argüman %ssistem önyüklemesisekme boyutu 0 olamazsekme boyutunda geçersiz karakter(ler): %ssekme boyutları küçükten büyüğe sıralı olmalısekme durağı çok büyük %ssekme durak değeri pek büyüksekmeler fazla aralı%s konumunu hedefle%s hedefi bir dizin değil%s dizinini hedeflebir dizin kurulurken hedef dizin belirlenemezuçbirim=sına ve/veya [metin sıralaması %s sıralama düzeni kullanılarak gerçekleştirildimetin sıralaması yalın bayt karşılaştırma kullanılarak gerçekleştirildi--binary ve --text seçenekleri sağlama toplamlarını denetlerken anlamsız--compare (-C) seçeneği izin olmayan bitli bir kip belirttiğinizde yok sayılır--ignore-missing seçeneği, yalnızca sağlama toplamlarını doğrularken anlamlı--quiet seçeneği, yalnızca sağlama toplamlarını doğrularken anlamlı--status seçeneği, yalnızca sağlama toplamlarını doğrularken anlamlı--strict seçeneği, yalnızca sağlama toplamlarını doğrularken anlamlı--tag seçeneği, sağlama toplamlarını doğrularken anlamsızdır--warn seçeneği, yalnızca sağlama toplamlarını doğrularken anlamlı--zero seçeneği, sağlama toplamlarını doğrularken desteklenmez[c*] ifadesi dizi2'de yalnızca çeviri yaparken kullanılabilir[c*] yineleme yapısı dizi1'de bulunamaz%s argümanı başında bir '+' eksik
tarihleri belirtmek için bir seçenek kullanıldığında,
seçenek olmayan her argüman '+' ile başlayan bir dizi olmalıdırayraç tek bir karakter olmalıdırizlenen komut çekirdeği dökümlediçoklu bayt grup ayırıcısı bu yerelde desteklenmiyorayrıntılı çıktı seçenekleri ile stty-okuyabilir tarzı çıktı
seçenekleri birlikte kullanılamazkabuk olmayan sözdizim çıktılama seçeneği ve
kabuk sözdizimi seçme birlikte kullanılamazzamanı ayarlamak ve göstermek için bu seçenekler birlikte kullanılamaztarih belirten bu seçenekler birlikte kullanılamazkarşılaştırılan diziler %s ile %s idibir dizin kurulurken strip seçeneği kullanılamaz%s zamanı erim dışı%s şablonunda pek az X varsonekte gereğinden fazla %% dönüşüm belirleyicisi varkümede çok fazla karakterpek fazla girdi satırıpek fazla yinelenen satırçok fazla şablontoplambasamaklandırma başarısız: %syazılmış bellek nesnesigeçerli çalışma dizini kaydı yazılamadıgüvenlik bağlamı %s ayarlanamıyorbeklenmedik hata: fts_info=%d: %s
lütfen %s kişisine bildirinkomuttan bilinmeyen durum (%d)komuttan bilinmeyen durum (=0x%X)çevre değişkeni LS_COLORS'da ayrıştırılamayan değertanımlanamayan --preserve-root argümanı: %sgeçersiz işleyen %stanımlanmamış önek: %saçık:  %2d:%02d,  açık: ???? gün ??:??,  --no-preserver-root seçeneğini kullanarak bu güvenlik tedbirini geçersiz kılınshebang satırlarında seçenek geçirmek için -[v]S kullanınstandart girdiyi %s kullanarak ifade etme dosya sistemi kipinde çalışmazavx2 donanım desteği kullanılıyorpclmul donanım desteği kullanılıyordeğer dönüştürülmek için pek büyük: %sdeğer, yazdırmak için pek büyük: '%Lg' (--to kullanın)%s [-d] için bekliyoralt süreç için bekleniyorşerit bekleniyoruyarı: %s, sıfırla çarpan; demek istenen buysa %s kullanınuyarı: %s: Karakter sabitini izleyen karakter(ler) yok sayıldıuyarı: %s: Bağlam araması başarısızuyarı: %s: Bağlam %s olarak dönüştürülemediuyarı: '.', ':' olmalıuyarı: 'touch %s' eskimiş; 'touch -t %04ld%02d%02d%02d%02d.%02d' kullanınuyarı: --pid=PID bu sistemde desteklenmiyoruyarı: --retry yok sayıldı; --retry yalnızca izlerken yararlıdıruyarı: --retry yalnızca ilk açma için etkilidiruyarı: Dizinin sonunraki kaçılmamış bir ters eğik çizgi geçirilemezuyarı: Biçimin sonunda ters eğik çizgiuyarı: %s kaldırılamıyoruyarı: çekirdek dökümlemelerini devre dışı bırakma başarısızuyarı: standart girdi'yi sonsuza dek takip etmek verimli değildiruyarı: --context yok sayılıyoruyarı: --context yok sayılıyor; bir SELinux etkin çekirdek gerektiriyoruyarı: --context yok sayılıyor; SELinux/SMACK etkin bir çekirdek gerektiriyoruyarı: `%s ile başlayarak fazladan bağımsız değişkenler yok sayıldıuyarı: Başarısız okuma sonrası geçersiz dosya ofsetiuyarı: %s satır numarası, önceki satır numarası ile aynıuyarı: --apparent-size ve -b seçenekleri --inodes ile etkisizuyarı: Güvenlik etiketleme tutacı başarısızuyarı: setitimeruyarı: sigprocmaskuyarı: %s kaynak dizini birden çok kez belirtilmişuyarı: %s kaynak dosyası bir defadan çok belirtilmişuyarı: Özetlemek --max-depth=0 ile aynıuyarı: Belirsiz sekizli kaçış \%c%c%c, 2 baytlık
	sıralama \0%c%c, %c olarak yorumlanıyoruyarı: timer_createuyarı: timer_settimeuyarı: Tanımlanamayan kaçış '\%c'garip dosyaküme1 kısaltılmıyorsa dizi2 boş olamazbir çıktı tarzı belirtildiğinde kipler ayarlanamaztamamlayan karakter sınıflarıyla çeviri yaparken,
dizi2, alan adındaki tüm karakterleri bir tanesine eşlemlemelidirdizi1'in dizi2'den daha uzun olduğu çevirilerde,
sonraki dizi bir karakter sınıfıyla bitmemelidirçeviri yaparken, dizi2'de yer alabilecek karakter sınıfları
'upper' veya 'lower'dırbeyaz körlük%s, yeni oluşturulan %s sembolik linki üzerinden kopyalanmayacak%s sabit bağı %s dizinine oluşturulmayacakyeni oluşturulmuş %s ögesinin üzerine %s yazılamaz--parents kullanıldığında hedef, bir dizin olmalıdır--suffix ile, %s şablonu X ile bitmelidirDOSYA=%s ile, komuttan %d çıkışı: %sDOSYA=%s ile, komuttan %s sinyali: %syazma hatası%s için yazma hatasıyazma başarısız%s konumuna yazılıyor--no-preserve-root seçeneğini kısaltabilirsiniz-c, -t, -u, -l, -r veya bağlam belirtmelisinizbir arabellekleme seçeneği belirtmelisinizbayt, karakter veya alan listesi belirtilmelidirbir göreceli %s ögesini %s ile belirtmelisiniz%s veya %s belirtmelisiniz