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


$
"
'!I5c'!! 5Vo
!;(Kt.%/UiFB+1?q}*)B
Sa
})&)'P,x<:.!Ln&}#$'H"p& $=T%k!'>,U+-!$)Cm8#+A3S2	-	/9Qd{#"*;+U8% F+Z$+#:/!j/'(C+c*%# " C %Y ! ' "  ! !2!Q!,o! !$!)!!"!."P""i""""*"$##*#%N#t#!##/##($ A$3b$-$$$!$1%'P%-x%2%1%.&:&Q&f&&&&)&!&!'(A'j'''"'1'((&(O(
g(<u(((;(= )8^)7))))3*;B*.~****$*$+DB++++++++,24,%g,%,,,,-,-)+-@U-=-@-:.P.!n...,../ /7/;H////!//0 050K0_0(z0 0!00"1()1R1m111*1-122)2B2W2n22222%23$3163#h3"3:33
444"54X4
p47~44444	55*5=5T5o55"5!5566;67T66666667737Q7"i7777 78848M8k8~8]889G9b9v9999!9*9':D:Q:n:/:$:::;);2:;;m;;;;;Q<Kf<<(<<<
==.=L=,Y=9=*=,=->F>*L>Gw>>0>:?,I?9v??/?'?@7.@8f@
@@@@/@-,A
ZA.eAAA#A&A)B:B*PB{B$B(BBBC+C1JC"|CCCC#C$D:DXD$mDD!D!D%DE'+E%SEyEEE"EE&E&F
8F7CF{F=FFFG G:G'MGuGG
GG!G-GCHSH)hH	HH'H"H0H?)I,iII%IKIJ"J4%J4ZJ JJ&J&JK1)K2[K!K-K7K-L$DL(iLLGL9LE3M2yMMM"M-N.NBN\N|NNNN!NNO!O>9O6xO"OBO
P P,PAP-RP2PPP5P	QQ+QBQ	SQ	]QgQQ)QQQQR$$RIR-UR7RRRRRR/	S9SEScS|S#SJS
T$T);T'eTT$TTT*TU7UPUlU	UUU8UU
U.V4:VHoVUVGW>VW5W?W?X8KX=X;X>X3=YqY(Z!+ZEMZNZ[Z>>[@}[[#[<[):\4d\\\/\\],]D]W]]]i]z]]]
]]]*]!]7^ V^"w^3^)^^_(_>_T_.d___0_*_C`_`{```#`B`:;aHvaaaab<bHWb"b+bbJ
c2Uc?c4c@c#>dbd$}d=ddBdH?e4e.e,e<fEVf(fff5f0#g3Tg7gcg$h:h"Qh
th3hGh5hj1ihi_jej0nj,j*j3j(+k&Tk({kkkk
k4k/l(Cl7ll&l llnpn+p]pEqEr_rELst>v
(w6ww6xxyPzz|k~x~ff`ӄ}vy!Z|Ul}xKBPԘr%RzCQg(˫a8KVݴ4Eݷi~H{޽QZ"fb>e6Gy!"*DVRhpt?HOI,On__?.QF-)x*f9.ph`!.
U'w}lWbY[Npji*QpYWV!\*FIDa]UsVhI	V	O"
Dr
g
qPTW7Kd@
]
lB_Xph`U:!_*_QXq6EsTzU9)y8-i<K5 V+R M =#Q$R%2&&d')m-r-./e#13l4
636A 7Eb7L7*7? 8c`8=8R9U9;9:a:;`;:
<ME<:<i<*8=Nc=`=\>]p>I>+?_D?e?A
@QL@_@h@KgAhA]B?zBKBXCg_ChCT0D^D>D_#E[EIE>)FThFIF6GK>GTGZGT:HlHnHlkI`I>9J`xJSJD-KrKj.L;L;LYM<kMTMRMJPNaNQN?OO[OAOC-PEqPWPrQ[QVQ(5RM^R5RmR>PSBSOS@"TJcT8T8T4 UKUUWUDU>VXV6.W7eWUWW^X@XS YtYj:ZZZ)[#*[eN[@[W[OM\+\,\D\d;]V]T]fL^G^[^RW_U_F`OG`\`F`[;aIaUa:7brb[c\bcTcddOyddkjehe7?fgwfRfk2gGgTgF;h;hIhMiQVi]iTjF[jAjdjIIkVk2kVlWtll^jmWm5!ndWnhnH%odnoKop%p8p2qf:qYq2qL.rk{rr}s,tS?t?tNtH"uKku^u@vOWvnvUwTlwWwUxOoxVxVyFmyPygzNmzGzY{O^{_{U|Qd||k|_1}}\@~I~M~b5NVR>a/<=΁6G:6^qNЃ^]~L܄G)Zq̅YQ=_FI_?M0>~CgbỉTo)ĊOm>FH_<JX\@Y@T8UU9XďQRo-UYFh]	CgK:2+*IQaR^ReOe]n[̖\(XUޗ]4ZFE42zT[i^bȚj+EZܛe7aCPCG1ܝ9=72@j77Cj_ʠw?<N\Ek8?<xgCa<A-<o~\+UޱsFXR1aݳC?:C0h3cUCVX?IȹBUa${>Bߺ;"D^$SȻ&&CTjY'eA64޽P-d<[Ͼe+6FȿB;R&]]SqG
Jf,hG0>GM25;~:>D
=HO	[	eox!6	Xb2n59&68ov#%+"?7w=H**HMsWZTt*LA0a1!C?*9jB8 D6e[(^!C1?@6w\3
9A>{C4FS4R"L?@E+3%_7=A7]:%.:%4`R/@:Y:%,(<%e%#==OF44#JX4O:(1cOF+,HX47!0K$h1%!H!j(`)%3O+CI(=4f[1)%C,i5?55Bx
;4L]9x*(&--([<;4a2-AC!+eRHQ-:4BY2B9N	PXC;C)@mC#W3<	,8OP
''#	*!4'Vp~	$ EK @
1W=SdUbon(PPN9XI+:J?W(;L\l}'
=mH**A	NX6_BU/0<m-@UkC[Ga
h{'.
;F-S!!	1	M	i	x											

$$+
:HUat{*?'

B5
x
f

gumut1TX"v

=K?
KVco*UkO8TK1C
Qg@S\J_1h5Nb+'9   !% G  !W!&y!O!g!`X"4"i"X#'#0 $$Q$v$$$$
$F$Y&Th&a&'
''
(((a1(F(F(J!)l)x)&*+	++{,W,,,--.-:-sA- -..-.
!/,/*0#161!L1n15G2X}2|2LS3	33333!4!&4%H4n4466=%64c6.6(6/68 7LY7}7 $9 E9"f99-,:eZ:e:0&;W;_o;;*;<5<#=6==Y>n>'?4B?*w?"?&?s?`@2@"&A5IA,A/AAgBCAC*D!:Dj\D5DDNE+Ea'F&F%F(F$FF$G/kGVGhG[HcHjHHHH~H'LJNtJ7JOJKKlOLqL.M7MDMMOOOmRO"SLrS^SgTTVTFTA?U:U4U.U) V"JV
mVV{VV+VWWWHW.gW0W,WTW2IX|XbX2X42YgYyYaZu}Z'ZK[g[9t[8[:[m"\9\!\e\'R]]z]1]'
^32^:f^.^3^Y_X^_]_I`O_`?`@`>0a=oaIaLa8Db=}bAbDbFBc.c c=c2d.Jd.yd7dFd4'e\e9xe$eEe;f%Yff>f>fGg$eg+g6g#g#h!5h Wh xh'h*h*hHi.`i%iIi!i7!j6Yj7jIjkE1kawkhkKBl`ll.m@:mT{m9m7
nTBnnn nno%+o!Qo3so]o$pB*pHmp=pJp??qIq-qqCrDWrrrr%r!s:s3Vs6s9s6s2tQt3mtCt't
u* uNKuZu3u)v!9v [v+|v+v+v!wE"w?hwQw!wx<0x?mxDxBxW5y-yFy+z,.z.[z)zmzV"{y{N{{{{0|C|0V|!|+||!|*}!>}`}G|}6}}6~\N~~?~!;C]Es*F2+$^7E;R=+B8B82{*3ق<
EJF@׃4CM9'˄F=:Lx.Ņ.!#$E3j<?ۆ:KVFE0/1`-@߈@ 7a--lj99/?iJŊ4NE6Tˋ? 9`.3Ɍd0bQWU=v.
-94g77ԏ7FDE0ѐK.N;}XKS^2=/#SHp.$R
a`[”X0w1Nߕb.U/))A)k1kǗ3+Kw"٘'8cS<E*:e>ǚ4]VsIʛM*b7ŜA)>'h$*N/3O!+(ў!;Xu5Kş%E76}"Jנ$"Gc+.š"3(R({($͢(%:@`($ʣ;(+(Tu}/!H(jE!=Po%ͦ$--F"t,ǧ"B,ZȨ"ި""$*Gr06<%bx!Ϊ ūt٫Nm!+ڬ'@4]*'ͭX<N27-$a=t4-T(sj%0!+@l<}K2J9Dɳ<ϳ~*PYTaHH:d$^Ķ^#63ҷ*91+kB$'+=6iB31-I:w:-!-=TkF=!Eg7@903d6}606HS6<#6$I'nII=SV-m+F*r39*H6$!!.63N|Nd$~a-I3N}_,X3r44];Y(-LJL!+B2<uQZD_K;+,QXCY@H9Ie*45!<4[	,53'1WYj3BP!1!B\bq],w.	;3=Eq--!/NQBUYfv'L)9/i'-jFFb:5$)?i-|=?((Q!p7lfnWZ`<\"SFTToTRSlQQd<5<roWwNTO")c4U>I.0"_!#4!HjHr@H8E:~56,&%Sy'b(Km5E7{76."]QZn
3y'k?{?C2?jrNd,UzJb$8S*_fl;^JJE0cvD1BEBG9}M6-kCpN o~afOb>UdGSOPf!IV
TdUJFZ+`6OGO/@x0i3$m?Ah&
Ahld/WiCq:W*vdsg'"-r%l]vW`]LV7QRSK`sY~y_Hov&7
6Z=r]@#y3mn1K|>j	q%Q{!|.&R;A?W:nz:Hz2pYF@anzfJ8OB(=SMuNq,xeV
;#	LWh
X6tBmM+1INuh/Oq2hjljDVR,(%	p5Y?j:N}%5NJ@}n@Kby{$J+ b_;6{U@D&L%1IZ%PHpq^,+)V#;e)bS*2ivr}kr$}EQlY_ncF+H<!|6pia%Igf7tI[EsTH	;`~vE|&^Cyc)-<h<.'?8d`\F"5uasakMxeF-za xPcZ9]9IJQBwMZX\
8Qg}lk~3GR'{~0uwUrKy=^4;
LU\
fg\X~CZ7I>Mfx =G|+D
C}Z][$(V.X4
z/*P pJy&D[)
<{f;3-ro!k30!'tPh8[o)E*(-Al^j.N}w7.3bOq=[zbb@!3MBoTmv*~gU0HZw"~C_
gO_<]AR^zp{<E$TpazE#6?Q7c!
L[U@Jo,,9O4-0>dkYF>*Lq\OxmKl2GMt?XR
U)1-(k6/1HS%0AmeN.>G^ y}]m$$9"Yi[Z(gXxwKSQJE	Y`+Bt;DF4Xd#,=8Bq1T_n5F>
w0.oe1k7*1&JD89+`f!$T|kbcS5
GfD P :d>?B{	ECe&Ca2Wi{h~<R8I|^(0t]P"T/(_cSf9/Kv<W:X9
#Ly6us9)7e""IUR45#'g>WbnVwntjA2\Fuv|"Lsspr',B	2=*Nr82cl!i3G`HNC	PA uQ'coVemS5da'#P4V/iM=:sT4j:DTx-4^,Y[_otjd.w)\?5\uUKG


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


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


Traditional format specifications may be intermixed; they accumulate:

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

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

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

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

  STRING : REGEXP   anchored pattern match of REGEXP in STRING

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

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

# users=%td

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

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

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

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

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

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

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

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

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

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

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

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

Any attempt to remove a file whose last file name component is '.' or '..'
is rejected with a diagnostic.

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

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

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

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

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

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

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

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

Combination settings:

Comparisons honor the rules specified by 'LC_COLLATE'.

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

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

DIGEST determines the digest algorithm and default output format:
  sysv      (equivalent to sum -s)
  bsd       (equivalent to sum -r)
  crc       (equivalent to cksum)
  crc32b    (only available through cksum)
  md5       (equivalent to md5sum)
  sha1      (equivalent to sha1sum)
  sha2      (equivalent to sha{224,256,384,512}sum)
  sha3      (only available through cksum)
  blake2b   (equivalent to b2sum)
  sm3       (only available through cksum)


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

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

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

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


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

Each FLAG symbol may be:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Exit status 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:
  124  if COMMAND times out, and --preserve-status is not specified
  125  if the timeout command itself fails
  126  if COMMAND is found but cannot be invoked
  127  if COMMAND cannot be found
  137  if COMMAND (or timeout itself) is sent the KILL (9) signal (128+9)
  -    the exit status of COMMAND otherwise

Exit status:
  125  if the %s command itself fails
  126  if COMMAND is found but cannot be invoked
  127  if COMMAND cannot be found
  -    the exit status of COMMAND otherwise

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

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

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

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

SIZE may be followed by the following multiplicative suffixes:

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

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

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

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

Each CONV symbol may be:


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

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

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


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

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

Output settings:

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

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

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

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

Read standard input if FILE is -

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

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

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

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

STYLE is one of:

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

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

Options are:


Special characters:

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

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

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


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

The sums are computed as described in %s.

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

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

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

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

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

  %s ./-foo

UNIT options:

UPDATE controls which existing files in the destination are replaced.
'all' is the default operation when an --update option is not specified,
and results in all existing files in the destination being replaced.
'none' is like the --no-clobber option, in that no files in the
destination are replaced, and skipped files do not induce a failure.
'none-fail' also ensures no files are replaced in the destination,
but any skipped files are diagnosed and induce a failure.
'older' is the default operation when --update is specified, and results
in files being replaced if they're older than the corresponding source file.

Unless -t CHAR is given, leading blanks separate fields and are ignored,
else fields are separated by CHAR.  Any FIELD is a field number counted
from 1.  FORMAT is one or more comma or blank separated specifications,
each being 'FILENUM.FIELD' or '0'.  Default FORMAT outputs the join field,
the remaining fields from FILE1, the remaining fields from FILE2, all
separated by CHAR.  If FORMAT is the keyword 'auto', then the first
line of each file determines the number of fields output for each line.

Important: FILE1 and FILE2 must be sorted on the join fields.
E.g., use "sort -k 1b,1" if 'join' has no options,
or use "join -t ''" if 'sort' has no options.
Comparisons honor the rules specified by 'LC_COLLATE'.
If the input is not sorted and some lines cannot be joined, a
warning message will be given.

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

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

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

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

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

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

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

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

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

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

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

Your shell may have its own version of %s, which usually supersedes
the version described here.  Please refer to your shell's documentation
for details about the options it supports.
        ???      --additional-suffix=SUFFIX
         append an additional SUFFIX to file names
      --attributes-only
         don't copy the file data, just the attributes
      --author
         with -l, print the author of each file
      --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-copy
         do not copy if renaming fails
      --no-preserve-root
         do not treat '/' specially
      --no-preserve-root
         do not treat '/' specially (the default)
      --no-preserve=ATTR_LIST
         don't preserve the specified attributes
      --no-sync
         do not invoke sync before getting usage info (default)
      --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 '/'
      --preserve[=ATTR_LIST]
         preserve the specified attributes
      --print-ls-colors
         output fully escaped colors for display
      --quiet
         don't print OK for each successfully verified file
      --random-source=FILE  get random bytes from FILE
      --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
      --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
   cols N        tell the kernel that the terminal has N columns
 * columns N     same as cols N
   cooked        same as brkint ignpar istrip icrnl ixon opost isig
                 icanon, eof and eol characters to their default values
   -cooked       same as raw
   crt           same as %s
   csN           set character size to N bits, N in [5..8]
   dec           same as %s intr ^c erase 0177
                 kill ^u
   ek            erase and kill characters to their default values
   evenp         same as parenb -parodd cs7
   -evenp        same as -parenb cs8
   eof CHAR      CHAR will send an end of file (terminate the input)
   eol CHAR      CHAR will end the line
   erase CHAR    CHAR will erase the last character typed
   intr CHAR     CHAR will send an interrupt signal
   kill CHAR     CHAR will erase the current line
   ispeed N      set the input speed to N
   litout        same as -parenb -istrip -opost cs8
   -litout       same as parenb istrip opost cs7
   min N         with -icanon, set N characters minimum for a completed read
   ospeed N      set the output speed to N
   nl            same as %s
   -nl           same as %s
   oddp          same as parenb parodd cs7
   -oddp         same as -parenb cs8
   [-]parity     same as [-]evenp
   pass8         same as -parenb -istrip cs8
   -pass8        same as parenb istrip cs7
   quit CHAR     CHAR will send a quit signal
   raw           same as -ignbrk -brkint -ignpar -parmrk -inpck -istrip
                 -inlcr -igncr -icrnl -ixon -ixoff -icanon -opost
                 -isig%s min 1 time 0
   -raw          same as cooked
   rows N        tell the kernel that the terminal has N rows
   size          print the number of rows and columns according to the kernel
   sane          same as cread -ignbrk brkint -inlcr -igncr icrnl
                 icanon iexten echo echoe echok -echonl -noflsh
                 %s
                 %s
                 %s,
                 all special characters to their default values
   speed         print the terminal speed
   time N        with -icanon, set read timeout of N tenths of a second
   start CHAR    CHAR will restart the output after stopping it
   stop CHAR     CHAR will stop the output
   susp CHAR     CHAR will send a terminal stop signal
  %%      a single %
  %b      ARGUMENT as a string with '\' escapes interpreted,
          except that octal escapes should have a leading 0 like \0NNN
  %q      ARGUMENT is printed in a format that can be reused as shell input,
          escaping non-printable characters with the POSIX $'' syntax

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

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

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

  ( EXPRESSION )             value of EXPRESSION
  - +FORMAT (e.g., +%H:%M) for a 'date'-style format
  -1
         list one file per line
  -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
  -E, --canonicalize           all but the last component must exist (default)
  -F
         same as --follow=name --retry
  -F, --classify[=WHEN]
         append indicator (one of */=>@|) to entries WHEN
  -F, --file=DEVICE  open and use DEVICE instead of standard input
  -F, --flag-truncation=STRING   use STRING for flagging line truncations.
                                 The default is '/'
  -G FILE     FILE exists and is owned by the effective group ID
  -G, --groups
         print all group IDs
  -G, --traditional              behave more like System V 'ptx'
  -H
         equivalent to --dereference-args (-D)
  -H
         follow command-line symbolic links in SOURCE
  -H, --heading     print line of column headings
  -H, --si
         print sizes in powers of 1000 (e.g., 1.1G)
  -I, --ignore=PATTERN
         do not list implied entries matching shell PATTERN
  -L FILE     FILE exists and is a symbolic link (same as -h)
  -L, --dereference
         always follow symbolic links in SOURCE
  -L, --dereference
         dereference all symbolic links
  -L, --dereference
         follow links
  -L, --logical
         dereference TARGETs that are symbolic links
  -L, --logical                resolve '..' components before symlinks
  -L, --max-line-length
         print the maximum display width
  -M, --macro-name=STRING        macro name to use instead of 'xx'
  -M, --month-sort
         compare (unknown) < 'JAN' < ... < 'DEC'
  -N FILE     FILE exists and has been modified since it was last read
  -N, --literal
         print entry names without quoting
  -N, --read-bytes=BYTES
         limit dump to BYTES input bytes
  -O FILE     FILE exists and is owned by the effective user ID
  -O, --format=roff              generate output as roff directives
  -P
         do not traverse any symbolic links

  -P, --no-dereference
         don't follow any symbolic links (this is the default)
  -P, --physical
         make hard links directly to symbolic links
  -P, --physical               resolve symlinks as encountered (default)
  -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
         count characters rather than columns
  -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
         same as -a -U
  -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 each symbolic link, rather than the referent
  -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
         like --block-size=1K
  -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                only hostname and user associated with standard input
  -m, --canonicalize-missing   no path components need exist or be a directory
  -m, --chars
         print the character counts
  -m, --machine            print the machine hardware name
  -m, --merge
         merge already sorted files; do not sort
  -m, --mode=MODE
         set file mode (as in chmod), not a=rwx - umask
  -m, --mode=MODE
         set permission mode (as in chmod), instead of rwxr-xr-x
  -n
         (ignored)
  -n, --digits=DIGITS
         use specified number of digits instead of 2
  -n, --head-count=COUNT    output at most COUNT lines
  -n, --iterations=N
         overwrite N times instead of the default (%d)
  -n, --name
         print a name instead of a number, for -u,-g,-G
  -n, --no-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
  -o, --owner=OWNER
         set ownership (super-user only)
  -p
         operate in a more appropriate MODE with pipes
  -p
         same as --preserve=mode,ownership,timestamps
  -p 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, --real
         print the real ID instead of the effective ID, with -u,-g,-G
  -r, --reference=FILE
         use this file's times instead of current time
  -r, --reference=RFILE  base size on RFILE
  -r, --references               first field of each line is a reference
  -r, --regex              interpret the separator as a regular expression
  -r, --relative
         with -s, create links relative to link location
  -r, --repeat              output lines can be repeated
  -r, --reverse
         reverse order while sorting
  -r, --reverse
         reverse the result of comparisons
  -r, --role=ROLE
         set role ROLE in the target security context
  -r, --role=ROLE    role
  -r, --runlevel    print current runlevel
  -s FILE     FILE exists and has a size greater than zero
  -s, --kernel-name        print the kernel name
  -s, --number-separator=STRING   add STRING after (possible) line number
  -s, --only-delimited
         do not print lines not containing delimiters
  -s, --separator=STRING
         use STRING to separate numbers (default: \n)
  -s, --separator=STRING   use STRING as the separator instead of newline
  -s, --set=STRING
         set time described by STRING
  -s, --short       print only name, line, and time (default)
  -s, --size
         print the allocated size of each file, in blocks
  -s, --size=N
         shred this many bytes (suffixes like K, M, G accepted)
  -s, --size=SIZE        set or adjust the file size by SIZE bytes
  -s, --skip-chars=N
         avoid comparing the first N characters
  -s, --split-only
         split long lines, but do not refill
  -s, --squeeze-blank      suppress repeated empty output lines
  -s, --stable
         stabilize sort by disabling last-resort comparison
  -s, --strip
         strip symbol tables
  -s, --strip, --no-symlinks   don't expand symlinks
  -s, --suffix=SUFFIX
         remove a trailing SUFFIX; implies -a
  -s, --summarize
         display only a total for each argument
  -s, --symbolic
         make symbolic links instead of hard links
  -s, --symbolic-link
         make symbolic links instead of copying
  -s, --sysv
         use System V sum algorithm, use 512 bytes blocks
  -t
         sort by time, newest first; see --time
  -t                       equivalent to -vT
  -t FD       file descriptor FD is opened on a terminal
  -t, --field-separator=SEP
         use SEP instead of non-blank to blank transition
  -t, --format=TYPE
         select output format or formats
  -t, --table
         print a table of signal information
  -t, --tabs=N
         have tabs N characters apart instead of 8 (enables -a)
  -t, --tabs=N
         have tabs N characters apart, not 8
  -t, --tagged-paragraph
         indentation of first line different from second
  -t, --target-directory=DIRECTORY
         copy all SOURCE arguments into DIRECTORY
  -t, --target-directory=DIRECTORY
         move all SOURCE arguments into DIRECTORY
  -t, --terse
         print the information in terse form
  -t, --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
         equivalent to --update[=older].  See below
  -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=NUMBER             output width in columns, reference excluded
  -w, --width=WIDTH
         maximum line width (default of 75 columns)
  -w, --width=WIDTH
         use WIDTH columns instead of 80
  -w, --words
         print the word counts
  -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
  -z, --elide-empty-files
         suppress empty output files
  -z, --zero
         add a final overwrite with zeros to hide shredding
  -z, --zero                   end each output line with NUL, not newline
  -z, --zero-terminated     line delimiter is NUL, not newline
  CONTEXT            Complete security context
  FILE1 -ef FILE2   FILE1 and FILE2 have the same device and inode numbers
  FILE1 -nt FILE2   FILE1 is newer (modification date) than FILE2
  FILE1 -ot FILE2   FILE1 is older than FILE2
  File: "%n"
    ID: %-8i Namelen: %-7l Type: %T
Block size: %-10s Fundamental block size: %S
Blocks: Total: %-10b Free: %-10f Available: %a
Inodes: Total: %-10c Free: %d
  File: %N
  Size: %-10s	Blocks: %-10b IO Block: %-6o %F
  INTEGER1 -eq INTEGER2   INTEGER1 is equal to INTEGER2
  INTEGER1 -ge INTEGER2   INTEGER1 is greater than or equal to INTEGER2
  INTEGER1 -gt INTEGER2   INTEGER1 is greater than INTEGER2
  INTEGER1 -le INTEGER2   INTEGER1 is less than or equal to INTEGER2
  INTEGER1 -lt INTEGER2   INTEGER1 is less than INTEGER2
  INTEGER1 -ne INTEGER2   INTEGER1 is not equal to INTEGER2
  Processes in
an uninterruptible sleep state also contribute to the load average.
  [:graph:]       all printable characters, not including space
  [:lower:]       all lower case letters
  [:print:]       all printable characters, including space
  [:punct:]       all punctuation characters
  [:space:]       all horizontal or vertical whitespace
  [:upper:]       all upper case letters
  [:xdigit:]      all hexadecimal digits
  [=CHAR=]        all characters which are equivalent to CHAR
  \0NNN   byte with octal value NNN (1 to 3 digits)
  \xHH    byte with hexadecimal value HH (1 to 2 digits)
  \NNN    byte with octal value NNN (1 to 3 digits)
  \xHH    byte with hexadecimal value HH (1 to 2 digits)
  \uHHHH  Unicode (ISO/IEC 10646) character with hex value HHHH (4 digits)
  \UHHHHHHHH  Unicode character with hex value HHHHHHHH (8 digits)
  \\      backslash
  \a      alert (BEL)
  \b      backspace
  \c      produce no further output
  \e      escape
  \f      form feed
  \n      new line
  \r      carriage return
  \t      horizontal tab
  \v      vertical tab
  \v              vertical tab
  CHAR1-CHAR2     all characters from CHAR1 to CHAR2 in ascending order
  [CHAR*]         in ARRAY2, copies of CHAR until length of ARRAY1
  [CHAR*REPEAT]   REPEAT copies of CHAR, REPEAT octal if starting with 0
  [:alnum:]       all letters and digits
  [:alpha:]       all letters
  [:blank:]       all horizontal whitespace
  [:cntrl:]       all control characters
  [:digit:]       all digits
  ascii     from EBCDIC to ASCII
  ebcdic    from ASCII to EBCDIC
  ibm       from ASCII to alternate EBCDIC
  block     pad newline-terminated records with spaces to cbs-size
  unblock   replace trailing spaces in cbs-size records with newline
  lcase     change upper case to lower case
  ucase     change lower case to upper case
  sparse    try to seek rather than write all-NUL output blocks
  swab      swap every pair of input bytes
  sync      pad every input block with NULs to ibs-size; when used
            with block or unblock, pad with spaces rather than NULs
  auto       accept optional single/two letter suffix:
               1K = 1000, 1k = 1000,
               1Ki = 1024,
               1M = 1000000,
               1Mi = 1048576,
  binary    use binary I/O for data
  bs=BYTES        read and write up to BYTES bytes at a time (default: 512);
                  overrides ibs and obs
  cbs=BYTES       convert BYTES bytes at a time
  cio       use concurrent I/O for data
  conv=CONVS      convert the file as per the comma separated symbol list
  count=N         copy only N input blocks
  d[SIZE]    signed decimal, SIZE bytes per integer
  f[SIZE]    floating point, SIZE bytes per float
  o[SIZE]    octal, SIZE bytes per integer
  u[SIZE]    unsigned decimal, SIZE bytes per integer
  x[SIZE]    hexadecimal, SIZE bytes per integer
  direct    use direct I/O for data
  directory  fail unless a directory
  dsync     use synchronized I/O for data
  excl      fail if the output file already exists
  nocreat   do not create the output file
  notrunc   do not truncate the output file
  noerror   continue after read errors
  fdatasync  physically write output file data before finishing
  fsync     likewise, but also write metadata
  fullblock  accumulate full blocks of input (iflag only)
  ibs=BYTES       read up to BYTES bytes at a time (default: 512)
  iec        accept optional single letter suffix:
               1K = 1024, 1k = 1024,
               1M = 1048576,
               ...
  iec-i      accept optional two-letter suffix:
               1Ki = 1024, 1ki = 1024,
               1Mi = 1048576,
               ...
  if=FILE         read from FILE instead of standard input
  iflag=FLAGS     read as per the comma separated symbol list
  noatime   do not update access time
  nocache   Request to drop cache.  See also oflag=sync
  noctty    do not assign controlling terminal from file
  nofollow  do not follow symlinks
  nolinks   fail if multiply-linked
  nonblock  use non-blocking I/O
  none       no auto-scaling is done; suffixes will trigger an error
  none, off       never make backups (even if --backup is given)
  numbered, t     make numbered backups
  existing, nil   numbered if numbered backups exist, simple otherwise
  simple, never   always make simple backups
  obs=BYTES       write BYTES bytes at a time (default: 512)
  of=FILE         write to FILE instead of standard output
  oflag=FLAGS     write as per the comma separated symbol list
  si         accept optional single letter suffix:
               1k = 1000, 1K = 1000,
               1M = 1000000,
               ...
  status=LEVEL    The LEVEL of information to print to standard error;
                  'none' suppresses everything but error messages,
                  'noxfer' suppresses the final transfer statistics,
                  'progress' shows periodic transfer statistics
  sync      likewise, but also for metadata
  text      use text I/O for data
 %H:%M:%S   (backup: %s) * [-]LCASE      same as [-]lcase
 * [-]cdtrdsr    enable DTR/DSR handshaking
 * [-]cmspar     use "stick" (mark/space) parity
 * [-]crtscts    enable RTS/CTS handshaking
 * [-]ctlecho    echo control characters in hat notation ('^c')
 * [-]decctlq    same as [-]ixany
 * [-]drain      wait for transmission before applying settings (%s by default)
 * [-]echoctl    same as [-]ctlecho
 * [-]echoke     same as [-]crtkill
 * [-]echoprt    echo erased characters backward, between '\' and '/'
 * [-]extproc    enable "LINEMODE"; useful with high latency links
 * [-]flusho     discard output
 * [-]imaxbel    beep and do not flush a full input buffer on a character
 * [-]iuclc      translate uppercase characters to lowercase
 * [-]iutf8      assume input characters are UTF-8 encoded
 * [-]ixany      let any character restart output, not only start character
 * [-]lcase      same as xcase iuclc olcuc
 * [-]ocrnl      translate carriage return to newline
 * [-]ofdel      use delete characters for fill instead of NUL characters
 * [-]ofill      use fill (padding) characters instead of timing for delays
 * [-]olcuc      translate lowercase characters to uppercase
 * [-]onlcr      translate newline to carriage return-newline
 * [-]onlret     newline performs a carriage return
 * [-]onocr      do not print carriage returns in the first column
 * [-]prterase   same as [-]echoprt
 * [-]tostop     stop background jobs that try to write to the terminal
 * [-]xcase      with icanon, escape with '\' for uppercase characters
 * bsN           backspace delay style, N in [0..1]
 * crN           carriage return delay style, N in [0..3]
 * crtkill       kill all line by obeying the echoprt and echoe settings
 * -crtkill      kill all line by obeying the echoctl and echok settings
 * discard CHAR  CHAR will toggle discarding of output
 * dsusp CHAR    CHAR will send a terminal stop signal once input flushed
 * eol2 CHAR     alternate CHAR for ending the line
 * ffN           form feed delay style, N in [0..1]
 * line N        use line discipline N
 * lnext CHAR    CHAR will enter the next character quoted
 * nlN           newline delay style, N in [0..1]
 * rprnt CHAR    CHAR will redraw the current line
 * status CHAR   CHAR will send an info signal
 * swtch CHAR    CHAR will switch to a different shell layer
 * tabN          horizontal tab delay style, N in [0..3]
 * tabs          same as tab0
 * -tabs         same as tab3
 * vtN           vertical tab delay style, N in [0..1]
 * werase CHAR   CHAR will erase the last word typed
 ??:????   TTY context=%s egid=%ju euid=%ju gid=%ju groups= old  on repetition %jd
% 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y, R, Q.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Print the user's login name.

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

Print value of a symbolic link or canonical file name

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

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

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

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

Run COMMAND, ignoring hangup signals.

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

A FILE argument that does not exist is created.

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

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

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

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

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

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

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

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

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

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

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

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

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



BYTES が 0x か 0X で始まっている場合は 16 進数と解釈されます。
BYTES には以下の倍数接尾辞を後ろに付けることができます。
  b    512
  KB   1000
  K    1024
  MB   1000*1000
  M    1024*1024
G, T, P, E, Z, Y, R, Q についても同様です。
二進接頭辞も使用することもできます: KiB=K, MiB=M など。


TYPE は次のいずれか一つ以上を指定します:
  a          文字名。最上位ビットは無視される
  c          表示可能文字または \ エスケープ文字


古い書式指定を混合させてもかまいません。両方が使用されます。

  ( EXPRESSION )               EXPRESSION が真
  ! EXPRESSION                 EXPRESSION が偽
  EXPRESSION1 -a EXPRESSION2   EXPRESSION1 と EXPRESSION2 の両方が真
  EXPRESSION1 -o EXPRESSION2   EXPRESSION1 と EXPRESSION2 のいずれかが真

  ARG1 * ARG2       ARG1 と ARG2 の掛け算
  ARG1 / ARG2       ARG1 の ARG2 による割り算
  ARG1 % ARG2       ARG1 の ARG2 による割り算のあまり

  ARG1 + ARG2       ARG1 と ARG2 の足し算
  ARG1 - ARG2       ARG1 と ARG2 の引き算

  ARG1 < ARG2       ARG1 が ARG2 より小さい
  ARG1 <= ARG2      ARG1 が ARG2 より小さいか等しい
  ARG1 = ARG2       ARG1 が ARG2 と等しい
  ARG1 != ARG2      ARG1 が ARG2 と等しくない
  ARG1 >= ARG2      ARG1 が ARG2 より大きいか等しい
  ARG1 > ARG2       ARG1 が ARG2 より大きい

  STRING : REGEXP   STRING における正規表現 REGEXP によるパターン照合

  match STRING REGEXP        STRING : REGEXP と同じ
  substr STRING POS LENGTH   STRING の部分文字列を返す。 POS は 1 から始まる
  index STRING CHARS         STRING から CHARS が見つかった場所を返す。
                               見つからなければ 0
  length STRING              STRING の長さ

  b      ブロック型(バッファリングされる)スペシャルファイルを作成
  c, u   キャラクタ型(バッファリングされない)スペシャルファイルを作成
  p      名前つきパイプを作成

# users=%td

[ では --help および --version オプションを使えますが、test では
使えません。 test はそれらを空でない STRING として扱います。

'uniq' は隣接してない限り重複した行を検出しません。
最初に入力をソートしてください。または 'uniq' を使用せず
'sort -u' を使用することもできます。

--terse は以下の FORMAT と等価です。
    %s
フィールドとは空白 (通常はスペース、タブ、その両方) が一つ以上連続し、
その後に空白以外の文字が続いているものです。
文字の前のフィールドはスキップされます。

軽量 'finger' プログラムです。ユーザ情報を表示します。
utmp ファイルは %s が使用されます。

- だけを指定した場合は -i を指定したことになります。
COMMAND が指定されなければ最終的な環境変数を表示します。

ARRAY は文字列で指定します。多くの場合その文字自身を表します。
解釈される文字の並びは以下の通りです:

  \NNN            文字の 8 進数表現(1 から 3 個の 8 進数)
  \\              バックスラッシュ
  \a              ベル
  \b              バックスペース
  \f              フォームフィード
  \n              改行
  \r              復帰
  \t              水平タブ

ATTR_LIST はコンマ区切りの属性のリストです。
指定できる属性は、パーミッションを表す 'mode' (ACL や xattr のパーミッションを含む)、
ユーザーとグループを表す 'ownership'、ファイルのタイムスタンプを表す 'timestamps'、
ハードリンクを表す 'links'、セキュリティーコンテキストを表す 'context'、
すべての属性を表す 'all' です。

どのタイプの場合も z を接尾辞として付けると、各行の後ろに表示可能文字が
出力されます。

フラグの後にオプションでフィールド幅を 10 進数で指定できます。
その後にオプションで以下のいずれかの修飾辞を指定できます。
E はロケールで代替の表記が利用可能な時には代替表記を利用します。
O はロケールで代替の数字が利用可能なときには代替数字を利用します。

表示する日付を指定するすべてのオプション (--date, --file, --reference,
--resolution) は同時に使用できません。

EXPRESSION が省略されるとデフォルトでは偽 (false) になります。それ以外
の場合は EXPRESSION が真 (true) か偽 (false) かによって終了ステータス
が設定されます。これは次のうちの一つになります:

'.'や'..'で終わるファイルを削除しようとするならは警告で拒否されます。

特別な場合として、cp は -f と -b オプションが与えられ、SOURCE と DEST が
同一ファイルである時は、SOURCE のバックアップを作成します。

多くの演算子はシェルに渡すためにエスケープするか引用符で囲む必要があります。
比較は ARG がいずれも数値であれば大きさにより、それ以外の場合には辞書順に
より行われます。パターン照合は、 \( と \) の間、 もしくはヌル文字に一致した
文字列を返します。 \( と \) を使わない場合は一致する文字数か 0 を返します。

バイナリ値の -a や -o は本質的に曖昧です。代わりに
'test EXPR1 && test EXPR2' や 'test EXPR1 || test EXPR2' を使用してください。

TYPE が b, c, u の場合は MAJOR と MINOR の両方を指定しなければいけません。
TYPE が p の場合は省略しなければなりません。 MAJOR と MINOR が 0x または 0X
で始まる場合には 16 進数として解釈されます。 0 で始まる場合には8 進数で、
それ以外は10 進数で解釈されます。 TYPE は次の通りです:

デフォルトまたは--reflink=autoなら、軽量コピーを試します。成功の場合、
データブロックが変更された場合にのみコピーされます。失敗の場合、通常の
コピーにフォールバックされます。--reflink[=always]ならCoWがないなら失敗します。
--reflink=neverならいつでも通常のコピーを実行します。

デフォルトでは rm はディレクトリを削除しません。ディレクトリをその中身全てを
含めて削除するときには --recursive (-r または -R) オプションを使用してください。

デフォルトでは、SOURCE スパースファイルは発見的手法で検出され、対応する
DEST ファイルはスパースファイルとして作成されます。これは --sparse=auto
が選択されたときの動作です。--sparse=always を指定した場合、SOURCE ファ
イルに値が 0 のバイトが十分な長さ含まれている場合には DEST がスパース
ファイルとして作成されます。スパースファイルの作成を禁止する場合は
--sparse=never を使用してください。

塊 (CHUNKS) には以下を指定できます:
  N      入力サイズに基づいて N 個のファイルに分割する
  K/N     N 個中 K 番目を標準出力に出力する
  l/N     N 個のファイルに分割すが、行やレコード内の分割は行わない
  l/K/N   N 個中 K 番目を標準出力に出力するが、行やレコード内の分割は行わない
  r/N     'l' と同様だがラウンドロビン分割をする
  r/K/N   上記と同様だが N 個中 K 番目を標準出力に出力する

組合せ設定:

比較の際には 'LC_COLLATE' で指定されたルールが使用されます。

printf(1) の方の使用を考えてください。
こちらにはオプション風の文字列の出力に関する問題が防げます。

制御設定:
   [-]clocal     モデム制御信号を無効に
   [-]cread      入力の受信を許可

DIGEST で、ダイジェストアルゴリズムとデフォルトの出力形式が決定されます:
  sysv      (sum -s と等価)
  bsd       (sum -r と等価)
  crc       (cksum と等価)
  md5       (md5sum と等価)
  sha1      (sha1sum と等価)
  sha2      (sha{224,256,384,512}sum と等価)
  sha3      (cksumのみ使用可能)
  blake2b   (b2sum と等価)
  sm3       (cksum の場合のみ使用可能)


DURATION は浮動小数点数で指定し、追加で次の接尾辞を指定できます:
秒を表す 's' (デフォルト)、分を表す 'm'、時間を表す 'h'、日を表す 'd'。
DURATION に 0 が指定された場合、タイムアウトは無効になります。

デフォルトのオプションは
-bt -d'\:' -fn -hn -i1 -l1 -n'rn' -s<TAB> -v1 -w6 です。

CC は 2 文字で、セクション区切りを指定するために使用されます。
2 番目の文字が指定されない場合には暗黙に ':' が指定されます。
GNU 拡張として、3 文字以上の値を指定したり、空文字列 (-d '') を
指定してセクション検索を無効にすることもできます。

--remove (-u) が指定されたときには FILE を削除します。デフォルトでは
ファイルを削除しません。これは /dev/hda のようなデバイスファイルを操作
するのが一般的であり、それらのファイルは通常削除するべきではないためです。
通常ファイルを操作する時は、ほとんどの人が --remove オプションを使用します。
オプションの HOW パラメーターは、
ディレクトリエントリーをどのように削除するかを指定します。
'unlink' => 標準の unlink コールを使用する。
'wipe' => それに加えて、最初に名前のバイトの難読化を行う。
'wipesync' => それに加えて、難読化した各バイトをデバイスに sync する。
デフォルトモードは 'wipesync' ですが、この操作は非常に時間がかかります。


--block-size で指定した SIZE, %s_BLOCK_SIZE, BLOCK_SIZE およびBLOCKSIZE 環境変数
のうち、最初に指定されているサイズ単位で値が表示されます。それ以外の場合、デフォ
ルトの単位は 1024 バイトになります (POSIXLY_CORRECT が設定されている場合 512 バ
イト)。

各 FLAG シンボルは以下の通りです:

  append    追加モード (出力に対してのみ意味がある。 conv=notrunc を推奨)

各 MODE の形式は '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+' です。

各 PATTERN には以下を指定できます。
  行番号                   指定行の直前まで (その行は含まれない) をコピーする
  /正規表現/[オフセット]   正規表現に一致する行の直前までをコピーする
  %正規表現%[オフセット]   正規表現に一致する行の直前までをスキップする
  {整数値}                 直前のパターンを指定した数だけ繰り返す
  {*}                      直前のパターンを可能なだけ繰り返す

行のオフセットは整数値で、その前に '+' か '-' を付けることができます。

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

例:
  %s -12 file1 file2  file1 と file2 の両方に存在する行のみを表示する
  %s -3  file1 file2  file1 にのみ存在する行と file2 のみに存在する行を表示する

例:
  %s /usr/bin/          -> "/usr"
  %s dir1/str dir2/str  -> "dir1" の後に "dir2"
  %s stdio.h            -> "."

例:
  %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" の後に "str2"

例:
  %s f - g  最初に f の中身を出力し、次に標準入力を出力します。
            そして g の中身を出力します。
  %s        標準入力を標準出力に複製します。

例:
  %s root /u        /u の所有者を "root" に変更します。
  %s root:staff /u  同様ですが、グループも "staff" に変更します。
  %s -hR root /u    /u 配下のファイルの所有者を "root" に変更します。

例:
  %s staff /u      /u のグループを "staff" に変更する。
  %s -hR staff /u  /u とその配下のファイルのグループを "staff" に変更する。

例:
紀元 (Epoch; 1970-01-01 UTC) からの秒数を日時に変換する場合
  $ date --date='@2147483647'

米国西海岸のタイムゾーンで日時を表示する場合
(TZ は tzselect(1) を使って探せます)
  $ TZ='America/Los_Angeles' date

ローカル時間の次の金曜日午前9時を米国西海岸のタイムゾーンで表示する場合
  $ date --date='TZ="America/Los_Angeles" 09:00 next Fri'

-h および -L を除き、全ての FILE 関連のテストはシンボリックリンクを辿ります。
小括弧はシェルに対して (バックスラッシュなどによって) エスケープが必要なこと
に注意してください。INTEGER は文字列の長さを返す -l STRING を使うことも可能です。

終了ステータスは EXPRESSION が null, 0 以外の場合は 0、
EXPRESSION が null, 0 の場合は 1、
EXPRESSION が構文エラーの場合は 2、
その他のエラーが発生した場合は 3 です。

入力されたすべての数字が正常に変換された場合、終了ステータスは 0 です。
デフォルトでは、 %s は変換エラーが最初に起こった時点で終了ステータス 2 で
終了します。 --invalid='fail' が指定された場合、変換エラーそれぞれについて
警告が表示され、終了ステータスは 2 になります。 --invalid='warn' の場合、
変換エラーそれぞれについてメッセージが表示されますが、終了ステータスは
0 になります。 --invalid='ignore' の場合、変換エラーは表示されず、終了
ステータスは 0 になります。

終了ステータス:
  124  COMMAND がタイムアウトし、かつ --preserve-status が指定されていない場合
  125  timeout コマンド自体が失敗した場合
  126  COMMAND が見つかったが実行できなかった場合
  127  COMMAND が見つからなかった場合
  137  COMMAND (もしくは timeout 自体) に KILL (9) シグナル (128+9) が送信された場合
  -    上記以外の場合、 COMMAND の終了ステータス

終了ステータス:
  125  %s コマンド自体が失敗した場合
  126  COMMAND が見つかったが実行できなかった場合
  127  COMMAND が見つからなかった場合
  -    上記以外の場合、 COMMAND の終了ステータス

終了ステータス:
 0  正常終了、
 1  軽微な問題が発生 (例: 子ディレクトリにアクセスできない)、
 2  重大な問題が発生 (例: コマンド引数が誤っている)。

FIELDS では cut(1) と同様の形式のフィールドの範囲指定が使用できます。
  N    N 番目のフィールド。 1 から始まる
  N-   N 番目のフィールドから行末まで
  N-M  N 番目から M 番目 (これも含まれる) のフィールド
  -M   行頭から M 番目のフィールド (これも含まれる) 
  -    すべてのフィールド
コンマで区切って複数のフィールドや範囲を指定できます。

FIELD_LIST は、表示するフィールド名のコンマ区切りのリストです。
有効なフィールド名は 'source', 'fstype', 'itotal', 'iused', 'iavail', 'ipcent',
'size', 'used', 'avail', 'pcent', 'file' and 'target' です (info ページ参照)。

FORMAT によって C 言語の printf のように出力形式を制御します。
認識される文字列は次の通りです: 

  \"      ダブルクォーテーション

FORMAT で出力を制御します。解釈される文字列は次の通りです。

  %%   文字 %
  %a   ロケール表示による曜日の省略名 (例: Sun、日)

FORMAT には次のうちの一つを指定します。

  ln   左揃え、 0 で埋めない
  rn   右揃え、 0 で埋めない
  rz   右揃え、 0 で埋める


FORMAT は浮動小数点引数 '%f' を出力できるものでなければいけません。
クォートを付けると (%'f) (現在のロケールでサポートされていれば) --grouping
が有効になります。幅を示す数字を指定すると (%10f) パディングが付与されます。
0 を幅の指定に付けると (%010f) 数字は指定の幅まで 0 が付与されます。
負の幅を指定すると (%-10f) 出力が左寄せされます。
精度を指定すると (%.1f) 入力から決定される精度を上書きされます。

標準入力とつながった端末を制御します。引数を指定しない場合、
ボーレート、回線制御規則および stty sane からのずれを表示します。
設定の際には、 CHAR は文字通りに扱われるか、 ^c, 0x37, 0177 または 127 
のようにコード化されます。特別な値 ^- または undef は特殊文字を無効に
するのに使用されます。

-e が有効な場合、以下のシーケンスが解釈されます。


FILE に - を指定した場合、標準出力に対して shred を行います。

ファイルが指定されない場合は %s を使用する。
ファイルとして %s を使うのが一般的である。
ARG1 ARG2 が指定されると -m が仮定されます。
通常は ARG1 ARG2 に 'am i' や 'mom likes' を指定するのが普通です。

ファイルが指定された場合、指定されたファイルを読み込んで、どのファイル
タイプや拡張子にどの色を使うかを決定します。指定されなかった場合は、
あらかじめコンパイルされたデータベースが使用されます。
これらのファイルの書式の詳細については 'dircolors --print-database'
を実行して下さい。

FIRST か INCREMENT を省略した場合、デフォルトとして 1 が設定されます。
よって INCREMENT を省略した場合は LAST が FIRST より小さい場合でもデフォルトが
1 になります。数字の列は、現在の番号と INCREMENT の和が LAST より大きくなると終了します。
FIRST、 INCREMENT、 LAST は浮動小数点値として解釈されます。
FIRST が LAST より小さい場合、通常 INCREMENT を正にします。
FIRST が LAST より大きい場合、通常 INCREMENT を負にします。
INCREMENT は 0 にはできません。
FIRST, INCREMENT, LAST はどれも NaN を設定できません。

MODE が '0' の場合、対応するストリームはバッファリングされなくなります。

MODE が 'L' の場合、対応するストリームは行単位でバッファリングされます。
このオプションは標準入力に対しては無効です。

1 番目と 2 番目の書式がどちらにもあてはまる場合は、
最後のオペランドが + で始まるか、 (オペランドが 2 個で) 数字の場合には、
2 番目の書式と見なされます。
OFFSET オペランドは -j OFFSET と同じです。LABEL は表示される最初のバイトの
仮想的なアドレスで、ダンプが進むにつれて増加します。
OFFSET および LABEL では 0x または 0X 接頭辞をつけると 16 進数を表します。
接尾子 . は 8 進数を表します。接尾子 b は 512 倍を表します。

コマンドが指定されなかった場合、
'"$SHELL" -i' (デフォルトでは '/bin/sh -i') を実行します。

オプションが指定されなかった場合、 -P が仮定されます。

標準入力が端末の場合、 読み込み不可のファイルからリダイレクトされます。
標準出力が端末の場合、出力は、可能であれば 'nohup.out' に、
そうでなければ '$HOME/nohup.out' に追加されます。
標準エラー出力が端末の場合、標準出力にリダイレクトされます。
出力を FILE に保存したい場合は '%s COMMAND > FILE' を使用してください。

ファイルの削除に rm を使った場合、十分な専門性と時間があれば、ファイル内容
の一部を復元できる可能性があります。もしファイル内容を復元不可能にする確率を
上げるには、shred(1) の利用を考えてください。

入力設定:
   [-]brkint     ブレイクで割り込みシグナルを発生
   [-]icrnl      復帰 (CR) を改行 (LF) に翻訳
   [-]ignbrk     ブレイク文字を無視
   [-]igncr      復帰 (CR) を無視
   [-]ignpar     パリティーエラーのある文字を無視

KEYDEF は F[.C][OPTS][,F[.C][OPTS]] の書式で、開始位置と停止位置を指定します。
F はフィールド番号で、 C はフィールド内の文字位置です。両方とも開始番号は 1 です。
停止位置はデフォルトでは行末です。-t と -b の両方とも指定がない場合、
フィールド内の文字は、前にある空白の開始から数えられます。
OPTS には、1 文字の並び替えオプション [bdfgiMhnRrV] を一つ以上指定します。
OPTS で指定されたキーの並び替えオプションは、グローバルな並び替えオプション
より優先されます。キーが指定されない場合、行全体がキーとして使用されます。
正しくないキーの使用を突き止めるには --debug を使ってください。

SIZE には以下の倍数などを指定する接尾辞を続けることが出来ます:

ローカル設定:
   [-]crterase   backspace-space-backspace として削除文字をエコー

MODE で出力への書き込みエラー時の動作が決定されます。
  warn           すべての出力への書き込みエラー時に診断情報を出力する
  warn-nopipe    パイプ以外への出力への書き込みエラー時に診断情報を出力する
  exit           すべての出力への書き込みエラー時に終了する
  exit-nopipe    パイプ以外の出力への書き込みエラー時に終了する
-p オプションでのデフォルトの MODE は 'warn-nopipe' です。
'nopipe' 系の MODE の場合、すべての出力が壊れたパイプになった場合に直ちに
終了します。 --output-error が指定されなかった場合のデフォルトの動作は、
パイプへの書き込み時にエラーが発生すると直ちに終了し、
パイプ以外の出力への書き込みでのエラーについては診断情報を表示します。

長いオプションで必須となっている引数は短いオプションでも必須です。

N および BYTES には以下の倍数接尾子を続けることができます:
c=1、w=2、b=512、kB=1000、K=1024、MB=1000*1000、M=1024*1024、xM=M
GB=1000*1000*1000、G=1024*1024*1024 であり、
T、P、E、Z、Y, R, Q についても同様です。
二進接頭辞も使用することもできます: KiB=K, MiB=M など。
N が 'B' で終わる場合、ブロック数ではなくバイト数を数えます。

各 CONV シンボルは以下の通りです:


注意: COMMAND が標準ストリームのバッファリングを調整する場合 (例えば 'tee')、
'stdbuf' が変更した設定は上書きされます。また、いくつかのフィルタ
('dd' や 'cat' 等) は入出力にストリームを使用しないため、
'stdbuf' 設定の影響を受けません。

NUM には以下の倍数接尾子を続けることが出来ます:
b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,
GB 1000*1000*1000, G =1024*1024*1024 で
T, P, E, Z, Y, R, Q についても同様です。
二進接頭辞も使用することもできます: KiB=K, MiB=M など。

NUM には以下の倍数接尾子を続けることが出来ます:
b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,
GB 1000*1000*1000, G =1024*1024*1024 で
T, P, E, Z, Y, R, Q についても同様です。
二進接頭辞も使用することもできます: KiB=K, MiB=M など。


設定の前に - を付けると、否定を表します。
* (アスタリスク) 表示は POSIX に規定されていない設定を表します。
使用しているシステムによって利用可能な設定が決まります。

それ以外の場合は MODE に数値を指定します。数値には次の倍数を指定することができます:
KB 1000, K 1024, MB 1000*1000, M 1024*1024, その他 G, T, P, E, Z, Y, R, Q など。
二進接頭辞も使用することもできます: KiB=K, MiB=M など。
対応したストリームに MODE バイトのサイズが割り当てられたバッファが設定されます。


出力設定:

所有者の指定がない場合には、所有者は変更されません。
グループの指定がない場合には、グループは変更されません。
ただし、OWNER の名前の後ろに ':' が指定された場合には、
グループはその OWNER のログイングループに変更されます。
OWNER と GROUPS には名前だけでなく数値も指定できます。

EXPRESSION の値を標準出力に出力します。下記は優先順位グループ毎に空白行
で区切って昇順に並べています。 EXPRESSION は以下の通りです。

  ARG1 | ARG2       ARG1 が null でも 0 でもない場合は ARG1。そうでなければ ARG2

  ARG1 & ARG2       両方の引数が null でも 0 でもない場合は ARG1。そうでなければ 0

ファイルが - ならば標準入力から読み込みます。

SIG には、 'PIPE' のようなシグナル名、 '13' のようなシグナル番号指定できます。
SIG が指定されなかった場合、既知のすべてのシグナルが対象となります。
複数のシグナルをコンマ区切りで指定できます。
空の SIG 引数は no-op (何もしない) になります。

SIGNAL には、 'HUP' のようなシグナル名、 '1' のようなシグナル番号、
シグナルによって終了されたプロセスの終了ステータスを指定できます。
PID は整数です。負の場合はプロセスグループ ID を示します。

ここでのサイズの指定は数字です。
タイプが [doux] のいずれかの場合、サイズには
sizeof(char) を意味する C、 sizeof(short) を意味する S、
sizeof(int) を意味する I、 sizeof(long) を意味する L も指定できます。
タイプが f の場合、サイズにはBrain 16ビットを意味する B、
半精度floatを意味する H、sizeof(float) を意味する F、 
sizeof(double) を意味する D、sizeof(long double) を意味する L も指定できます。

SIZE には接頭辞として次の文字を指定することができます:
'+' 指定値だけ拡張する、'-' 指定値だけ切り詰める、
'<' 最大値、'>' 最小値、
'/' 指定値の倍数まで切り下げる, '%' 指定値の倍数まで切り上げる。

STYLE には次のうちの一つを指定します。

  a      すべての行番号
  t      空行以外の行番号
  n      空行の行番号
  pBRE   基本正規表現 BRE に一致する行のみを数えたときの行番号

%s シグナルを実行中の 'dd' プロセスに送信すると、
I/O 統計情報が標準エラーに出力され、コピーが再開されます。

以下のオプションがあります。


特殊文字:

特殊設定:
  N              入出力の速度を N ボーに設定

--cached の MODE 引数に指定できるのは always, never, default です。
'always' はキャッシュされた属性がある場合はそれを使用します
'never' は最新の属性と同期を行おうとします。
'default' はキャッシュされた属性の扱いをファイルシステムに任せます。

SIZE 引数は整数で、追加で単位を指定できます
(例えば 10M は 10*1024*1024 です)。
単位には K, M, G, T, P, E, Z, Y, R, Q (1024 の累乗) や
KB, MB, ... (1000 の累乗) が使用できます。
二進接頭辞も使用することもできます: KiB=K, MiB=M など。

TIME_STYLE 引数には full-iso, long-iso, iso, locale, +FORMAT の
いずれかを指定できます。 FORMAT は date(1) と同様に解釈されます。
FORMAT が FORMAT1<newline>FORMAT2 の場合、 FORMAT1 は最近でない時間
のファイルに適用され、 FORMAT2 は最近の時間のファイルに適用されます。
TIME_STYLE の接頭辞として `posix-` をつけた場合、 POSIX ロケールで
ない場合にのみ TIME_STYLE が効果を持ちます。
また、環境変数 TIME_STYLE でデフォルトで使用するスタイルを設定できます。

WHEN 引数のデフォルトは 'always' で、 'never' や 'auto' を指定すること もできます。

--suffix も環境変数 SIMPLE_BACKUP_SUFFIX も設定されていない場合、
バックアップ接尾辞は '~' になります。
バージョン管理方法は --backup オプションや VERSION_CONTROL 環境変数で
選択できます。以下の値を指定できます:


データを RFC 4648 で定義された %s アルファベットにエンコード、デコード
します。デコード時には入力には正式な %s アルファベットに加えて改行文字が
含まれている場合があります。入力ストリームに正式なアルファベット以外の
バイトが含まれていて回復したい場合は --ignore-garbage を使用してください。

次の5 つのオプションはチェックサムを照合する場合にのみ有効です:

以下のオプションを使うと、-R オプションが併せて指定されたときにどのように
階層を辿るかの動作を変更できます。複数のオプションが指定された場合は、
最後に指定されたオプションだけが有効になります。デフォルトは%sです。


下記のオプションを使って、何を数えて表示するかを選択できます。
表示は常に次の順です: 改行数、単語数、文字数、バイト数、行の最大長。

チェックサムは %s に記載されている通りに計算されます。

ファイルに対して有効なフォーマット列 (--file-system なしの場合) は以下の通りです:

  %a   許可ビットの 8 進数表記(printfの'#'と'0'のフラッグを参照)
  %A   許可ビットとファイル種別の人間が読める形式での表記
  %b   割り当てられたブロック数 (%B 参照)
  %B   %b によって報告された各ブロックの大きさ (バイト単位)
  %C   SELinux のセキュリティコンテキスト文字列

install プログラムは選択したコピー先にファイル (通常は直前にコンパイルした
ファイル) をコピーします。 GNU/Linuxシステムですぐに使用できるパッケージ
をダウンロードしてインストールしたい場合は、 yum(1) や apt-get(1) のような
パッケージマネージャーを代わりに使用してください。

最初の 3 個の書式は SOURCE から DEST へ、または複数の SOURCE を既存の DIRECTORY
に、パーミッションモード、所有者/グループを設定しながらコピーします。
4 番目の書式は、指定された DIRECTORY を必要であれば親ディレクトリも含めて作成します。

'-' で始まる名前のファイルを削除するには、例えば '-foo' というファイルなら
こういうコマンドを使いましょう:
  %s -- -foo

  %s ./-foo

UNIT オプション:

UPDATE はコピー先のどの既存のファイルを置き換えるかを制御します。
'all' は、 --update オプションが指定されなかった際のデフォルトの動作で、
コピー先のすべての既存のファイルが置き換えられます。
'none' は、コピー先の既存のファイルは置き換えられないという点では
--no-clobber オプションと似ていますが、スキップされたファイルがあっても
コマンドはエラーにはなりません。
'older' は、 --update オプションが指定された場合のデフォルトの動作で、
コピー先の既存のファイルが対応するコピー元のファイルよりも古い場合には
ファイルが置き換えられます。

-t CHAR が指定されない限り、空白がフィールドを分離し、先頭の空白は無視されます。
指定された場合はフィールドは CHAR によって分離されます。
全ての FIELD は 1 から始まるフィールド番号で識別されます。
FORMAT は一つ以上のコンマ (,) または空白で区切られたフィールド指定で、
それぞれの指定は 'FILENUM.FIELD' または '0' です。
デフォルトの FORMAT では、結合されたフィールド、 FILE1 の残ったフィールド、
FILE2 の残ったフィールドを CHAR で区切って出力します。
FORMAT が 'auto' というキーワードの場合、各ファイルの最初の行により、
各行で出力されるフィールドの数が決定されます。

重要: FILE1 と FILE2 は結合するフィールドに関してソートされていなければいけません。
例えば、'join' にオプションを指定しないときは "sort -k 1b,1" を使用し、
'sort' にオプションを指定しないときは "join -t ''" を使用します。
比較の優先順位は 'LC_COLLATE' で指定された規則に基づきます。
入力がソートされておらず、いくつかの行が結合できない場合は、
警告メッセージが表示されます。

タイムアウト時には、シグナルが他に指定されていない場合には、 TERM シグナルが
COMMAND に送信されます。この TERM シグナルにより、TERM シグナルをブロック
もしくは捕捉していないプロセスは、すべて強制終了されます。場合によっては
KILL シグナルを使う必要があります (KILL シグナルは補足することができません)。

-b, -c, -f はこのうち 1 つだけを、かつ必ず使用してください。
各 LIST は、コンマで区切られた 1 つまたは複数の範囲で構成されます。
選択された入力は読み込まれた順番で一度だけ出力されます。

各プログラムのヘルプを表示するには
'%s --coreutils-prog=PROGRAM_NAME --help' を使用すること。

-s を使用した時は -L および -P は無視されます。それ以外の場合、TAREGT が
シンボリックリンクの場合は最後に指定したオプションが効果を持ちます。
デフォルトは %s です。

デフォルトまたは --color=never を指定した場合、ファイルの種類を判別するための
カラー表示は無効となります。 --color=auto を指定した場合、標準出力が端末に接続
されている場合のみカラーコードを出力します。LS_COLORS 環境変数によって動作
を設定できます。LS_COLORS を設定する場合は dircolors(1) を使用してください。

FILE1 と FILE2 の一方が - の場合 (両方は不可)、標準入力から読み込みます。

デコード時には入力には正式なアルファベットのバイトに加えて改行文字が含ま
れている場合があります。入力ストリームに正式なアルファベット以外のバイト
が含まれていて回復したい場合は --ignore-garbage を使用してください。

ファイルの指定がない場合や FILE が - の場合, 標準入力から読み込みを行います。

オプションがない場合、3 列の出力を生成します。1 列目は FILE1 のみに
含まれる行、2 列目は FILE2 のみに含まれる行、3 列目は両方のファイル
に含まれる行となります。

OPTION が指定されない場合、識別情報のうち有用なものを表示します。

FILE を明確な表現形式 (デフォルトは 8 進数) で標準出力に書き出します。
FILE が 2 個以上の場合は、指定された順番で連結されて入力となります。

使用しているシェルによっては組み込みコマンドとして %s を持っている
場合があり、通常はここで説明しているバージョンより優先的に使用されます。
シェルの文書を参照してオプションなどの詳細を確認してください。
     (不明)      --additional-suffix=SUFFIX  ファイル名に SUFFIX を追加で付加する
      --attributes-only        ファイルのデータをコピーせず、ファイルの属性のみコピーする
      --author               -l と合わせて使用した時、各ファイルの作成者を表示する
      --color[=WHEN]         カラー出力をする。 WHEN で条件を指定する
      --copy-contents          再帰時に特殊ファイルの内容をコピーする
      --endian={big|little}   入力バイトを指定された順序で入れ替えます
      --exclude=PATTERN    PATTERN に一致するファイルを除外する
      --filter=COMMAND    シェルコマンド COMMAND にファイル名を $FILE として出力する
      --first-only  空白のうち最初の一連の空白のみ変換する (-a より優先される)
      --hex-suffixes[=FROM]  -x と同様だが、開始番号を設定できる
      --ignore-missing  ファイルが存在しない場合に失敗もせずステータスも表示しない
      --inodes          ブロック使用量ではなく inode 使用量を表示する
      --lookup      正式なホスト名を DNS から取得するように試みる
      --message     -T と同じ
      --no-copy                名前の変更に失敗した場合コピーを行わない
      --no-preserve-root  '/' を特別なものとして扱わない
      --no-preserve-root  '/' を特別扱いしない (デフォルト)
      --no-preserve=ATTR_LIST  指定した属性を保持しない
      --no-sync         使用量の情報を得る前に sync を行わない (デフォルト)
      --numeric-suffixes[=FROM]  -d と同様だが、開始番号を設定できる
      --output-error[=MODE]   書き込みエラー時の動作を指定する。下記の MODE の説明を参照
      --parallel=N          同時に実行するソートの数を N に変更する
      --parents                DIRECTORY 配下で SOURCE ファイルのフルパス名を使用する
      --portability   全ての POSIX システムに合うかどうかを確認する
                        (-p -P と同じ)
      --preserve-context  SELinux セキュリティコンテキストを保持する
      --preserve-root     '/' に対する再帰的な操作を失敗させる
      --preserve[=ATTR_LIST]   指定された属性を保持する
      --print-ls-colors       表示用に完全にエスケープされた色付きの出力を行う
      --quiet           ファイルのチェックサムの照合が成功したときに OK を表示しない
      --random-source=FILE  ランダムバイトのソースを FILE にする
      --reflink[=WHEN]         clone/CoW コピーを制御する。下記を参照
      --relative-base=DIR      DIR 配下でない場合は絶対パスを表示する
      --relative-to=DIR        DIR から見た相対パスを表示する
      --remove[=HOW]  -u と同様だが、削除の方法を HOW で制御できる。下記参照
      --retry              ファイルがアクセスできない場合に、ファイルのオープンを
                             継続して試みる。
      --si              -h と同様だが、1024 ではなく 1000 の累乗を表示する
      --si                   上と同様だが乗数の単位に 1024 の代わりに 1000 を使用する
      --sparse=WHEN            スパースファイル作成を制御する。下記を参照
      --status          何も出力しない。終了コードで結果を判別する
      --strict          不正な形式のチェックサム行の場合に 0 以外のコードで終了する
      --strip-program=PROGRAM  バイナリを strip する時に使用されるプログラム
      --traditional           上記の 3 番目の形式の引数を受け付ける
      --writable    -T と同じ
      --zero                 出力の各行の末尾に改行ではなく NUL を使用する
   [-]cstopb     1 文字あたり 2 ストップビットを使用 ('-' 付きの場合は 1)
   [-]hup        最後のプロセスが tty を閉じたらハングアップシグナルを送る
   [-]hupcl      [-]hup と同じ
   [-]parenb     出力でパリティビットを生成し, 入力ではパリティビットがあると期待する
   [-]parodd     奇数パリティに設定する ('-'付きの場合は偶数パリティ)
   [-]echo       入力文字をエコー
   [-]echoe      [-]crterase と同じ
   [-]echok      kill 文字の後に改行をエコー
   [-]echonl     他の文字をエコーしない場合でも改行をエコー
   [-]icanon     特殊文字 %s を有効にする
   [-]iexten     非 POSIX の特殊文字を有効にする
   [-]inlcr      改行 (LF) を復帰 (CR) に変換する
   [-]inpck      入力パリティのチェックを可能に
   [-]istrip     入力文字の最上位 (第8) ビットを落とす
   [-]isig       特殊文字 割り込み (interrupt), 終了 (quit)
                    および中断 (suspend) を使用可能にする
   [-]noflsh     特殊文字 割り込み (interrupt) と終了 (quit) の後の出力フラッシュを無効に
   [-]ixoff      開始および停止文字の送信を可能に
   [-]ixon       XON/XOFF フロー制御を可能に
   [-]parmrk     パリティーエラーをマーク (255-0 文字のシーケンスで)
   [-]tandem     [-]ixoff と同じ
   [-]opost      出力に対して後処理を行う
   cbreak        -icanon と同じ
   -cbreak       icanon と同じ
   cols N        ターミナルが N 桁であることをカーネルに通知
 * columns N     cols N と同じ
   cooked        brkint ignpar istrip icrnl ixon opost isig icanon と同じ。
                 eof および eol 文字は標準の値になる
   -cooked       raw と同じ
   crt           %s と同じ
   csN           キャラクターサイズを N ビットにする。 N は [5..8]
   dec           %s intr ^c erase 0177 kill ^u と同じ
   ek            erase と kill 文字を標準の値にする
   evenp         parenb -parodd cs7 と同じ
   -evenp        -parenb cs8 と同じ
   eof CHAR      CHAR はファイル終端を送信する (入力の終了)
   eol CHAR      CHAR は行を終端する
   erase CHAR    CHAR は最後にタイプされた文字を削除
   intr CHAR     CHAR は割り込みシグナルを送信
   kill CHAR     CHAR は現在の行を削除
   ispeed N      入力速度を N に設定
   litout        -parenb -istrip -opost cs8 と同じ
   -litout       parenb istrip opost cs7 と同じ
   min N         -icanon と共に使い, 完全な読込みに対して最低 N 文字を設定
   ospeed N      出力速度を N に設定
   nl            %s と同じ
   -nl           %s と同じ
   oddp          parenb parodd cs7 と同じ
   -oddp         -parenb cs8 と同じ
   [-]parity     [-]evenp と同じ
   pass8         -parenb -istrip cs8 と同じ
   -pass8        parenb istrip cs7 と同じ
   quit CHAR     CHAR は終了シグナルを送信
   raw           -ignbrk -brkint -ignpar -parmrk -inpck -istrip
                 -inlcr -igncr -icrnl -ixon -ixoff -icanon -opost
                 -isig%s min 1 time 0 と同じ
   -raw          cooked と同じ
   rows N        ターミナルが N 行であることをカーネルに通知
   size          カーネルに対応した行数と桁数を表示
   sane          cread -ignbrk brkint -inlcr -igncr icrnl
                 icanon iexten echo echoe echok -echonl -noflsh
                 %s
                 %s
                 %s と同じ。
                 全ての特殊文字は標準の値になる
   speed         端末速度を表示
   time N        -icanon と共に使い, 読込みのタイムアウトを 10 分の N 秒に設定
   start CHAR    CHAR は停止している出力を再開
   stop CHAR     CHAR 出力を停止
   susp CHAR     CHAR は端末停止シグナルを送信
  %%      単一の % 文字
  %b      ARGUMENT は '\' エスケープが解釈される文字列です。
          ただし 8 進数は例外で \0NNN のように0で始める書式になります。
  %q      ARGUMENT はシェルの入力として再利用できる形式で出力されます。
          印字不可の文字は POSIX $'' 記法でエスケープされます。

上記に加え、 diouxXfeEgGcs のいずれかで終わる C 書式指定全ても
認識されます (ARGUMENT は最初に適切な型に変換されます)。
可変幅も使用できます。
  %A   ロケール表示での曜日の完全名 (例: Sunday、日曜日)
  %b   ロケール表示での月の省略名 (例: Jan)
  %B   ロケール表示での月の完全名 (例: January)
  %c   ロケール表示での日付と時刻 (例: Thu Mar  3 23:05:25 2005)
  %C   世紀。%Y と同様だが下2桁が省略される (例: 20)
  %d   月の中の何日目かを表す値 (例: 01)
  %D   日付。 %m/%d/%y と同様
  %e   スペースで字幅調整された月の中の何日目かを表す値。%_d と同様
  %F   完全形式の日付。 %+4Y-%m-%d と同様
  %g   ISO 週番号の最後の2桁。曖昧な時があります。(例: 00-99) (%G 参照)
  %G   ISO 週番号の年部分。通常は %V と同時に使用される
  %S   秒 (00..60)
  %t   水平タブ
  %T   時刻。%H:%M:%S と同様
  %u   週の何日目かを表す値 (1..7); 1 が月曜日
  %U   日曜日を週初めとした週番号 (00..53)
  %V   ISO 週番号。月曜日を週初めとする (01..53)
  %w   週の何日目かを表す値 (0..6); 0 を日曜日とする
  %W   月曜日を週初めとした週番号 (00..53)
  %d   デバイス番号の 10 進数表記 (st_dev)
  %D   デバイス番号の 16 進数表記 (st_dev)
  %Hd  メジャーデバイス番号 (10 進数表記)
  %Ld  マイナーデバイス番号 (10 進数表記)
  %f   raw モードの 16 進数表記
  %F   ファイル種別
  %g   所有者のグループ ID
  %G   所有者のグループ名
  %h   ハードリンクの数
  %i   i ノード番号
  %m   マウントポイント
  %n   ファイル名
  %N   クォートされたファイル名。シンボリックリンクの場合は参照先ファイル名も表示される
  %o   最適な I/O 転送サイズサイズのヒント情報
  %s   合計サイズ (バイト単位)
  %r   デバイス種別 (10 進数表記) (st_rdev)
  %R   デバイス種別 (16 進数表記) (st_rdev)
  %Hr  メジャーデバイス番号 (10 進数表記)。キャラクター/ブロックデバイススペシャルファイルの場合
  %Lr  マイナーデバイス番号 (10 進数表記)。キャラクター/ブロックデバイススペシャルファイルの場合
  %t   メジャーデバイス番号 (16 進数表記)。キャラクター/ブロックデバイススペシャルファイルの場合
  %T   マイナーデバイス番号 (16 進数表記)。キャラクター/ブロックデバイススペシャルファイルの場合
  %h   %b と同様
  %H   時 (00..23)
  %I   時 (01..12)
  %j   年の開始日からの日数 (001..366)
  %i   ファイルシステム ID (16 進数表記)
  %l   ファイル名の最大長
  %n   ファイル名
  %s   ブロックサイズ (高速転送用に使用する)
  %S   基本ブロックサイズ (ブロック数を数える際に使用する)
  %t   ファイルシステム種別 (16 進数表記)
  %T   ファイルシステム種別 (人間が読みやすい表記)
  %k   スペース詰めの時 ( 0..23)。 %_H と同様
  %l   スペース詰めの時 ( 1..12)。 %_I と同様
  %m   月 (01..12)
  %M   分 (00..59)
  %n   改行
  %N   ナノ秒 (000000000..999999999)
  %p   AM または PM のロケールでの表示。不明な場合は空白
  %P   %p と同様だが、小文字で表示する
  %q   年の四半期 (1..4)
  %r   ロケール12時間表示での時刻 (例 11:11:04 PM)
  %R   24時間表示での時および分。%H:%M と同様
  %s   紀元 (Epoch; 1970-01-01 00:00:00 UTC) からの秒数
  %u   所有者のユーザ ID
  %U   所有者のユーザ名
  %w   最初に作成した日時 (人間が読みやすい形式)。不明な場合には -
  %W   最初に作成した日時 (Epoch からの秒数)。不明な場合には 0
  %x   最終アクセス日時 (人間が読みやすい形式)
  %X   最終アクセス日時 (Epoch からの秒数)
  %y   最終データ更新日時 (人間が読みやすい形式)
  %Y   最終データ更新日時 (Epoch からの秒数)
  %z   最終状態変更日時 (人間が読みやすい形式)
  %Z   最終状態変更日時 (Epoch からの秒数)

  %x   ロケール表示での日付 (曖昧な時があります。例: 12/31/99)
  %X   ロケール表示での時刻 (例: 23:13:48)
  %y   西暦での年の下2桁 (曖昧な時があります。例: 00..99)
  %Y   年
  %z   +hhmm 形式でのタイムゾーン (例: -0400)
  %:z  +hh:mm 形式でのタイムゾーン (例: -04:00)
  %::z  +hh:mm:ss 形式でのタイムゾーン (例: -04:00:00)
  %:::z  必要な精度に応じて : が使用されるタイムゾーン表示 (例: -04, +05:30)
  %Z   英字でのタイムゾーン省略形 (例: EDT)

デフォルトでは0で日付の空白部分が埋められます。
  + TOKEN                    TOKEN が 'match' のようなキーワードや '/' の
                               ような演算子であっても、文字列として解釈する

  ( 式 )                     式の値
  - +FORMAT (例: +%H:%M) ('date' と同じ形式)
  -1                         1 ファイル 1 行で表示する
  -A, --almost-all           . および .. を一覧表示しない
  -A, --auto-reference           自動生成した参照文を出力する
  -A, --show-all           -vET と同じ
  -C                         多段組で一覧を表示する
  -C, --line-bytes=SIZE   出力ファイルに含まれる行の最大サイズを SIZE にする
  -D                    重複する行を全て出力する
  -D, --dired                Emacs の dired モード用の出力を生成する
  -E, --canonicalize           パスの最後の構成要素以外が存在していなければならない(デフォルト)
  -F                       --follow=name --retry と等価
  -F, --classify             タイプ識別子 (*/=>@| のうちの一つ) を付けて出力する
                               WHEN で条件を指定する
  -g, --save         現在のすべての設定を stty が解釈できる形式で出力する
  -F, --flag-truncation=STRING   行の切り詰めの目印に STRING を使用する。
                                 デフォルトは '/'
  -G FILE     FILE が存在し、かつ実効グループ ID によって所有されている
  -G, --groups   全てのグループ ID を表示する
  -G, --traditional              System V の 'ptx' に近い動作を行う
  -H                    --dereference-args (-D) と同様
  -H                           SOURCE にあるコマンド行のシンボリックリンクをたどる
  -H, --heading     ヘッダ行を表示
  -H, --si              1000 の累乗でサイズを表示する (例: 1.1G)
  -I, --ignore=PATTERN       シェル形式の PATTERN に一致する要素は表示しない
  -L FILE     FILE が存在し、かつシンボリックリンクである (-h と同じ)
  -L, --dereference            SOURCE にあるシンボリックリンクを常にたどる
  -L, --dereference     全てのシンボリックリンクをたどる
  -L, --dereference     リンクを辿る
  -L, --logical               TARGET がシンボリックリンクの場合リンクを辿る
  -L, --logical                シンボリックリンクの前にある '..' 要素を展開する
  -L, --max-line-length  最も長い行の長さを表示する
  -M, --macro-name=STRING        'xx' の代わりに使うマクロ名を指定
  -M, --month-sort            月名でソートする。(不明) < 'JAN' < ... < 'DEC' の順
  -N FILE     FILE が存在し、かつ最後の読み込み以降に更新 (modified) されている
  -N, --literal              項目名をクォートせずに表示する
  -N, --read-bytes=BYTES      ダンプする範囲を入力の先頭 BYTES バイト分に限定する
  -O FILE     FILE が存在し、かつ実効ユーザ ID によって所有されている
  -O, --format=roff              roff 命令で出力を生成
  -P                     シンボリックリンクを一切辿らない

  -P, --no-dereference  シンボリックリンクをたどらない (デフォルト)
  -P, --physical              シンボリックリンク自体へのハードリンクを作成する
  -P, --physical               遭遇したシンボリックリンクを展開する (デフォルト)
  -R, --recursive            子ディレクトリを再帰的に一覧表示する
  -R, --right-side-refs          参照文を右に. ただし -w の勘定には入らない
  -S FILE     FILE が存在し、かつソケットである
  -S, --buffer-size=SIZE    主記憶のバッファの大きさとして SIZE を使用する
  -S, --sentence-regexp=REGEXP   行末または文末を表現する正規表現を指定
  -S, --separate-dirs   子ディレクトリのサイズを含めない
  -T, --format=tex               TeX 命令で出力を生成
  -T, --no-target-directory   常に LINK_NAME を通常ファイルとして扱う
  -T, --print-type      ファイルシステムの種類を表示する
  -T, --show-tabs          TAB 文字を ^I で表示
  -T, --tabsize=COLS         タブ幅を 8 の代わりに COLS にする
  -T, -w, --mesg    ユーザのメッセージ状態を +, - または ? で追記
  -W, --word-regexp=REGEXP       キーワードに対して REGEXP で一致を調べる
  -X                         拡張子のアルファベット順にソートする
  -X, --exclude-from=FILE  FILE 内のいずれかのパターンに一致するファイルを除外する
  -Z                   SELinux セキュリティコンテキストをデフォルトタイプに設定する
  -Z, --context              各ファイルの SELinux セキュリティコンテキストを表示する
  -Z, --context  現在のユーザーのセキュリティコンテキストのみ表示する
  -a                     アクセス日時のみ変更する
  -a             無視される。他バージョンとの互換性のため存在している
  -a, --all        先頭の空白だけでなく、全ての空白を変換する
  -a, --all                  . で始まる要素を無視しない
  -a, --all             擬似ファイルシステム、重複するファイルシステム、
                          アクセスできないファイルシステムも表示する
  -a, --all             ディレクトリだけでなく、全てのファイルについて表示する
端末設定の表示、または変更を行います。

  -a, --all         -b -d --login -p -r -t -T -u と同じ
  -a, --append              指定されたファイルに追加し、上書きしない
  -a, --archive                -dR --preserve=all と同様
  -a, --multiple       引数を複数をとり、各引数を NAME として扱う
  -a, --suffix-length=N   接尾辞の長さを N にする (デフォルト: %d)
  -b FILE     FILE が存在し、かつブロックデバイスである
  -b, --before             区切り文字列をレコード後ろではなく前に付加する
  -b, --body-numbering=STYLE      本文の行番号を STYLE の形式にする
  -b, --boot        最後にシステムが起動した時刻
  -b, --break-file=FILE          この FILE 中から単語を分割する文字を取得
  -b, --bytes         列数ではなくバイト数で数える
  -b, --bytes           '--apparent-size --block-size=1' と同じ
  -b, --bytes=LIST        バイトで数えた LIST を選択する
  -b, --bytes=SIZE        出力ファイル毎の大きさを SIZE バイトにする
  -b, --escape               表示不可能な文字の場合に C 形式のエスケープ文字を表示する
  -b, --number-nonblank    空行以外に行番号を付ける。-n より優先される
  -b, --suffix-format=FORMAT  %02d の代わりに sprintf の FORMAT を使用する
  -c                  (無視される)
  -c FILE     FILE が存在し、かつキャラクタデバイスである
  -c, --bytes            バイト数を表示する
  -c, --changes          verbose モードと同様だが、変更が行われた場合にのみ出力する
  -c, --characters    列数ではなく文字数で数える
  -c, --characters=LIST   文字で数えた LIST を選択する
  -c, --compute      修正前にコンテキスト移行処理を計算する
  -c, --count           行の前に出現回数を出力する
  -c, --crown-margin        先頭 2 行のインデントを保護する
  -c, --no-create        ファイルを作成しない
  -c, --no-create        ファイルを作成しない
  -c, --total           総合計量を表示する
  -d                           --no-dereference --preserve=links と同様
  -d                      接尾辞を英字ではなく 0 で始まる数字にする
  -d FILE     FILE が存在し、かつディレクトリである
  -d, --data             ファイルデータのみを sync する。
                           必要ではないメタデータは sync しない
  -d, --date=STRING      現在時刻の代わりに STRING を解釈して使用する
  -d, --dead        終了したプロセスを表示
  -d, --decode          データをデコードする
  -d, --delete            ARRAY1 中の文字を削除する。置換は行わない
  -d, --delimiter=DELIM   フィールドの区切り文字として TAB の代わりに DELIM
                            を使用する 
  -d, --dictionary-order      空白および英数字のみ含まれていると仮定する
  -d, --dir             空のディレクトリを削除する
  -d, --directory     ファイルではなく、ディレクトリを作成する
  -d, --directory            ディレクトリの内容ではなくディレクトリ自身を一覧表示する
                               また、シンボリックリンクも辿らない
  -d, --repeated        重複した行のみ出力する。出力はグループ毎に 1 回行われる
  -d, --section-delimiter=CC      セクションの区切り記号に CC を利用する
  -e                       -vE と同じ
  -e FILE     FILE が存在する
  -e, --canonicalize-existing  パスの構成要素が全て存在していなければならない
  -e, --echo                各 ARG を入力行として扱う
  -e, --elide-empty-files  '-n' を使用した時に空ファイルを作成しない
  -e, --error=MODE   標準エラー出力のバッファ動作を変更する
  -f                     (無視される)
  -f                         -a -Uと同じ
  -f FILE     FILE が存在し、かつ通常ファイルである
  -f, --file-system     ファイル情報ではなくファイルシステム情報を表示する
  -f, --file-system      ファイルを含むファイルシステムを sync する
  -f, --footer-numbering=STYLE    フッタの行番号を STYLE の形式にする
  -f, --force    書き込みができるように必要に応じてアクセス権限を変更する
  -f, --force                  上書きの前に確認を行わない
  -f, --force           存在しないファイルを無視する。確認も行わない
  -f, --force                 対象ファイルが存在する時に削除する
  -f, --format=FORMAT      printf 形式の FORMAT で浮動小数点を表示する
  -f, --ignore-case           大文字・小文字を区別しない
  -f, --ignore-case              小文字を大文字に変えて並び替え
  -f, --prefix=PREFIX        接頭辞として 'xx' の代わりに PREFIX を使用する
  -g FILE     FILE が存在し、かつ set-group-ID されている
  -g, --gap-size=NUMBER          出力のフィールド間の列中の隙間の大きさ
  -g, --general-numeric-sort  一般的な数値として比較を行う
  -g, --goal=WIDTH          目標幅 (goal width; デフォルトは width の 93%)
  -g, --group    実効グループ ID のみ表示する
  -g, --group=GROUP   グループ所有権を、プロセスの現在のグループではなく、
                        GROUP に設定する
  -a, --all          現在のすべての設定を人間に読める形式で出力する
  -h FILE     FILE が存在し、かつシンボリックリンクである (-L と同じ)
  -h, --header-numbering=STYLE    ヘッダの行番号を STYLE の形式にする
  -h, --human-readable  人間が読みやすい形式でサイズを表示する (例: 1K 234M 2G)
  -h, --human-readable  1024 の累乗でサイズを表示する (例: 1023M)
  -h, --human-readable       -l や -s と併せて使用され、サイズを 1K, 234M, 2G
                               のような形式で表示する。
  -h, --no-dereference   参照先のファイルではなく各シンボリックリンクに適用する
  -h, --no-dereference   参照先のファイルではなくシンボリックリンクに適用する
  -i                    削除の前に確認を行う
  -i, --hardware-platform  ハードウェアプラットフォームを表示する (移植性なし)
  -i, --ignore-case     比較時に大文字と小文字の違いを無視する
  -i, --ignore-case      フィールドを比較する時に大文字と小文字の違いを無視する
  -i, --ignore-environment  環境変数がない状態で開始する
  -i, --ignore-file=FILE         FILE から無視する単語一覧を読み込む
  -i, --ignore-garbage  デコード時に非英数字を無視する
  -i, --ignore-interrupts   割込みシグナルを無視
  -i, --ignore-nonprinting    表示可能な文字のみ比較を行う
  -i, --initial    非空白類文字の後にあるタブを変換しない
  -i, --inode                各ファイルの i ノード番号を表示する
  -i, --inodes          ブロック使用量の代わりに iノード情報を表示する
  -i, --input-range=LO-HI   LO から HI までの各数を入力行として扱う
  -i, --input=MODE   標準入力のバッファ動作を変更する
  -i, --interactive            上書きの前に確認を行う
  -i, --interactive           対象を削除するかどうか確認メッセージを表示する
  -i, --line-increment=NUMBER     行番号の増分を NUMBER にする
  -j, --skip-bytes=BYTES      ファイルの先頭より BYTES 分スキップする
  -k                    --block-size=1K と同様
  -k FILE     FILE が存在し、かつスティッキービットが立っている
  -k, --keep-files           エラー発生時に出力ファイルを削除しない
  -k, --key=KEYDEF          指定されたキーでソートする。
                              KEYDEF では場所と並び替え種別を指定する
  -l, --count-links     ハードリンクされた場合その個数分サイズを数える
  -l, --join-blank-lines=NUMBER   NUMBER 個以下の空行を一つとして数える
  -l, --lines            改行の数を表示する
  -l, --lines=NUMBER      出力ファイル毎の行数/レコード数を NUMBER 行/個にする
  -l, --link                   コピーの代わりにファイルのハードリンクを作成する
  -l, --list                    シグナル名および番号の一覧
  -l, --local           ローカルファイルシステムのみ表示するように制限する
  -l, --login       システムのログインプロセスを表示する
  -l, --range=RANGE      対象となるセキュリティコンテキストの範囲を
                         RANGE に設定する
  -l, --range=RANGE  レバレッジ
  -m                     更新日時のみ変更する
  -m                    --block-size=1M と同様
  -m                標準入力に関連づけられたホスト名とユーザのみを表示する
  -m, --canonicalize-missing   パスの構成要素が存在している必要はない
  -m, --chars            文字数を表示する
  -m, --machine            マシンのハードウェア名を表示する
  -m, --merge               ソートされたファイルを併合する。ソート自体は行わない
  -m, --mode=MODE   ファイルのパーミッションを a=rwx - umask ではなく
                    (chmod のように) MODE に設定する
  -m, --mode=MODE     パーミッションを rwxr-xr-x ではなく、
                        MODE (chmod と同じ指定方法) に設定する
  -n                      (無視される)
  -n, --digits=DIGITS        2 の代わりに指定された数字を使用する
  -n, --head-count=COUNT    最大 COUNT 行まで出力する
  -n, --iterations=N  N 回上書きを繰り返す (デフォルト: %d 回)
  -n, --name     -u,-g,-G で名前の代わりに数値を表示する
  -n, --no-newline              末尾に区切り文字を出力しない
  -n, --nodename           ネットワークノードとしてのホスト名を表示する
  -n, --number             全ての行に行番号を付ける
  -n, --number-format=FORMAT      行番号の出力形式を FORMAT にする
  -n, --number=CHUNKS     作成する出力ファイル数を CHUNKS 個にする。下記の説明を参照
  -n, --numeric-uid-gid      -l と同様だが UID と GID を数値で表示する
  -o                         -l と同様だがグループ情報を表示しない
  -o, --io-blocks        SIZE をバイトではなく I/O ブロックとして扱う
  -o, --only-file=FILE           この FILE から単語一覧のみを読み込む
  -o, --operating-system   オペレーティングシステムを表示する
  -o, --output=FILE         結果を標準出力の代わりに FILE に書き込む
  -o, --output=FILE         結果を (標準出力ではなく) FILE に書き込む
  -o, --output=MODE  標準出力のバッファ動作を変更する
  -o, --owner=OWNER   所有権を設定する (スーパーユーザーのみ)
  -p                        MODE で指定されたより適切なモードでパイプを操作する
  -p                           --preserve=mode,ownership,timestamps と同じ
  -p FILE     FILE が存在し、かつ名前付きパイプである
  -p, --no-renumber               セクション毎に行番号をリセットしない
  -p, --print-database        デフォルト値を標準出力に表示する
  -p, --process     init によって起動されたアクティブプロセスを表示する
  -p, --processor          プロセッサの種類を表示する (移植性なし)
  -q, --count       ログイン中のユーザのログイン名とユーザ数
  -q, --quiet
  -q, --quiet         ファイルまたはディレクトリ作成失敗のメッセージを抑止する
  -q, --quiet                  ほとんどのエラーメッセージの出力を抑制する
  -r              BSD 形式のチェックサムアルゴリズムを使用します (デフォルト);
                    1K バイトのブロックが使用されます
  -r FILE     FILE が存在し、かつそのユーザーが読み込みアクセス可能
  -r, --kernel-release     カーネルリリース番号を表示する
  -r, --real     -u,-g,-G で実効 ID の代わりに実 ID を表示する
  -r, --reference=FILE   現在時刻の代わりに FILE のタイムスタンプを使用する
  -r, --reference=RFILE  サイズとして RFILE のサイズを使用する
  -r, --references               各行の第1フィールドを参照文と見なす
  -r, --regex              区切り文字列を正規表現として解釈する
  -r, --relative              -s と同時に使用し、リンクの場所からの相対パスの
                                リンクを作成する
  -z, --zero-terminated     行の区切りとして改行文字ではなく NUL を使用する
  -r, --reverse              ソート順を反転させる
  -r, --reverse               比較結果を逆順にする
  -r, --role=ROLE        対象となるセキュリティコンテキストのロールを
                         ROLE に設定する
  -r, --role=ROLE    ロール
  -r, --runlevel    現在のランレベルを表示
  -s FILE     FILE が存在し、かつ大きさが 0 より大きい
  -s, --kernel-name        カーネル名を表示する
  -s, --number-separator=STRING   行番号の後ろに STRING を加える (可能な場合)
  -s, --only-delimited    区切り文字を含まない行を出力しない
  -s, --separator=STRING   数字の区切りに STRING を使用する (デフォルト: \n)
  -s, --separator=STRING   改行文字の代わりに STRING を区切り文字列にする
  -s, --set=STRING           STRING で指定される時間に設定する
  -s, --short       名前, 行および時間のみを表示 (標準)
  -s, --size                 ブロック単位で各ファイルサイズを表示する
  -s, --size=N   N で指定したバイト数 shred を行う (接尾辞として K, M, G など
                 が使用可能)
  -s, --size=SIZE        ファイルサイズを SIZE バイトに設定、調整する
  -s, --skip-chars=N    最初の N 文字を比較しない
  -s, --split-only          長い行を分割する。ただしインデントは行わない
  -s, --squeeze-blank      連続した空行の出力を行わない
  -s, --stable              前の比較結果に頼らない安定的な並び替えを行う
  -s, --strip         シンボルテーブルを strip する
  -s, --strip, --no-symlinks   シンボリックリンクを展開しない
  -s, --suffix=SUFFIX  末尾にある SUFFIX を削除する
  -s, --summarize       各引数の合計容量のみ表示する
  -s, --symbolic              ハードリンクではなくシンボリックリンクを作成する
  -s, --symbolic-link          コピーの代わりにシンボリックリンクを作成する
  -s, --sysv      System V 形式のチェックサムアルゴリズムを使用します;
                    512 バイトのブロックが使用されます
  -t                         時刻で新しい順にソートする; --time 参照
  -t                       -vT と同じ
  -t FD       ファイル記述子 FD がターミナル上で開いている
  -t, --field-separator=SEP フィールド区切り文字として空白の代わりに SEP を使用する
  -t, --format=TYPE           出力フォーマットを指定する
  -t, --table                   シグナル情報の一覧表を表示
  -t, --tabs=N     タブ幅を 8 文字ではなく N 文字にする (-a が有効になる)
  -t, --tabs=N     タブの文字数を 8 個ではなく N 個にする
  -t, --tagged-paragraph    1 行目と 2 行目以降でインデント量を変える
  -t, --target-directory=DIRECTORY  全ての SOURCE 引数を DIRECTORY にコピーする
  -t, --target-directory=DIRECTORY  全ての SOURCE 引数を DIRECTORY に移動する
  -t, --terse           簡潔な形式で情報を表示する
  -t, --time        最後にシステムの時刻が変更された時刻を表示
  -t, --truncate-set1     最初に ARRAY1 を ARRAY2 の長さまで切り詰める
  -t, --type=TYPE       種類が TYPE のファイルシステムのみ表示する
  -t, --type=TYPE        対象となるセキュリティコンテキストのタイプを
                         TYPE に設定する
  -t, --type=TYPE    タイプ (親のロールと同じにするために使用する)
  -u, --remove   上書き後にファイルの割当を解除し削除を行う
  -u                           --update[=older] と同じ。詳細は下記参照
  -u                       (無視される)
  -u FILE     FILE が存在し、かつ set-user-ID bit がセットされている
  -u, --dry-run       名前のみ表示し、何も作成しない (安全ではない)
  -u, --unbuffered        '-n r/...' を使用した時に、すぐに入力を出力にコピーする
  -u, --uniform-spacing     単語の間には 1つ, 文の間には 2 つの空白を置く
  -u, --unique          重複していない行のみ出力する
  -u, --unset=NAME     環境変数から指定した変数を削除する
  -u, --user     実効ユーザー ID のみ表示する
  -u, --user=USER        対象となるセキュリティコンテキストのユーザーを
                         USER に設定する
  -u, --user=USER    ユーザ識別情報
  -v                    (無視される)
  -v, --kernel-version     カーネルのバージョンを表示する
  -v, --output-duplicates     * マークによる出力行の省略をやめる
  -v, --show-nonprinting   ^ や M- 表記を使用する (LFD と TAB は除く)
  -v, --starting-line-number=NUMBER  各セクションの先頭行番号を NUMBER にする
  -v, --verbose            ファイル名を示すヘッダを常に出力する
  -v, --verbose            常にファイル毎のヘッダー出力を行う
  -v, --verbose          処理した各ファイルについて診断メッセージを出力する
  -v, --verbose     ディレクトリを作成するごとにメッセージを表示する
  -v, --verbose               リンクを作成した時にファイル名を表示する
  -w FILE     FILE が存在し、かつそのユーザーが書き込みアクセス可能
  -w, --equal-width        先頭を 0 で埋めて幅が等しくなるようにする
  -w, --number-width=NUMBER       行番号を表示する列幅を NUMBER にする
  -w, --width=COLS           出力幅を COLS にする。 0 は制限なしを意味する
  -w, --width=NUMBER             列の出力幅を指定. 参照文を除いて数える
  -w, --width=NUMBER        最大行幅 (標準 75 文字) を指定
  -w, --width=WIDTH   80 の代わりに幅を WIDTH で指定する
  -w, --words            単語数を表示する
  -x                         要素を列優先ではなく行優先で配置する
  -x                      接頭辞を英字ではなく 0 で始まる 16 進数にする
  -x FILE     FILE が存在し、かつそのユーザーが実行 (または検索) アクセス可能
  -x, --exclude-type=TYPE   種類が TYPE ではないファイルシステムのみ表示する
  -x, --one-file-system    異なるファイルシステム上のディレクトリはスキップする
  -z, --elide-empty-files    空の出力ファイルを省略する
  -z, --zero     shred を行ったことを隠すために最後に 0 で上書きする
  -z, --zero                    行の区切りとして改行文字ではなく NUL を使用する
  -z, --zero-terminated     行の区切りとして改行文字ではなく NUL を使用する
  CONTEXT            完全なセキュリティコンテキスト
  FILE1 -ef FILE2   FILE1 と FILE2 が同じデバイスで inode も等しい
  FILE1 -nt FILE2   FILE1 が FILE2 より (更新時刻が) 新しい
  FILE1 -ot FILE2   FILE1 が 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 が INTEGER2 に等しい
  INTEGER1 -ge INTEGER2   INTEGER1 が INTEGER2 以上
  INTEGER1 -gt INTEGER2   INTEGER1 が INTEGER2 より大きい
  INTEGER1 -le INTEGER2   INTEGER1 が INTEGER2 以下
  INTEGER1 -lt INTEGER2   INTEGER1 が INTEGER2 未満
  INTEGER1 -ne INTEGER2   INTEGER1 が INTEGER2 に等しくない
割り込み不可のスリープ状態にあるプロセス数も平均負荷率に数えられます。
  [:graph:]       全ての表示可能文字。空白は含まない
  [:lower:]       全ての小文字アルファベット
  [:print:]       全ての表示可能文字。空白も含む
  [:punct:]       全ての句読点
  [:space:]       全ての水平及び垂直タブ文字
  [:upper:]       全ての大文字アルファベット
  [:xdigit:]      全ての 16 進数数値
  [=CHAR=]        全ての CHAR と等価な文字
  \0NNN   8 進数の数値 NNN (1 から 3 個の数字)
  \xHH    16 進数の数値 HH (1 または 2 個の数字)
  \NNN    8 進数で表現したバイト NNN (数字 1 から 3 文字)
  \xHH    16 進数で表現したバイト HH (英数字 1, 2 文字)
  \uHHHH  16 進数で表現した Unicode (ISO/IEC 10646) スカラー値  HHHH (4文字)
  \UHHHHHHHH  16 進数で表現した Unicode スカラー値 HHHHHHHH (8 文字)
  \\      バックスラッシュ
  \a      警告 (BEL)
  \b      バックスペース
  \c      以降を出力しない
  \e      エスケープ
  \f      フォームフィード
  \n      改行
  \r      キャリッジリターン
  \t      水平タブ
  \v      垂直タブ
  \v              垂直タブ
  CHAR1-CHAR2     CHAR1 から CHAR2 までを昇順に展開した文字列
  [CHAR*]         ARRAY2 として, CHAR を ARRAY1 の長さ分展開した文字列
  [CHAR*REPEAT]   CHAR を REPEAT 個展開した文字列, REPEAT の値を 0 から
                      始めた場合には 8 進数として解釈する
  [:alnum:]       全てのアルファベットと数字
  [:alpha:]       全てのアルファベット
  [:blank:]       全ての水平方向空白類文字
  [:cntrl:]       全ての制御文字
  [:digit:]       全ての数字
  ascii     EBCDIC から ASCII へ
  ebcdic    ASCII から EBCDIC へ
  ibm       ASCII から alternate EBCDIC へ
  block     改行区切りのレコードをサイズが cbs になるようにスペースで埋める
  unblock   サイズが cbs のレコードの末尾スペース (複数化) を改行で置換する
  lcase     大文字を小文字に変換する
  ucase     小文字を大文字に変換する
  sparse    中身が NUL だけの出力ブロックを書き込まずにスキップする
  swab      入力バイトの各組を入れ替える
  sync      各入力ブロックをサイズが ibs になるまで NUL で埋める。block
            または unblock と一緒に利用された場合 NUL でなくスペースで埋める
  auto       1〜2文字の接尾辞を付けることができる
               1K = 1000, 1k = 1000,
               1Ki = 1024,
               1M = 1000000,
               1Mi = 1048576,
  binary    データに対してバイナリー I/O を使用する
  bs=BYTES        一回に BYTES バイトずつ読み書きする (デフォルト: 512);
                  ibs と obs を上書きする
  cbs=BYTES       一回に BYTES バイト変換する
  cio       データに対して同時 I/O を使用する
  conv=CONVS      コンマで区切られたシンボルリストとしてファイルを変換する
  count=N         入力ブロック N 個分だけコピーする
  d[サイズ]    符号付き 10 進数  1 整数 (integer) のサイズ指定
  f[サイズ]    浮動小数点        1 浮動小数点 (float) のサイズ指定
  o[サイズ]    8 進数            1 整数 (integer) のサイズ指定
  u[サイズ]    符号なし 10 進数  1 整数 (integer) のサイズ指定
  x[サイズ]    16 進数           1 整数 (integer) のサイズ指定
  direct    データに対して直接 I/O を使用する
  directory  ディレクトリでない場合に失敗させる
  dsync     データに対して同期 I/O を使用する
  excl      出力ファイルが既に存在する場合に失敗させる
  nocreat   出力ファイルを作成しない
  notrunc   出力ファイルを切り詰めない
  noerror   読み込みエラー後も継続する
  fdatasync  終了前に出力ファイルデータを物理的に書き込む
  fsync     上と同様だがメタデータに対しても使用する
  fullblock  入力のブロックがいっぱいになるまで蓄積する (iflag のみ)
  ibs=BYTES       一回に BYTES バイトずつ読み込む (デフォルト: 512)
  iec        1文字の接尾辞を付けることができる
               1K = 1024, 1k = 1024,
               1M = 1048576,
               ...
  iec-i      2文字の接尾辞を付けることができる
               1Ki = 1024, 1ki = 1024,
               1Mi = 1048576,
               ...
  if=FILE         標準入力の代わりに FILE から読み込む
  iflag=FLAGS     コンマで区切られたシンボルリストとして読み込む
  noatime   アクセス時間を更新しない
  nocache   キャッシュを使わないように要求する。 oflag=sync も参照のこと
  noctty    ファイルからの制御端末を割り当てない
  nofollow  シンボリックリンクをたどらない
  nolinks   複数リンクされている場合に失敗させる
  nonblock  非ブロック I/O を使用する
  none       自動スケーリングを行わない。接尾辞があるとエラーが発生する。
  none, off       バックアップを作成しない (--backup を付けた時でも)
  numbered, t     番号付きバックアップを作成する
  existing, nil   番号付きバックアップがあれば番号付き、
                      そうでなければ、simple で作成する
  simple, never   常に簡易バックアップを作成
  obs=BYTES       一回に BYTES バイトずつ書き込む (デフォルト: 512)
  of=FILE         標準出力の代わりに FILE に書き込む
  oflag=FLAGS     コンマで区切られたシンボルリストとして書き込む
  si         1文字の接尾辞を付けることができる
               1K = 1000, 1K = 1000,
               1M = 1000000,
               ...
  status=LEVEL    標準エラーに出力する情報の LEVEL。
                  'none' はエラーメッセージ以外のすべてを出力しない。
                  'noxfer' は最後の転送統計情報を出力しない。
                  'progress' は定期的に転送統計情報を出力する。
  sync      上と同様だがメタデータに対しても使用する
  text      データに対してテキスト I/O を使用する
 %H:%M:%S   (バックアップ: %s) * [-]LCASE      [-]lcase と同じ
 * [-]cdtrdsr    DTR/DSR フロー制御を有効にする。
 * [-]cmspar     "stick" (mark/space) パリティを使用する
 * [-]crtscts    RTS/CTS フロー制御を有効にする
 * [-]ctlecho    ハット記法 ('^c') で制御文字をエコー
 * [-]decctlq    [-]ixany と同じ
 * [-]drain      設定を適用するまで送信を待つ (デフォルトは%s)
 * [-]echoctl    [-]ctlecho と同じ
 * [-]echoke     [-]crtkill と同じ
 * [-]echoprt    '\' と '/' の間で、削除された文字を逆順にエコー
 * [-]extproc    "LINEMODE" を有効にする。高遅延のリンクの場合に有用
 * [-]flusho     出力を破棄する
 * [-]imaxbel    発信音を鳴らし, 文字に全入力バッファをはき出しを行わない
 * [-]iuclc      大文字を小文字に変換する
 * [-]iutf8      入力文字を UTF-8 と見なす
 * [-]ixany      開始文字だけでなく, 任意の文字で出力を再開
 * [-]lcase      xcase iuclc olcuc と同じ
 * [-]ocrnl      復帰 (CR) を改行 (LF) に翻訳する
 * [-]ofdel      充填文字として NUL 文字の代わりに DEL 文字を使用する
 * [-]ofill      遅延でタイミングを取る代わりに充填文字 (fill; padding) を使う
 * [-]olcuc      小文字を大文字に変換する
 * [-]onlcr      改行 (LF) を復帰改行 (CR\-LF) に変換する
 * [-]onlret     改行 (LF) が復帰 (CR) として動作する
 * [-]onocr      1 桁目の復帰 (CR) を表示しない
 * [-]prterase   [-]echoprt と同じ
 * [-]tostop     端末に書き込みを試みたバックグラウンドジョブを停止
 * [-]xcase      icanon とともに使用し、大文字に対して '\' でエスケープ
 * bsN           バックスペースの遅延スタイル. N の範囲は [0..1]
 * crN           復帰 (CR) 遅延スタイル. N の範囲は [0..3]
 * crtkill       echoprt と echoe の設定にしたがって全ての行を削除
 * -crtkill      echoctl と echok の設定にしたがって全ての行を削除
 * discard CHAR  CHAR は出力の破棄のオンオフを切り替える
 * dsusp CHAR    入力がフラッシュされると CHAR は端末停止シグナルを送信する
 * eol2 CHAR     行末を示す別の CHAR
 * ffN           用紙送り遅延スタイル. N の範囲は [0..1]
 * line N        回線制御規則 N を使用
 * lnext CHAR    CHAR は引用された次の文字を入力
 * nlN           改行 (NL) 遅延スタイル. N の範囲は [0..1]
 * rprnt CHAR    CHAR は現在の行を再表示
 * status CHAR   CHAR は info シグナルを送信
 * swtch CHAR    CHAR は別のシェル層に切り替え
 * tabN          水平タブ遅延スタイル. N は [0..3]
 * tabs          tab0 と同じ
 * -tabs         tab3 と同じ
 * vtN           垂直タブ遅延スタイル. N は [0..1]
 * werase CHAR   CHAR は最後にタイプされた単語を削除
 ??:????  端末 context=%s egid=%ju euid=%ju gid=%ju groups= 昔   繰り返し %jd 回目
% はメモリの何 % を使用するか。b は 1倍、K は 1024倍 (デフォルト)。
同様に M, G, T, P, E, Z, Y, R, Q なども指定できます。

*** 警告 ***
環境変数によって指定されたロケールで並び替え順序が変わります。
本来のバイト単位の値を使用した伝統的な並び替え順にしたい場合、
LC_ALL=C を指定してください。
%.*s: 無効な変換指定です%b %e  %Y%b %e %H:%M%jd バイトがコピーされました、 %s, %s%jd バイト (%s) コピーされました、 %s, %s%jd バイト (%s, %s) コピーされました、 %s, %s%jd 切り詰められたレコード
%jd+%jd レコード入力
%jd+%jd レコード出力
%ju-%s%s (正規表現 %s)%s -> %s (復元)
%s [-d] が異常終了しました%s と %s は同じファイルです%s にアクセスできませんでした
%s は -l を受け付けません%s は存在しますがディレクトリではありません%s が期待されています%s が期待されていますが %s が見つかりました%s が現れました。新しいファイルの末尾を追跡します%s はアクセス可能になりました%s はアクセス不能になりました%s は終端を追跡できないファイルに置き換えられました%s%s は終端を追跡できないリモートファイルに置き換えられました%s は終端を追跡できないシンボリックリンクに置き換えられました%s は置き換えられました。新しいファイルの末尾を追跡します%s のファイルタイプが不明です%s: は使用できません。負の大きさになっているようです%s のホームページ: <%s>
%s は有効な正の整数ではありません%s は SELinux kernel でのみ使用できます%s が置き換えられました%s が指定されていますが %s が指定されていません%s が入力を上書きしてしまいます。中止します引数 '%3$s' に対する %1$s%2$s が大きすぎます%s-%s%s: %ju: %s チェックサム行として不適切な書式です%s: %s: 範囲外の行番号%s: %s: 一致しているものが見つかりません%s: %s:%ju: 順序が不規則: %s: 繰り返しカウントには '}' が必要です%s: アクセスできないディレクトリ %s を削除しようとしていますか? %s: 二項演算子が予期されます%s: カレントディレクトリ上でのみ相対シンボリックリンクができます%s: 非ブロッキングモードに変更できませんでした%s: ファイルサイズを決定できません%s: この種類のファイル終端を追跡できません%s%s: ディレクトリを上書きすることはできません%s: 巻き戻しできません%s: seek できません%s: ファイル終端からの相対オフセット %jd まで探査 (seek) できません%s: オフセット %jd まで seek できません%s: 相対オフセット %jd まで seek できません%s: 追加用ファイル記述子には shred できません%s: スキップできません%s: 指定されたオフセットまでスキップできません%s: 終了の区切り文字 '%c' がありません%s: 非ブロッキングモードを再設定できませんでした%s: ディレクトリ %s 配下に入りますか? %s: 書き込み保護されたディレクトリ %s 配下を削除しますか? %s: ファイル終了 (EOF)%s: 等価クラス演算子は一つの文字でなければなりません%s: %s の設定時のエラー%s: ファイル切り詰め時にエラーが発生しました%s: オフセット %ju で書き込みエラーが発生しました%s: 数値による指定をして下さい%s: 閉じるのに失敗しました%s: 書き込み用に開くことに失敗しました%s: 削除に失敗しました%s: ファイル記述子操作 (fcntl) に失敗しました%s: ファイルデータ同期 (fdatasync) に失敗しました%s: ファイルが負の大きさになっています%s: ファイルが小さく縮められすぎています%s: ファイルが大きすぎます%s: ファイルが切り詰められました%s: ファイル状態取得 (fstat) に失敗しました%s: ファイル同期 (fsync) に失敗しました%s: ディレクトリに対するハードリンクは許可されていません%s: 入力にループが含まれています:%s: 入力に要素数が奇数の項目が含まれています%s: 入力ファイルと出力ファイルが同じです%s: 区切り文字の後には整数が予期されます%s: %s の開始番号が無効です%s: 無効な指定です%s: 無効なフィールド指定です: %s%s: 無効なファイルの種類です%s: 無効なオプション -- '%c'
%s: 無効なパターン指定です%s: 無効なプロセスID%s: 無効な正規表現です: %s%s: 無効なシグナルです%s: 16 進の接尾辞の開始値が正しくありません%s: 数値の接尾辞の開始値が正しくありません%s: 行番号はゼロより大きい数でなければなりません%s: 範囲外の行番号%s: ファイル走査 (lseek) に失敗しました%s: 複数のシグナルが指定されています%s: 新規パーミッションは %s です。%s ではありません。%s: どのファイルも検証されていません%s: チェックサムとして適切な書式の行がありませんでした%s: このデバイスのサイズ情報がありません%s: そのようなユーザは存在しません%s: 既に一覧表示したディレクトリのため一覧表示しません%s: オプション '%s%s' は引数を取ることができません
%s: オプション '%s%s' は曖昧です
%s: オプション '%s%s' は曖昧です: 次のものが可能です:%s: オプション '%s%s' は引数が必要です
%s: オプションには引数が必要です -- '%c'
%s: %s を上書きしますか? %s: 経過 %lu/%lu (%s)...%s: 経過 %lu/%lu (%s)...%s%s: 経過 %lu/%lu (%s)...%s/%s %d%%%s: 読み込みエラー%s: %ju 引数を再帰的に削除しますか? %s: %ju 引数を削除しますか? %s: %s %s を削除しますか? %s: 書き込み保護されたファイル %s %s を削除しますか?%s: 削除しました%s: 削除しています%s: %s に名前が変更されました%s: %s を置き換えようとしています。モード %04lo (%s) を上書きしますか? %s: %s を置き換えますか(yes/no)? %s: ファイル探査 (seek) に失敗しました%s: チェックサム行が多すぎます%s: ファイル名の最大長を決めることが出来ません%s: 要求された処理の全てを実行することができません%s: 単項演算子が予期されます%s: オプション '%s%s' を認識できません
%s: 書き込み不可の %s です (モード %04lo, %s); それでも実行しますか? %s: 値は完全には変換されていません%s: 書き込みエラー%s: 書き込みに失敗しました%s:%ju: ソートされていません: %.*s%s:%lu: 長さが 0 のファイル名は無効です%s:%td: 無効な行。2個目のトークンがありません%s:%td: %s は認識できないキーワードです%s}: '{' と '}' の間には整数値が必要です%td は長すぎます%td ユーザ''+' 指定が数字の前以外の場所にあります: %s'+' 指定は最後の値でのみ使用できます'-%c' 余分な文字が付いているか引数の数字が無効です: %s'-%c': 無効な引数: %s'--pages=FIRST_PAGE[:LAST_PAGE]' 引数がありません'-N NUMBER' 無効な開始行番号です'-W PAGE_WIDTH' 無効な文字数です'-l PAGE_LENGTH' 無効な行数です'-o MARGIN' 無効な行オフセットです'-w PAGE_WIDTH' 無効な文字数です'/' 指定は '+' と一緒に使うことはできません'/' 指定が数字の前以外の場所にあります: %s'/' 指定は最後の値でのみ使用できますダブルクォートで囲まれた -S 文字列には '\c' を含めることはできません(C),  平均負荷率: %.2f--%s の引数の値 %s は大きすぎます--algorithm=%s は --length 224、256、384、512 が必要です--backupは-nや--update=none-failと同時に使用できません--base64 と --raw は相互排他的です--check は --algorithm={bsd,sysv,crc,crc32b} と一緒には使用できません--context (-Z) は SELinux が有効なカーネルのみ動作します--context (-Z) は SELinux/SMACK が有効なカーネルでのみ動作します--data には少なくとも 1 つの引数が必要です--dired と --zero は同時に指定できません--filter は標準出力に出力された塊を処理しません--format よるパディングにより --padding オプションが上書きされます--group は -c/-d/-D/-u と一緒に使うことはできません--grouping は --format と一緒に使用できません--header はコマンドライン引数からの入力では無視されます--length は --algorithm blake2b、sha2、sha3 の場合のみ使用できます--reflink は --sparse=auto のみと合わせて使用できます--tag は --text モードをサポートしていません--terse --file-system は以下の FORMAT と等価です。
    %s--text モードは --untagged の場合のみ使用できます-R --dereference は -H または -L のいずれかが必要です-R -h は -P が必要です-ef は -l を受け付けません-r が指定されていません; ディレクトリ %s をスキップしています。このファイル名については処理を諦めます<内部>(不明)
 不明中止Access: %x
Modify: %y
Change: %z
 Birth: %w
Access: (%04a/%10.10A)  Uid: (%5u/%8U)   Gid: (%5g/%8G)
ホスト名に対する Address family がサポートされていません。Alarm clockAlex Deymoすべての要求が完了しました引数バッファが小さすぎますArnold RobbinsAssaf Gordon残り使用可間違ったシステムコールai_flags に対する誤った値ですファイルまたは標準入力を Base%d エンコード/デコードして標準出力に出力します。
Brian FoxBroken pipeバスエラー警告: shred はファイルシステムとハードウェアがその場でデータを上書きすることを
前提としています。この動作は一般的ですが、違う動作をするプラットフォームも多く
あります。また、バックアップやミラーが削除できないコピーを保持していて、
それを使って shred されたファイルを後で復元できることもあります。
詳細は GNU coreutils のマニュアルを参照してください。
コメントCPU時間制限を超過しましたリンク関数を呼び出して、存在するファイル FILE1 に対する
FILE2 という名前のリンクを作成します。
unlink 関数を呼び出して、指定した FILE を削除します。

容量各 FILE の SELinux セキュリティコンテキストを CONTEXT に変更します。
--reference がある場合、各 FILE のセキュリティコンテキストを RFILE のものに
変更します。
各ファイルのグループを GROUP に変更します。
--reference を指定した場合は、各ファイルのグループを RFILE のグループに変更
します。

各 FILE のモードを MODE に変更します。
--reference を指定した場合は、各 FILE のモードを RFILE のものに変更する。
各 FILE の所有者とグループを OWNER と GROUP に変更します。
--reference が指定された場合、各ファイルの所有者とグループと
RFILE と同じものに変更します。

Chet Ramey子プロセス終了Colin Plumbソートされたファイル FILE1 および FILE2 を一行ずつ比較します。
ファイル (複数可) の内容を結合して標準出力に出力します。
Context: %C
継続各 FILE に含まれている空白をタブに変換して、標準出力に書き出します。
各 FILE のタブをスペースに変換し、標準出力に書き出します。
SOURCE から DEST へのコピー、または複数の SOURCE の DIRECTORY へのコピーを行います。
オペランド OPERAND に従って、変換や書式設定しながらファイルをコピーします。

標準入力を各 FILE にコピーし、標準出力にも出力します。

一時ファイルまたは一時ディレクトリを安全に作成し、その名前を表示します。
TEMPLATE 文字列は最後に連続した 'X' を最低 3 個は含まなければいけません。
TEMPLATE が指定されない場合、tmp.XXXXXXXXXX が使用され、
--tmpdir が暗黙のうちに指定されます。
指定した名前 NAME の名前付きパイプ (FIFO) を作成します。
ディレクトリが存在しない場合に、ディレクトリを作成します。
スペシャルファイル NAME をタイプ TYPE で作成します。
David M. IhnatDavid MacKenzieDavid MadoreDevice: %Hd,%Ld	Inode: %-10i  Links: %-5h Device type: %Hr,%Lr
Device: %Hd,%Ld	Inode: %-10i  Links: %h
ファイル名の無効や可搬性を診断します。

ディレクトリファイルまたはファイルシステムの情報を表示します。
Dmitry V. LevinEMT トラップ終了範囲指定は以下のいずれかです。

  N     N 番目のバイト、文字、フィールド。 1 から始まる
  N-    N 番目のバイト、文字、フィールドから行末まで
  N-M   N 番目から M 番目 (これも含まれる) までのバイト、文字、フィールド
  -M    行頭から M 番目 (これも含まれる) までのバイト、文字、フィールド
STRING を標準出力に出力する

Eric Blake組み込みプログラム PROGRAM_NAME を指定されたパラメーター PARAMETERS で実行する。

終了コードは失敗になります。終了コードは成功になります。終了ステータスは EXPRESSION によって決まります

F. Pinard失敗オープンまたは読み込みに失敗しましたFORMAT は 'double' 型の引数 1 個を表示するのに適したものでなければいけません。
FIRST、INCREMENT および LAST の全てが 10 進の固定小数数で、
最大精度が PREC の場合、デフォルトの FORMAT は %.PRECf になります。
それ以外の場合は %g になります。
FIFO に MAJOR および MINOR デバイス番号を指定してはいけません。ファイルファイルサイズ制限を超過しましたファイルは u+rw から umask の設定を差し引いたものが作成されます。
ディレクトリは u+rwx から umask の設定を差し引いたものが作成されます。
ファイルシスINPUT (または標準入力) から行を読み込み、
連続する同じ行を取り除いて、OUTPUT (または標準出力) に出力します。

オプションが指定されない場合、連続する同じ行は最初に見つけた行にまとめられます。

浮動小数点例外入力行のあるフィールドを比較し、同一だった場合、結合して標準出力に出力します。
スペースで区切られた最初のフィールドがデフォルトで比較されます。
詳細な文書 <%s%s>
GROUPGNU ソフトウェアを使用する際の一般的なヘルプ: <%s>
Giuseppe ScrivanoH. Peter AnvinHangupI/O 可能IDLEI残りI使用%I使用Ian Lance Taylor待機FILE を指定しない場合、%s が使用されます。 FILE としては %s が一般的です。

Illegal instruction実名: 1 番目の書式では TARGET に対する LINK_NAME という名前のリンクを作成します。
2 番目の書式では TARGET に対するリンクを現在のディレクトリに作成します。
3 番目と 4 番目の書式では、各 TARGET に対するリンクを DIRECTORY に作成します。
デフォルトではハードリンクが作成されます。
--symbolic を使用すると、シンボリックリンクが作成されます。
デフォルトでは、作成先 (新しいリンクの名前) がすでに存在していてはいけません。
ハードリンクを作成する場合は TARGET が存在しなければいけません。
シンボリックリンクは任意のテキストを保持することができます。
後でシンボリックリンクを辿る際には、相対的なリンクは親ディレクトリに対する
ものとして解釈されます。
無限情報要求Iノード割り込みシグナル割り込みが発生しました無効な前方参照です無効な文字クラス名です無効な照合文字です\{\} の中身が無効です無効な数字です無効な前方正規表現です無効な範囲終了です無効な正規表現ですJames YoungmanJay LepreauJim KingdonJim MeyeringJoseph ArceneauxKaveh GhaziKayvan AghaiepourKevin Braunsdorf強制終了端末LOGINライセンス 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.
FILE (デフォルトは現在のディレクトリ) に関する情報を一覧表示します。
-cftuvSUX のいずれも指定されず、 --sort も指定されていない場合、
要素はアルファベット順でソートされます。
ログインログイン名: Mark KettenisMatthew Bradburnメモリ配置に失敗しましたメモリを使い果たしましたMichael MeskesMichael StoneMike HaertelMike Parkerマウント位置名前名前名前またはサービスが不明ですNiels Mollerホスト名にアドレスが割り当てられていません一致しません以前に正規表現がありません名前解決でリカバリできない失敗が発生しました完了切り詰めを繰り返さないで削除する時は文字列は一つだけ受け付けられます並び替えオプション:

入力ファイルに含まれる単語の索引を並べ替え、前後を含めて出力します。
環境変数 LS_COLORS の定義するためのコマンドを出力します。

出力フォーマットの決定:
NAME の最後の / (スラッシュ) 以降の要素 (/ を含む) を削除して表示します。
NAME に / が含まれない場合は、(カレントディレクトリを意味する) '.' を表示します。

PATTERN に基づいて FILE を断片に分割して、
それぞれをファイル 'xx00', 'xx01', ... に出力し、
各断片のバイト数を標準出力に表示します。
INPUT を PREFIXaa, PREFIXab, ... という固定サイズのファイルに分割します。
デフォルトのサイズは 1000 行です。デフォルトの PREFIX は 'x' です。
シェルスクリプトで使用しやすい形式でプラットフォーム依存の制限を出力します。

現在誰がログインしているかについては FILE に基づいて出力されます。
FILE を指定しない場合、%s が使用されます。
FILE として指定する場合、よく使われるのは %s です。

指定されたファイルに対して上書きを繰り返し、非常に高価な機械でさえも
データ復元の為の調査を行うことが非常に困難となるようにします。
PIDパッケージ作成者: %s
パッケージ作成者: %s (%s)
Padraig Brady%ju ページ印刷用に、ページ付けや段組を行ないます。
パラメーター文字列が正しくエンコードされていませんPaul EggertPaul RubinPete TerMaatプラン:
電源エラー正規表現が途中で終了しましたARGUMENT を FORMAT に従って表示するか OPTION に従って実行します:

パス名からディレクトリ部分を取り除いた名前を表示します。
指定があれば、末尾の接尾辞も取り除きます。
システム情報を表示します。 OPTION が指定されていない場合は -s と同じです。

各 USERNAME が所属するグループを表示します。USERNAME が指定されない場合は
現在のプロセス (これはグループデータベースが変更された場合には異なる場合
があります) に関して表示します。
現在ログインしているユーザに関する情報を表示します。
マシンのアーキテクチャを表示します。

各 FILE の改行、単語数およびバイト数を表示します。
FILE が複数指定された場合は行数の合計も表示します。
単語とは空白文字や行の始まりや終わりで分けている空白ではない文字列です。
FIRST から LAST までの数字を INCREMENT 間隔で表示します。
端末設定の表示や変更を行います。
%s (%d-bit) チェックサムを表示または照合します。
チェックサムの表示と照合を行います。
デフォルトでは 32 ビット CRC アルゴリズムを使用します。
各ファイルの行から選択した部分だけを切り出し、標準出力に表示します。
現在時刻、システム起動からの時間、システム上にいるユーザ数、および
直近 1、5、15 分間の実行キューに存在するジョブの平均数を表示します。標準入力に接続されている端末のファイル名を表示します。

各 FILE の先頭 %d 行を標準出力に出力します。
FILE が 2 個以上指定された場合は
ヘッダーとしてファイル名が内容の前に出力されます。
現在の作業ディレクトリのフルパス名を表示します。

各 FILE の最後の %d 行を標準出力に書き出します。複数の FILE が指定され
た場合、ファイル名がヘッダ情報として出力されます。
指定された各整数 NUMBER の素因数を表示します。コマンドラインに何も指定さ
れない場合は標準入力から読み込みます。

展開された絶対パスを表示します。
現在の実効ユーザ ID に対応したユーザ名を表示します。 id -un と等価です。

ユーザーのログイン名を表示します。

USER で指定されたユーザーとグループの情報を表示します。
USER が指定されない場合は現在のプロセス情報を表示します。

シンボリックリンクの値または正規化されたファイル名を表示します。

要求された処理は実行中ですプロファイリングタイマーが終了しましたプロジェクト: Q. Frank Xia終了Randy Smithリアルタイムシグナル %dNUMBER (複数可) を変換する。何も指定されなかった場合は標準入力から
読み込んだ数字を変換する。
FILE 内の各段落を再整形して標準出力に出力します。オプション -WIDTH は
--width=DIGITS の省略形です。
正規表現が大きすぎますFILE を削除 (unlink) します。

中身が空のディレクトリ DIRECTORY (複数可) を削除します。

ファイル名の変更、もしくは複数のファイルをディレクトリへ移動します。
指定された全ての STRING または 'y' からなる行を繰り返し出力します。

%s のバグは <%s> に報告してください。
翻訳に関するバグは <https://translationproject.org/team/ja.html> に連絡してください。
バグを発見したら <%s> に報告して下さい。
翻訳に関するバグは<translation-team-ja@lists.sourceforge.net>に報告してください。
要求がキャンセルされました要求がキャンセルされませんでしたリソースが無くなりましたRichard M. StallmanRichard MlynarikRoland HuebnerRoland McGrathRoss Paterson優先度を指定して COMMAND を実行します。優先度はプロセススケジューリング
に影響を与えます。COMMAND を指定しない場合、現在の優先度を表示します。
優先度値の範囲は %d (このプロセスが最高優先) から %d (このプロセスが
最低優先) です。
ルートディレクトリを NEWROOT に設定してコマンドを実行します。

HUP シグナルを無視するように設定して COMMAND を実行します。

標準入出力ストリームのバッファ動作を変更して COMMAND を実行します。
プログラムを異なるセキュリティコンテキストで実行します。
CONTEXT も COMMAND も指定しない場合は現在のセキュリティコンテキストを表示
します。
Russell CokerSamuel NevesScott BartramScott MillerSegmentation faultプロセスにシグナルを送信する、もしくはシグナル一覧を表示します。
ai_socktype に対して Servname がサポートされていません問題を回避するために LC_ALL='C' を指定してください.環境変数 NAME を VALUE に設定し、 COMMAND を実行します。
シェル: 各 FILE が存在するファイルシステムに関する情報を表示します。
デフォルトでは全てのファイルシステムについて表示します。
各 FILE を指定した大きさまで拡張または切り詰めを行います。

FILE が存在しない場合は作成されます。

FILE が指定したサイズより大きい場合は、大きい部分のデータは失われます。
FILE が指定したサイズより小さい場合は、ファイルは拡張され、
スパースに拡張した部分 (hole) を読み込むと、値が 0 のバイトとなります。
Simon Josefssonサイズスペシャルファイルを作成する時は、MAJOR および MINOR デバイス番号を
指定しなければなりません。スタックエラーCOMMAND を開始し、DURATION 経過後も実行中の場合は終了させます。
停止停止 (シグナル)停止 (tty 入力)停止 (tty 出力)Stuart Kemp成功各ファイルのデバイス使用量を集計します。ディレクトリは再帰的に処理されます。
キャッシュされた書き込みを永続的ストレージに同期 (sync) します。

1 つ以上のファイルが指定された場合は、指定されたファイルだけ、
もしくはそれらのファイルが含まれるファイルシステムが sync されます。

システムエラー時間名前解決に一時的に失敗しましたTerminated次のオプションフラグを '%' の後に続けることができます:

  -  (ハイフン) フィールドの空白を埋めない
  _  (アンダースコア) フィールドの空白をスペースで埋める
  0  (ゼロ) フィールドの空白を 0 で埋める
  +  空白を 0 で埋め、4 桁を超える年の場合は '+" を前に付ける
  ^  可能な場合は大文字を使用する
  #  可能な場合は小文字を使用する
比較した文字列は %s と %s です.Torbjörn GranlundTrace/breakpoint trap終端のバックスラッシュ標準入力から読み込んだ文字を置換、切り詰め、削除し、標準出力に書き込みます。
STRING1 と STRING2 で、動作を制御する文字配列 ARRAY1 と ARRAY2 を指定します。

詳しくは '%s --help' を実行して下さい。
ファイル %3$s を削除するためには '%1$s ./%2$s' を行ってください。
削除および切り詰めの繰り返しを両方とも行うときは文字列を2個与えなければいけません。置換を行うときは2個の文字列を与えなければいけませんタイプUlrich Drepper不明なエラー不明なシグナル %d不明なシステムエラー( または \( が不一致です) または \) が不一致です[, [^, [:, [., [=< が不一致です\{ が不一致です各 FILE のアクセス日時と更新日時を現在時刻に更新します。

引数 FILE が存在しない場合、 -c または -h オプションが指定されない限り、
空ファイルが作成されます。

FILE 引数に - を指定した場合は、特別な動作となり、
標準出力に関係づけられているファイルの日時を変更します。
緊急 I/O 状態使用法: %s
使用法: %s --coreutils-prog=PROGRAM_NAME [PARAMETERS]... 
使用法: %s COMMAND [ARG]...
または: %s OPTION
使用法: %s EXPRESSION
または: %s OPTION
使用法: %s FILE
または: %s OPTION
使用法: %s FILE1 FILE2
または: %s OPTION
使用法: %s FORMAT [ARGUMENT]...
または: %s OPTION
使用法: %s 名前 [接尾辞]
または: %s オプション... 名前...
使用法: %s NUMBER[SUFFIX]...
または: %s OPTION
NUMBER 秒間停止します。 NUMBERは整数や不動小数点でなければなりません。
SUFFIX には、秒を表す 's' (デフォルト)、分を表す 'm'、時を表す 'h'、
日を表す 'd' を指定します。
複数の引数を指定した場合、指定した値の合計の時間だけ停止します。

使用法: %s OPTION... COMMAND
使用法: %s OPTION... FILE...
使用法: %s OPTION... [FILE]...
使用法: %s [-F DEVICE | --file=DEVICE] [SETTING]...
または: %s [-F DEVICE | --file=DEVICE] [-a|--all]
または: %s [-F DEVICE | --file=DEVICE] [-g|--save]
使用法: %s [-WIDTH] [OPTION]... [FILE]...
使用法: %s [-s SIGNAL | -SIGNAL] PID...
または: %s -l [SIGNAL]...
または: %s -t [SIGNAL]...
使用法: %s [NAME]
または: %s OPTION
現在のシステムのホスト名を表示します。

使用法: %s [OPERAND]...
または: %s OPTION
使用法: %s [OPTION]
使用法: %s [OPTION]
現在のホスト識別用の数値 (16 進数) を表示します。

使用法: %s [OPTION] NAME...
使用法: %s [OPTION] [COMMAND [ARG]...]
使用法: %s [OPTION] [FILE]
FILE 内に含まれている部分的に順序づけられた項目を使用して、完全に順序づけられた一覧
を作成し、出力を行います。
使用法: %s [オプション]... [ファイル]...
使用法: %s [OPTION] [NUMBER]...
使用法: %s [OPTION] [VARIABLE]...
指定した環境変数 VARIABLE の値を表示します。VARIABLE を指定しない場合は全ての
環境変数の名前と値を表示します。

使用法: %s [OPTION]...
使用法: %s [OPTION]... %s FILE...
または: %s [OPTION]... --reference=RFILE FILE...
使用法: %s [OPTION]... CONTEXT FILE...
または:  %s [OPTION]... [-u USER] [-r ROLE] [-l RANGE] [-t TYPE] FILE...
または:  %s [OPTION]... --reference=RFILE FILE...
使用法: %s [OPTION]... DIRECTORY...
使用法: %s [OPTION]... DURATION COMMAND [ARG]...
使用法: %s [OPTION]... FILE PATTERN...
使用法: %s [OPTION]... FILE...
使用法: %s [OPTION]... FILE1 FILE2
使用法: %s [OPTION]... LAST
または: %s [OPTION]... FIRST LAST
または: %s [OPTION]... FIRST INCREMENT LAST
使用法: %s [OPTION]... MODE[,MODE]... FILE...
または: %s [OPTION]... OCTAL-MODE FILE...
または: %s [OPTION]... --reference=RFILE FILE...
使用法: %s [OPTION]... NAME TYPE [MAJOR MINOR]
使用法: %s [OPTION]... NAME...
使用法: %s [OPTION]... NEWROOT [COMMAND [ARG]...]
使用法: %s [OPTION]... STRING1 [STRING2]
使用法: %s [OPTION]... [ FILE | ARG1 ARG2 ]
使用法: %s [OPTION]... [-T] SOURCE DEST
または: %s [OPTION]... SOURCE... DIRECTORY
または: %s [OPTION]... -t DIRECTORY SOURCE...
使用法: %s [OPTION]... [-T] SOURCE DEST
または: %s [OPTION]... SOURCE... DIRECTORY
または: %s [OPTION]... -t DIRECTORY SOURCE...
または: %s [OPTION]... -d DIRECTORY...
使用法: %s [OPTION]... [-T] TARGET LINK_NAME
または: %s [OPTION]... TARGET
または: %s [OPTION]... TARGET... DIRECTORY
または: %s [OPTION]... -t DIRECTORY TARGET...
使用法: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
使用法: %s [OPTION]... [FILE [PREFIX]]
使用法: %s [OPTION]... [FILE]
使用法: %s [OPTION]... [FILE]
または: %s -e [OPTION]... [ARG]...
または: %s -i LO-HI [OPTION]...
使用法: %s [オプション]... [ファイル]...
使用法: %s [OPTION]... [FILE]...
または: %s [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]
または: %s --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]
使用法: %s [OPTION]... [FILE]...
または: %s [OPTION]... --files0-from=F
使用法: %s [OPTION]... [INPUT [OUTPUT]]
使用法: %s [OPTION]... [INPUT]...   (-G なし)
または: %s -G [OPTION]... [INPUT [OUTPUT]]
使用法: %s [OPTION]... [NUMBER]...
使用法: %s [OPTION]... [TEMPLATE]
使用法: %s [OPTION]... [USERNAME]...
使用法: %s [OPTION]... [USER]...
使用法: %s [SHORT-OPTION]... [STRING]...
または: %s LONG-OPTION
使用法: %s [STRING]...
または: %s OPTION
使用法: %s [コマンドライン引数は無視されます]
または: %s OPTION
使用法: test EXPRESSION
または: test
または: [ EXPRESSION ]
または: [ ]
または: [ OPTION
使用%使用ユーザー定義シグナル1ユーザー定義シグナル2有効な引数:有効な引数:
ファイルシステムに対して有効な書式文字列:

  %a   特権ユーザ以外が利用可能な空きブロック数
  %b   ファイルシステムの合計データブロック数
  %c   ファイルシステムの合計ファイルノード数
  %d   ファイルシステムの空きファイルノード数
  %f   ファイルシステムの空きブロック数
仮想タイマーが終了しました警告: %ju 個の計算したチェックサムが一致しませんでした警告: 書式が不適切な行が %ju 行あります警告: 一覧にある %ju 個のファイルが読み込めませんでした警告: ディレクトリ構造が循環しています
これはファイルシステムが破損しているにほとんど等しい状態です。
**管理者に連絡してください**
以下のディレクトリが循環している一部です:
  %s
警告: --preserve-context は無視されました。カーネルで SELinux が有効ではありません警告: -s オプションが指定されていないため --strip-program オプションは
無視されます警告: 開始時刻照合の際、入力は、このプログラムもしくは等価な個々のプログラムによって
出力された形式でなければなりません。
照合の際、入力はこのプログラムによって出力された形式でなければなりません。
デフォルトの動作では、各行は、チェックサム、スペース、入力モードを
示す文字 (バイナリの場合は '*'、テキストの場合やバイナリかどうかが
重要でない場合は ' ')、ファイル名で構成されます。

GNU システムではバイナリーモードとテキストモードで違いはありません。
ログイン元Window が変更されました--follow (-f) を使用すると、tail はデフォルトでファイル記述子を追跡します。
このため tail で追跡しているファイルの名前が変更されたとしても、 tail は
元のファイルの終端を追跡し続けます。このデフォルトの動作はファイル記述子
ではなく、実際にある名前を持つファイルを追跡する場合には望ましくありませ
ん (例: ログのローテーションなど)。そのような場合には --follow=name を使
用してください。これにより名前の変更、削除、作成などにあわせて名前のついた
ファイルの末尾を追跡するようになります。
各 FILE (デフォルトは標準入力) の入力行を折り返し、標準出力に書き出します。
入力行をランダムに並べ替えて標準出力に書き込みます。
ファイル毎に行を逆順にして標準出力に書き込みます。
指定した各ファイルに行番号を付け足して標準出力に書き込みます。
指定されたすべてのファイルの内容をソートして標準出力に書き込みます。
作者 %s および %s。
作者 %s、 %s、 %s、
%s、 %s、 %s、 %s、
%s、 %s、 および他の方々。
作者 %s、 %s、 %s、
%s、 %s、 %s、 %s、
%s、および %s。
作者 %s、 %s、 %s、
%s、 %s、 %s、 %s、
および %s。
作者 %s、 %s、 %s、
%s、 %s、 %s、および %s。
作者 %s、 %s、 %s、
%s、 %s、および %s。
作者 %s、 %s、 %s、
%s、および %s。
作者 %s、 %s、 %s、
および %s。
作者 %s、 %s、および %s。
作者 %s。
置換の時には、2個目の文字列中で [=c=] 形式の表現はできません[OWNER][:[GROUP]]キーに対して ^ が一致しません
^[nN]^[yY]`優先度を指定するコマンドを与えなくてはいけませんai_family はサポートされていませんai_socktype はサポートされていません%2$s に対する引数 %1$s が曖昧ですフィールドを操作する場合のみ入力区切り文字を指定できます--preserve-root=all が指定されているため出力を %s に追記します非対称の入力スピード (%lu) と出力スピード (%lu) はサポートしていませんAVX2 サポートが検出されませんでしたAVX512 サポートが検出されませんでした%s をバックアップすると元ファイルが壊れます可能性があります -- %s をコピーしませんでした%s をバックアップすると元ファイルが壊れる可能性があります -- %s を移動しませんでしたバックアップタイプbasenc は、ファイルまたは標準入力をエンコード/デコードして標準出力に出力します。
ブロックスペシャルファイルブロックスペシャルファイルはサポートされていませんブロック両方のファイルを標準入力にはできませんバイト/文字オフセット %s が大きすぎますバイト/文字の位置は 1 から始まる番号ですラベルが付けられていないファイル %s に部分的なコンテキストを適用できませんプロセスのコンテキストを取得できません%s にアクセスできません%s にアクセスできません: 他のデバイスにより上書きマウントされています%s をバックアップできません合計と全エントリの表示の両方を、一度に指定することはできませんディレクトリを %s に変更できません%s の所有権を変更できません%s のパーミッションを変更できませんルートディレクトリを %s に変更できませんディレクトリ %s に移動できませんルートディレクトリに移動できません--backupは--exchange、-n、または--update=none-failと一緒に使用できません--target-directory (-t) と --no-target-directory (-T) を同時に指定できません--target-directory および --no-target-directory は組み合わせて使用できません-e と -i オプションを同時に使用することはできませんascii、ebcdic、ibm のどの2個も組み合わせることはできませんblock と unblock を組み合わせることはできませんdirect と nocache を組み合わせることはできませんexcl と nocreat を組み合わせることはできませんlcase と ucase を組み合わせることはできませんモードと --reference オプションを同時に使用できません-l または -t とシグナルを組み合わせることができませんファイル名 %s および %s を比較できませんU+%04X をローカル文字セットに変換できませんU+%04X をローカル文字セット %s に変換できませんディレクトリ %s を自分自身 %s にコピーできません循環するシンボリックリンク %s はコピーできませんディレクトリ %s を作成できませんfifo %s を作成できません%s から %s へのハードリンクを作成できません%2$s へのリンク %1$s を作成できません通常ファイル %s を作成できません特殊ファイル %s を作成できませんシンボリックリンク %s を作成できません%s から %s へのシンボリックリンクを作成できません一時ファイルを %s 内に作成できません%s を参照できません%s のデバイスと i ノードを決定できませんホスト名を特定できません%s の位置が決定できません。ポーリングに戻ります--symbolic なしでは --relative は使用できません%s で ioctl を実行できません%sと%sは交換できませんグループ ID %jd のグループ名がみつかりませんグループ ID %ju のグループ名がみつかりませんユーザー ID %ju に対するユーザー名が見つかりません%s を名前で追跡できません%s を fstat することができませんカレントディレクトリを取得できません実効 GID を取得できません実効 UID を取得できません優先度を取得できません実 GID を取得できません実 UID を取得できませんシステム名を取得できません%s ののサイズを取得できませんlseek %s をすることができませんハードリンクもシンボリックリンクも作成できませんディレクトリ %s を作成できません%s から %s へ移動できません%s を自分自身のサブディレクトリ %s に移動できません%s をオープンできません%s を 読み込み用に開くことが出来ません%s を書き込み用に開くことができませんディレクトリ %s を開くことが出来ません参照先がないシンボリックリンク %s を操作できません%s を上書きできません書式設定を行った出力を実行することができません拡張属性を保護できません。cp が xattr サポートなしで作成されていますSELinux が有効なカーネル以外ではセキュリティコンテキストを保護できません単一項目のみ表示するオプションを複数指定できませんユーザーが指定された時はセキュリティコンテキストを表示できません読み込みできませんディレクトリ %s を読み込めませんファイル名を %s から読み込むことが出来ません%s に関するファイルシステム情報を読み込むことができません実時間の時計を読み取ることができませんシンボリックリンク %s を読み込めませんマウントされているファイルシステムのテーブルを読めません%s を削除できません%s を実行できませんstripが起動できません %s%s を設定できません日時を設定できません名前を %s に設定できません優先度を設定できません%s のパーミッションを設定できませんターゲットのコンテキストを設定できません。そのまま維持されます%s の時刻を設定できません入力の終端を越えて読みとばすことはできませんCOMMAND と --null (-0) を同時に使用することはできません--data と --file-system は同時には指定できません段組の横方向印刷(-a)と並列印刷を同時指定できません.並列に印刷するときには列数を指定できません時刻を2カ所以上から取得するようには指定できません複数の分割方法は指定できません%s を stat できませんカレントディレクトリを stat できません (現在 %s )標準入力の情報を取得 (stat) することはできません%s を statx できません%s に touch できません%s を復元できません%s を削除 (unlink) できません%s を非設定にできません%s を監視できません%s の親ディレクトリを監視できません最終的にカーネルバグを回避できません%s のグループを %s から %s へ変更しました
%s の所有者を %s から %s へ変更しました
%s のグループを変更中%s の所有者を変更中%s のパーミッションを変更しています%s のセキュリティコンテキストを変更しています
文字のオフセットがゼロです範囲外の文字キャラクタスペシャルファイルキャラクタスペシャルファイルはサポートされていません子プロセスがシグナルのプロセスマスクをリセットしませんでした%s のパーミッションを消去しています時刻の変更クローズに失敗しました%s (fd=%d) を閉じていますディレクトリ %s を閉じています入力ファイル %s を閉じています出力ファイル %s を閉じています標準入力を閉じています互換モードでは 1 個のファイルしか使用できません空の文字列を置換する文字列が競合しています与えられたセキュリティコンテキスト指定が競合しています連続データ (contiguous data)コピー: %s -> %s%s の圧縮プログラムが起動できませんでした%s -d の圧縮プログラムが起動できませんでした%s のバッファリングモードを %s に設定できません
一時ファイルを作成することが出来ませんでした%s の中に i ノードが一致しているディレクトリが見つかりません起動時刻を取得できませんでした非ブロッキングモード %s を再設定できませんでしたディレクトリ %s を作成しましたディレクトリ %s を作成しました
ディレクトリ %s を作成していますファイル %s を作成しています
区切り文字 LIST がエスケープされていないバックスラッシュで終了しています: %sダイジェスト %s の長さは 244、256、384、512でなければいけませんディレクトリ監視対象のファイルを含むディレクトリが削除されましたゼロでの割り算doorファイル名が空ですレコードの区切り文字がありませんタブが空です%s の正規化でエラーが発生しましたファイルクローズエラー%s から %s へのコピー時のエラー%s の解放時のエラー正規表現検索中のエラー正規表現による検索中のエラー%s のオープン時のエラー%s の読み込みエラーinotify イベントの読み込み中にエラーが発生しました入力読み込み中にエラーが発生しました%s の sync 時のエラーコマンド待機中にエラーが発生しましたinotify イベントと出力イベントの待ち受け中にエラーが発生しました%s の書き込みエラーエラー: 正規表現が長さ 0 にマッチしました: %s交換: %s <-> %sFILE=%s で実行しています
終了=%s: 余分な引数です余分な演算子 %s追加のオペランド %s は -%c と併せて使用できません%s にアクセスできませんでした%lu バイトのstdioバッファの割り当てに失敗しました
シグナル%dを遮断ことを失敗しました%s の正規化に失敗しました%s のコンテキストを %s に変更できません%s のグループを %s から %s へ変更できませんでした
%s のグループを %s に変更できませんでした
%s のモードを %04lo (%s) から %04lo (%s) へ変更できませんでした
%s の所有者変更に失敗しました
%s の所有者を %s から %s へ変更できませんでした
%s の所有者を %s に変更できませんでした
%s にディレクトリを変更 (chdir) できませんでした%2$s から %1$s への複製に失敗しました%s をクローズできませんでした入力パイプを閉じるのに失敗しました新しいコンテキストを計算できませんでした入力された数字のいくつかが変換できませんでしたテンプレート %s からディレクトリを作成できませんテンプレート %s からファイルを作成できませんハードリンク %s の作成に失敗しました%s から %s へのハードリンクの作成に失敗しました%s へのハードリンクの作成に失敗しましたパイプの作成に失敗しましたセキュリティコンテキストの作成に失敗しました: %sシンボリックリンク %s の作成に失敗しました%s から %s へのシンボリックリンクの作成に失敗しました一時ファイル %s を作成できませんキャッシュ破棄に失敗しました: %s%s の拡張に失敗しました%s が見つかりませんでした%s の属性情報を取得できませんでした現在のコンテキストを取得できませんでした現在のプロセスのグループ取得に失敗しましたユーザー %s のグループ取得に失敗しました%s のセキュリティコンテキストを取得できませんでしたシグナル %d のシグナル動作を取得できませんでしたシグナルのプロセスマスクを取得できませんでした補助グループの取得に失敗しましたファイル %s が見つかりませんでした一時ファイル名を作成できません%s を開けませんでした読み込み用に %s を開くことができませんでした書き込み用に %s を開くことができませんでした表示用に値 '%Lf' を準備できませんでした%s の作成者の保護に失敗しました%s の所有者の保護に失敗しました%s のパーミッションの保護に失敗しました%s のタイムスタンプの保護に失敗しました標準エラー出力のリダイレクトに失敗しました%s を削除できません%s を削除できません: シンボリックリンクを辿れませんディレクトリ %s の削除に失敗しました標準入力が使用できないため取り込むことに失敗しました%s のコンテキストの復元に失敗しましたデフォルトのファイル作成コンテキストの復元に失敗しました初期作業ディレクトリに戻るのに失敗しました%s でストリームの巻き戻しに失敗しましたコマンド %s の実行に失敗しましたコマンド実行に失敗しました: "%s -c %s"%s セキュリティコンテキストコンポーネントを %s に設定出来ませんでした環境変数 FILE の設定に失敗しました%s のデフォルトの作成コンテキストを設定できませんでした%s 用の既定のファイル作成コンテキストを設定できませんでした既定のファイル作成コンテキストを %s に設定できませんでしたファイルディスクリプターのテキストモード/バイナリーモードを設定できませんでしたグループ ID の設定に失敗しましたロケールを設定できませんでした新しい範囲に設定できませんでした: %s新しいロールに設定できませんでした: %s新しいタイプに設定できませんでした: %s新しいユーザを設定できませんでした: %sシグナル %d のシグナル動作を設定できませんでしたシグナルのプロセスマスクを設定できませんでした補助グループの設定に失敗しました%s のセキュリティコンテキストを設定できませんでしたユーザー ID の設定に失敗しました%s の属性情報を取得 (stat) できませんでした%s の属性情報を取得 (stat) できませんでした: %s をスキップしますファイル %s を %jd バイトへ切り詰めるのに失敗しました%jd バイトに出力ファイル %s を切り詰めることに失敗しましたO_DIRECT をオフにできませんでした : %s環境を %s に更新することができませんでした%s に対する fdatasync に失敗しましたfflush に失敗しましたフィールドの区切り記号は単位の区切りより優先ですフィールド番号 %s が大きすぎますフィールド番号がゼロですフィールド区切り文字 %s は、数値の小数点として扱われますフィールド区切り文字 %s は、数値のグループ区切り文字として扱わますフィールド区切り文字 %s は、数値のマイナス符号として扱われますフィールド区切り文字 %s は、数値のプラス符号として扱われますフィールドは 1 から始まる番号ですfifoファイル %d がソートされていませんファイルオペランドと --files0-from を同時に使用できませんファイルオペランドと --print-database (-p) を組み合わせることはできません%s 形式ファイルシステムが選択/非選択の両方で指定されましたfork システムコールが失敗しましたFORMAT %s が %% で終了していますFORMAT %s に %% 指定がありませんFORMAT %s に %% 指定が多すぎますFORMAT %s に不明な %%%c 指定があります等しい幅の文字列を表示するときに FORMAT 文字列を指定できないかもしれませんfprintftimeのエラー%s に対する fsync に失敗しましたfts_close に失敗しましたfts_read に失敗しましたfts_read に失敗しました: %s相対パスの生成時%s の新たな属性情報を取得中%s のグループは %s のまま保留されました
グルーピングと繰り返し回数の表示を同時に指定しても意味がありませんグルーピングは --to と一緒に使用できませんグルーピングはこのロケールでは効果がありませんiconv 関数が有効ではありませんiconv 関数が使えませんID=複数の引数の場合には --no-newline を無視します入力を無視します入力を無視し、出力を %s に追記します標準入力を無視し、標準エラー出力を標準出力にリダイレクトします環境変数 TABSIZE の値(%s) が不適切なタブサイズなので無視します環境変数 QUOTING_STYLE の値(%s)が不適切なので無視します環境変数 COLUMNS の値(%s) が不適切な行幅なので無視します非オプション引数を無視します結合するフィールドが不完全です %td、%td互換性のないタブですindx: mode: actual modeinotify を使用できません。ポーリングに戻りますinotify 資源を使い果たしました入力がソートされていません入力ファイルが長すぎます整数がオーバーフローしましたデバイス間移動失敗: %s から %s 。移動先を削除できません%s の引数 %s が無効です引数 '%3$s' に対して %1$s%2$s が無効です--%s の引数 %s が無効です不正な --threshold の引数 '-0' です無効な IO ブロックサイズです無効なプロセス番号ですINCREMENT に無効な値 0 が指定されています: %s%s: 無効な優先度です%s: 無効な引数です%2$s に対する引数 %1$s が間違っています-S の文字列の末尾に無効なバックスラッシュがあります無効な本文番号書式です: %s%2$s に対するバッファリングモード %1$s は無効です
無効なバイトまたはフィールド範囲です無効なバイト/文字位置 %s型指定文字列 %2$s に無効な文字 '%1$c' が含まれています%s は無効な文字クラスです無効な塊の番号です無効なコンテキスト: %s無効な変換です末尾の変換修飾子が無効です: %c末尾の変換修飾子が無効です: \%.3o%s は無効な日付です%s: 無効な日付の書式です無効な降順の範囲です無効なデバイス番号です: %s %s無効なデバイスタイプです: %s無効なフィールド番号です: %s無効なフィールド範囲です無効なフィールド指定です: %s無効なフィールド値 %s無効なフィールド幅です: %sフィールド指定でのファイル番号は無効です: %s無効なフィールド番号です: %s無効なファイルサイズです変換修飾子に無効なフラグがあります: %%%c%c引数の浮動小数が無効です: %s無効な振った番号書式です: %s無効なフォーマット %s です。ディレクティブは %%[0]['][-][N][.][N]f でなければいけません無効な隙間の幅です: %sグループ指定が不正無効なグループ %s無効なグループリスト %s無効なヘッダ番号書式です: %s無効なヘッダ値 %s無効な入力無効な入力 (長さは 4 の倍数でなければいけません)無効な入力フラグです無効な入力範囲です無効な整数 %s無効な整数の引数です無効な ispeed %s無効な長さです無効な長さです: %s無効な行数です: %s%s: 無効な回線制御規則です無効な行番号幅の指定です行番号の増分が正しくありません空行の行番号が正しくありません無効な行番号書式です: %s無効な行幅です無効な行幅です: %s無効な MAJOR デバイス番号です: %s無効な最大の深さ %s ですオープン間での無変化の状態の最大数が無効です無効な MINOR デバイス番号です: %s無効なモード無効なモード: %s無効なモード: %s無効な数字です',' の後の数字が無効です'-' の後の数字が無効です'.' の後の数字が無効ですフィールド開始番号が無効です無効なバイト数です比較するバイト数の指定が無効ですスキップするバイト数の指定が無効です無効な塊の数です無効な列数ですスキップするフィールド数の指定が無効です無効な行数です無効な行数です: %s無効な繰り返し回数です無効な秒数です: %s無効な数字です: %s無効なオプション -- %c無効なオプション -- %c。 -WIDTH は最初の引数である場合のみ認識されます。それ以外では
 -w N を使用してください。無効なオプション -- '%c'無効な ospeed %s無効な出力アドレスの基数 '%c' が指定されました
[doxn] のいずれかを指定してください無効な出力フラグです無効なパディング値 %s無効なページ範囲です %s無効な精度フォーマットです: %s無効な精度です: %s端点がない無効な範囲です: -[c*n] の構成内にある繰り返し回数 %s は無効です-S に無効なシーケンス '\%c' があります無効な指定開始行番号が正しくありません無効なステータスレベルです%s: 無効な接尾辞です。ディレクトリ区切り文字が含まれています引数 '%3$s' に対して無効な接尾辞 %1$s%2$s です入力 %s に無効な接尾辞があります: %s入力に無効な接尾辞が含まれています: %s接尾辞の長さが正しくありません無効なタブ幅です%s: 無効なテンプレートです。ディレクトリ区切り文字が含まれています%s: 無効なテンプレートです。 --tmpdir を使用する場合、絶対パスでないかもしれません%s: 無効な時間間隔です無効な時刻書式です: %s無効な後続のオプションです -- %c無効な TYPE 指定文字列です: %s無効な TYPE 指定文字列です: %s;
このシステムでは %d バイト浮動小数点型を扱えません無効な TYPE 指定文字列です: %s;
このシステムでは %d バイト整数型を扱えません単位のサイズが無効です: %s\%c%0*x: 無効なユニコード文字名ですユーザ指定が不正無効なユーザー: %s無効な幅無効な折り返しサイズ無効な長さが0のファイル名ですiopoll エラー%s に関して再帰的に操作することは危険です%s に関して再帰的に操作することは危険です (%s も同様)キー %lu の幅は 0 のため無視されますキー %lu が数値のため複数のフィールドに展開されます大きな入力値 %s: 精度が失われる可能性がありますlast=ファイル名 %s の要素の先頭に '-' がありますキー %lu において先頭の空白類文字は意味を持ちます。'b' も指定することを検討してください長さが 8 の倍数ではありませんファイル名 %3$s の長さ %2$td は制限値 %1$td を超過していますファイル名の要素 %3$s の長さ %2$td は制限値 %1$td を超過しています標準入力に対する行モードのバッファ設定は意味がありません行番号 %s が前に出現した行番号 %jd より小さい値です行番号が溢れました現在の rlimit に基づいた --%s の引数の最大値は %u です%s のダイジェストの最大長は %d ビットですメモリを使い果たしました大きさ %td バイトの入力バッファによりメモリを使い果たしました (%s)大きさ %td バイトの出力バッファによりメモリを使い果たしました (%s)メッセージキューデータとともにファイルを移動しましたデータなしでファイルを移動しました--%s の引数の最小値は %s です。[:upper:] と [:lower:] との構成が一致しません末尾の %% 変換修飾子が無効です%s がありません入力に接尾辞 'i' がありません: %s (例えば Ki/Mi/Gi)%s の後に引数がありません%s に対する引数がありません文字クラス名がありません '[::]'末尾の変換修飾子が指定されていません%s の後に宛先のファイルオペランドがありませんエンコード種別が指定されていません等価クラスの文字がありません '[==]'ファイルオペランドがありませんエスケープ中に 16 進数の数値がありませんバイト/文字の位置指定リストがありませんフィールドのリストがありませんオペランドがありません%s の後にオペランドがありませんモードにはファイルパーミッションのビットのみ指定できます%s のモードを %04lo (%s) から %04lo (%s) へ変更しました
%s のモードは %04lo (%s) として保留されました
複数文字の区切り文字 %s複数文字のタブ %s複数の -i オプションが指定されています-l または -t オプションが複数指定されています複数の圧縮プログラムが指定されています複数のフィールドが指定されました複数のレバレッジ複数の出力区切り文字が指定されました複数の出力ファイルが指定されています複数の出力形式が指定されています複数のランダムソースが指定されました複数の相対位置を表すオプションが指定されています複数のロール複数文字の区切り文字が指定されました複数の宛先ディレクトリが指定されています複数のタイプ複数のユーザ多重ブロック特殊ファイル多重キャラクタ特殊ファイル多重ファイル--argv0 (-a) と一緒にコマンドを指定する必要があります--chdir (-C) と一緒にコマンドを指定する必要があります名前付きファイルシンボリックリンク %s もその参照先も変更されませんでした
ネットワークスペシャルファイル環境変数 SHELL が定義されておらず、シェル型のオプションも与えられていません%s の所有者に変更はありません
コマンドが指定されていません変換オプションが指定されていませんファイルシステムが処理されませんでしたファイルが全く残っていません未知の UID %ju に対してグループが指定されていません%s からの入力がありません繰り返す行がありませんログイン名がありませんプロセス ID が指定されていません-S 文字列に終了のクォートがありません文字列ダンプ時の型は指定できませんユーザ名が指定されていません。 -l を使用する場合は最低 1 個は指定しなければいけません整数でない引数ファイル名 %2$s の中に可搬性のない文字 %1$s があります。tty ではありません%s の置き換えを行いません参照先がないシンボリックリンク %s を通じて書き込むことはできませんparallel の引数は 0 ではいけませんこのロケールでは %s を数値の小数点として使用します数字の接尾辞の開始値が接尾辞の長さに対して長過ぎます非推奨なキー %s が使用されています。代わりに %s を使用してくださいオフファイル %s を読み込み中にオフセットがオーバーフローしましたオフセット過大: seek=%jd (%td バイト) ブロックの長さまで切り詰めることができませんディレクトリ %s をスキップしていますオン${VARNAME} 展開だけに対応しています。 %s でエラーが見つかりました。[c*] 繰り返し回数指定は 2個目の文字列中では1回だけ利用できますDEVICE は一つだけ指定できます指定できるリストは 1 つだけです複数の -d オプションのうち最後のものだけを使用します複数の -s オプションのうち最後のものだけを使用しますオープンに失敗しましたオプション '-%s' は無視されますオプション '-r' は最後の比較のみに適用されます--output オプション: 不明なフィールド %s です--output オプション: フィールド %s が複数回使用されていますオプション --skip-chdir は NEWROOT が古い %s の場合にのみ使用できます標準の形式ではオプション --zero は指定できません無効なコンテキストでオプションが使用されました -- %cオプション %s と %s は同時に使用できませんオプション '-%s' は両立しませんオプション --compare (-C) および --preserve-timestamps は排他的ですオプション --compare (-C) および --strip は排他的ですオプション --print-database と --print-ls-colorsr は同時に指定できません(ローカルでは info '(coreutils) %s%s' で参照可能)。
出力ファイルの接尾辞を使い果たしました出力形式: %sファイル %s の拡大時にオーバーフローが発生しました%jd * %td バイトのブロックはファイル %s に対してオーバーフローしています%s の読み込みのオーバーフロー%s の所有者はそのまま保留されました
%s の所有者は %s のまま保留されました
ページ番号が溢れましたページ幅が狭すぎますPCLMUL サポートが検出されませんでしたポートposix_spawnの初期化に失敗しましたposix_spawnのセットアップに失敗しました%s のパーミッションを保存しています%s のタイムスタンプを保存中全ての重複行と繰り返し回数を表示することに意味がありません標準の形式では, 名前または ID だけを表示するには -u, -g, また -G が必要です。疑似アドレスは入力には大き過ぎます範囲指定 '%s-%s' の端点が逆順に指定されています読み込みエラー読み込みに失敗しましたディレクトリ %s を読み込んでいますレコードが大きすぎます標準エラー出力を標準出力にリダイレクトします%s かディレクトリ %s の削除を拒否されました。 %s をスキップします通常の空ファイル通常ファイル入力に許可されていない接尾辞が含まれています: %s (--from の使用を考えてください)%s を削除しました
ディレクトリ %s を削除しました
ディレクトリ %s を削除しています名前変更: %s -> %srun-levelセマフォシグナル %s をコマンド %s に送信しています区切り文字が空であってはなりません問題を回避するために LC_ALL='C' を指定してください%s のフラグを設定中%s のパーミッションを設定します%s のタイムスタンプを設定中です共有メモリオブジェクトスキップバイト数と読み込みバイト数の和が大きすぎます%s をスキップしました
%s をスキップします。異なるデバイス上にあり、コピー中に移動されたため、ファイル %s をスキップしていますソケット標準エラー標準入力標準入力が閉じられています標準出力開始ページ番号 %ju は総ページ番号 %ju を超過しています状態取得 (stat) に失敗しましたフィールド指定に使えない文字があります文字列の比較に失敗文字列の変換に失敗しましたstrip プロセスが異常終了しました区切られていない行の抑制が有効なのは, 
	フィールドを操作する場合のみですシンボリックリンク構文エラー: %s の後ろにあるはずの ')' がありません構文エラー: %s ではなく ')' が来るはずです構文エラー: %s の後に引数がありません構文エラー: 予期しない ')'構文エラー: 予期しない引数 %sシステム起動タブサイズは0(ゼロ)にできませんタブサイズに無効な文字が含まれています: %sタブサイズの指定は昇順でなければなりませんタブの位置 %s が大きすぎますタブ幅が大きすぎますタブが離れすぎていますターゲット %s宛先の %s はディレクトリではありません宛先ディレクトリ %sディレクトリをインストールする際にターゲットディレクトリを指定できません端末=test および/または [%s ソートルールを使用してテキストの並び替えを実行しています単純なバイト比較を使用してテキストの並び替えを実行していますチェックサムの照合時には --binary および --text オプションは無意味です--compare (-C) オプションは許可されていないモードのビットが設定されている場合には無視されます--ignore-missing オプションはチェックサムの照合時のみ意味を持ちます--quiet オプションはチェックサムの照合時のみ意味を持ちます複数ファイルには --raw オプションは使用できません--status オプションはチェックサムの照合時のみ意味を持ちます--strict オプションはチェックサムの照合時のみ意味を持ちます--tag オプションはチェックサムの照合時には意味を持ちません--warn オプションはチェックサムの照合時のみ意味を持ちますチェックサムの照合時には --zero オプションは使用できません[c*] が2個目の文字列に存在しても良いのは置換の時のみです[c*] 繰り返し回数指定は1個目の文字列中では利用できません引数 %s の先頭に '+' がありません。
日付を指定するオプションを使用する場合、オプションでない引数
は '+' で始まる書式文字列でなければいけません。区切り文字に指定できるのは 1 文字だけです監視しているコマンドがコアダンプしましたこのロケールではマルチバイトの数値のグループ区切り文字には対応していません冗長出力と stty が解釈できる出力形式のオプションは排他的ですシェル構文以外を出力するオプションと
シェル構文を選択するオプションは同時に使用できません。表示オプションと設定オプションは同時に指定できません日付表示を指定するオプションが同時に使用できないものです変換前の文字列は %s です比較した文字列は %s と %s ですstrip オプションはディレクトリをインストールする際には使用できません接尾辞の長さは少なくとも %d 必要ですこのシステムは%sの浮動小数点型を扱えません時間 %s が範囲外ですテンプレート %s に含まれている X の数が少なすぎます末尾の %% 変換修飾子が多すぎますSET 内の文字が多すぎます入力行が多すぎます重複した行が多すぎますTEMPLATE が多すぎます合計合計バイト合計文字数合計行数合計ワード数横断失敗: %sttynameのエラー型付メモリオブジェクトuid=%ju現在の作業ディレクトリを記録することができませんセキュリティコンテキスト %s を設定できません予期しないエラー: fts_info=%d: %s
%s に報告してください不明なコマンドの終了ステータスです (%d)不明なコマンドの終了ステータスです (0x%X)環境変数 LS_COLORS の値を解釈できません認識できない --preserve-root の引数です: %s%s : 認識できないオペランドです認識できない接頭辞です: %s未対応の ispeed %s未対応の ospeed %s稼働時間 %2d:%02d,  稼働時間 %jd 日 %2d:%02d  稼働時間 ???? days ??:??,  %s のタイムスタンプを更新中このフェイルセーフを上書きするには --no-preserve-root を使用してくださいshebang 行でオプションを渡すには -[v]S を使ってくださいファイルシステムモードでは %s を使用して標準入力を指定することはできませんAVX2 ハードウェアサポートを使用しますAVX512 ハードウェアサポートを使用しますPCLMUL ハードウェアサポートを使用しますVMULL ハードウェアサポートを使用します値が変換するには大きすぎます: %s値が大きすぎて表示できません: '%Lg' (999Q より大きい値は扱えません)値が大きすぎて表示できません: '%Lg' (--to の使用を考えてください)値/精度が表示するには大きすぎます: '%Lg/%zu' (--to を使うことを検討してください)VMULL サポートが検出されませんでした%s [-d] を待っています子プロセスを待機していますstrip を待っています警告: %s は 0 倍数指定子です; これが意図したものの場合は %s を使ってください警告: %s: 文字定数の後の文字が無視されました警告: %s: コンテキストが見つかりませんでした警告: %s: コンテキスト %s への変更に失敗しました警告: '.' は ':' にする必要があります警告: 'touch %s' は非推奨です。 'touch -t %04ld%02d%02d%02d%02d.%02d' を使用してください警告: --pid=PID はこのシステムではサポートされていません警告: --retry は無視されました。 --retry は追跡をしているときのみ有効です警告: --retry は最初のファイルオープン時にしか指定できません警告: 文字列の最後にあるエスケープされていないバックスラッシュは可搬性がありません警告: 書式文字列の終端にバックスラッシュがあります待機中: 削除できません: %s警告: コアダンプの無効化に失敗しました警告: 標準入力を永久に追跡することは効果的ではありません警告: --context は無視されました警告: --context は無視されました。 SELinux が有効になったカーネルが必要です警告: --context は無視されました。 SELinux/SMACK が有効になったカーネルが必要です警告: %s で始まる余計な引数は無視されます警告: 読み込み失敗後の無効なファイルオフセットです警告: 幅 %td は無効な値です。代わりに %d を使用します警告: 行番号 %s が前に出現した行番号と同じ値です警告: オプション --apparent-size と -b は --inodes の場合には効果がありません警告: セキュリティーラベルの処理に失敗しました警告: setitimer警告: sigprocmask警告: コピー元ファイル %s が複数指定されました警告: コピー元ファイル %s が複数指定されました警告: 統計(-s)と --max-depth=%td の指定が競合しています警告: 統計(-s)と --max-depth=0 は同じ用法です警告: 曖昧な 8 進数のエスケープ \%c%c%c は
	2バイトのシーケンス \0%c%c, %c として解釈されます警告: timer_create警告: timer_settime警告: 認識できないエスケープです: '\%c'不明なファイルSET1 を切り捨てるのではない場合は, 2個目の文字列を指定しなければなりませんファイル名を標準入力から読み込んでいる場合に、ファイル名 %s を指定できません出力形式を指定した場合、モードを設定してはいけません補集合文字クラスで置換を行なうとき, 2 つ目の文字列は該当する文字の全ての
置換結果を特定できなければなりませんstring2 より長い string1 で置換を行う場合には string2 は文字クラス
で終了していてはいけません置換の時、2個目の文字列中で利用できる文字は 'upper' と 'lower' だけですwhiteoutたった今作成したシンボリックリンク %2$s を通して %1$s をコピーできません%s からディレクトリ %s へのハードリンクを作成できませんたった今作成した %s には %s で上書きしません--parents がある場合、宛先はディレクトリでなければなりません--suffix を使用する場合、テンプレート %s は X で終了しなければいけませんFILE=%s で 次のコマンドが終了ステータス %d で終了しました: %sFILE=%s で次のコマンドからシグナル %s を受け取りました: %s書き込みエラー%s への書き込みエラー書き込みに失敗しました%s に書き込み中です--no-preserve-root オプションは短縮することはできません-c, -t, -u, -l, -r, またはコンテキストを指定しなければいけませんバッファリングモードオプションを指定しなければいけませんバイト, 文字, もしくはフィールドのリストを指定してください%2$s と併せて相対的な %1$s を指定しなければいけません%s または %s のいずれかを指定しなければいけません