File: it.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 (1781 lines) | stat: -rw-r--r-- 144,895 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
%+Jbbbcpd!d5f~HgwgG?hhwwii#jklUmi4nn:oopqqr`&ss
t>u^uvrwx7PyyFEzzOz?zM({Bv{K{T|9Z|>||O|PC}M}C}O&~Dv~J~7D>=>IIJF<ۀ8iׂAZ7G %h9KȆ.JC&F,A),kE4ވ;2OS>։D<Z*PŠB@VDV܋F3Ez9AD<;L*
B5FxC387Ip;B59Po*<H(;qFG9<Dv4/H Ei-Dݓ7"4Z;H˔FI[3-> I_AF321f-8Ɨ-M-){$NʘS:m-֙<<.k0OGHM89ϛF	FPKB.&KUS9T/H>͞GUT*G՟NDlAN<BG>ǡ;FBM<ע5CJE?ԣ5AJ(CM9GQ;ӥ10A@r#2צ;
?FJSѧ%I>K7ԨL;Y3JɩN9cLD6/MfL==?;}.0;BUL4KNf,IK,5x;H3+N;z1JM3OJѱ9>VGOݲE-@s@K+ABmDFG<-9V=C;OR
U`;3F&Hm4%9NKN0A7\H#ݺ<4WIIֻA @bKD84KmFMHN=-վ:R>L:޿IKcB.!98H@<E9<FSmr$0(J@$%*: B[>&9#>$b!=?,"2
U;c
&	/M i)"'8` >"8Wv,#$/>n8~1BWr'*E$c "("?b)u"'(7(`""8DQct0."?O`%|6-)>hz
,8)?K]w			K8Ik
3	C@;|(
++20^	1I
5@Ykz:
-	4>Vm$+7DUas


)49>#X|*EX,Ho>BR
g&u

#H@B;ZxB1;tT77	#7R/q
 
/1='o

&*%-=5Bx$
$ASiC|+
 5GYf
{,& '0#Tq)DYnT(FXZ&#&"g.:+Y~=^ dF('oZ!$ 9>Z'<TSX]sHnG		#;3+/_+'#'C<S*A,n!#0"<M*^"E';m , !:Z+y##,0,K#x 
(F$e"'5;Qjz(..Cr%FBN+1*'Rm)

&'B<j:.!3&Bi#'"%	&H	o			 				
% 
F
b
o
|




,
+-A)o833E	y	#"

5
O
`
x
~

%

$
+#2:V!/'!<W*w%#
% !F'h, @$a$#% !@bv(3-!81Z'1%(En
3;.Z$$Dcw )/=Y@:1,Cp;" =!^*-+B[p%1#,"Ps
"
!0Ri"$G g]'=!S*u/2;Le(, 9H * ,    
!!/0!-`!!!&!)!"$%"J"a"q"+"1"""#"##@#$d###!#!#%$($%7$]$l$7{$=$$%$%>%Q%
b%p%-%C%%	&'&"A&%d&&4& &&$'G''9o''"''(%(:(P(n(>(
(((())").)	E)	O)Y))s)))))$)-*7I*********+#/+JS+
+++*++,-,I,`,8},,
,H,U->i-?-?-=(.>f.3.(.N/>Q/@/#/</20J0/e0000000*
1!517W1"1311120,2C]2222H2+*32V3@3#33$	4=.44l4.4<40
57>5cv555
6365F6j|6h60P7,7*737(
8&68(]8888
8/878&(9 O9p9&;(;%<n<C=p^>?]@K@ ;A{\BBpCDFFvGHHNI(JJKgLn%MM81N;jOOWQ*R.S:TLTH'UpUM|UAUaVCnVPVPW;TWDWWGWV:XZXXXbEYDYKY89ZXrZAZK
[ZY[T[S	\M]\\\]^j_Z```a5b7.cOfc.cDc8*dLcd>dEd25eMhe>e_eAUfVfDfP3gDg-gRgGJhBhEhNiQjiai7jIVjEjEjR,k*kKk<kD3l6xl:lUlM@mKmJm`%n9nBnVoEZoQono6apHp7p3qFMqLq9qVr8rr5r<rRsNqsMs!t50t7ft:tYtO3uFu-u-u5&vF\v.vAv,w*AwMlwLw6x->xlxBxEx$y15yVgyUyMzTbzGzLzWL{Q{={-4|^b|L|7}vF}r}D0~Ru~]~@&UgW:QPP:B.RqDāO	[YE=B9K|5ȃ<L;<VńYVvIͅ>=V:Dφ-3BGvBJMLKQ7IG@ɉ;
KFJO݊S-[7݋TTjF\Ic2A;"K^R9M7N5ԏS
N^?BZ0/<ב5SJNOd=>JS,OAДQEdU@@AXMۖM)-w>UG:BRŘKHd?FD4Xy=Қ&E7E}HÛ4:A8|[&#8Z\9ONARWE;BGğRO_WT4\4MơLEa<lOQD3>Ϥ4AC9?7:7]rЦp!
,#/P0S,722jA:߭?HZ-;Ѯ/
/='m@zI.-4
bKp
DZ̱ٱ-	+>!^!ٲ'8X#n.,޳".UN.2Ӵ+2N>k.µ.  9A{E!Ӷ*-Xs"(ȷ1@H/2ظ&)2\$u!ع'62M(+$C1U.ͻ#'=1S
ȼ(޼B6J'Ƚ2LNQ+g?2Ӿ!(:	MW\	b8l95߿%;ap	x	
Y	;c	6
7	
A
ODZE-::A
|421!27?%wN&5>MV^dk|H##<)`"*5DP\iz
)!2
AO\
hsx}''45`8e[~u

'25h
t (DG#kF 'gEEFS\I% 
=HU\h"!
1?Sds
@8


&3'K.sA.Kiu~0	&	#\49	'=Se*$$/Ki(@WiK&
4YG&"%!k
y-,*Ju=biD*&oW%!4=V%AMJOUtV\BOV[	oy60,(#$L qJ'$LRZ5\P3HW-o4J/%U oB*%+$&P*wJG-5Ac*+)(&:O1/>B+<n8"1%*W&&/4+5a,$> 1Q-n2*(#E@"?$&,"SMv(UUC.K#)8:b'06-F^w"072!@TJ5*A6a3%)A0\2.4$"Ad'~//
O]p4;3;o5%B)JtC	*;.W- 17L(`3,1+?H+71)#H)l)811+6]!349&Y(++90V5,,&'S&{2)5FR6"-K!:mN+(#L+d/&5:DUP>%*	P	%l	$	/	a	I
c
z

"
-

:>%MWsKH6`1 Y
(v



-
'!Eg8;!<^"{%":6A*x6%'5G} *#*,!W*y&($E%ja&"@c+}=880=i"*04ew)*814L#,1E_2x44,EW8p<37/W9.&0+*\.
Jg.)";B^V

](y$<+D-VL>+ -< )j 3  % !!.!NI!!!!!!
"""	8"B"#K"-o"" """7#1K#A}#####$$,"$#O$#s$+$Q$%,%-=%=k%3%*%9&B&#b&U&&&e&VQ'X'Y(Y[(W(E
)7S)0)[)M*Gf*%*B*+7+0N+++++++4,1:,5l,$,?,-$-B-9^-O---.Q..6.9.K.+=/$i/9/H/I0C[0<0H0;%1ea111192J@2u2f3Jh3>3-38 40Y4&4'444559+5?e5/5)5(R>GC<S9lfTAU^KY&VT$P*nyKtTB-mrx58?X~8m%bh;[g\rl|(
9I)Dn@|/wI\z%CB^tOuj<,()W_a}G4`?mX	
0c|',0gh<RtRJ!3jYMW!`2__ks<C]73bU}U,k"]+"&PF81Qwwc
,D:[|6BieqpWS~'ybL[#v	L{\&Fp|L)z\ oHWoiwV
#]JN1uCoMn;&D2&vp?nAXMx>v>/rUbli04yh``ae/x0b(?0c
%)E~+ei=`*Yu	9y^HMYk
-+_7zF[EoTkRtkrlE>j@g8OWJ$p	;=7$P}e%uO64FAgq5O
JafBN{m+[_..a=z./9-2q},H ZJ^!Se;=63Z
f5I': d4s <{j2}cHvxs3:GuKgv
#Z?iI*$45oVL2^ZNZG	mQ%G1*wE*lXF@31d'7]yTDLrOY"Idn6A"7~8V{K{"Bh.!-QNp.dcxK=t9UqR E\dqV5!>@S#S
(zP$sfX#'Q]1:@+~jsHQ6DaAf-;:M/N)ChP

  ( 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

A field is a run of blanks (usually spaces and/or TABs), then non-blank
characters.  Fields are skipped before chars.

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

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

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

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

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

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

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

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)

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

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

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

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

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)

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

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

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

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.

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.
        ???      --attributes-only
         don't copy the file data, just the attributes
      --author
         with -l, print the author of each file
      --copy-contents
         copy contents of special files when recursive
      --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)
      --full-time
         like -l --time-style=full-iso
      --lookup      attempt to canonicalize hostnames via DNS
      --message     same as -T
      --no-preserve=ATTR_LIST
         don't preserve the specified attributes
      --no-sync
         do not invoke sync before getting usage info (default)
      --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
      --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
      --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
      --strip-program=PROGRAM
         program used to strip binaries
      --sync
         invoke sync before getting usage info
      --writable    same as -T
   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
  %A   locale's full weekday name (e.g., Sunday)
  %b   locale's abbreviated month name (e.g., Jan)
  %B   locale's full month name (e.g., January)
  %c   locale's date and time (e.g., Thu Mar  3 23:05:25 2005)
  %S   second (00..60)
  %t   a tab
  %T   time; same as %H:%M:%S
  %u   day of week (1..7); 1 is Monday
  %U   week number of year, with Sunday as first day of week (00..53)
  %V   ISO week number, with Monday as first day of week (01..53)
  %w   day of week (0..6); 0 is Sunday
  %W   week number of year, with Monday as first day of week (00..53)
  %h   same as %b
  %H   hour (00..23)
  %I   hour (01..12)
  %j   day of year (001..366)
  %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)
  %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.
  -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
  -B, --ignore-backups
         do not list implied entries ending with ~
  -C
         list entries by columns
  -D, --dired
         generate output designed for Emacs' dired mode
  -F
         same as --follow=name --retry
  -G FILE     FILE exists and is owned by the effective group ID
  -G, --groups
         print all group IDs
  -G, --no-group
         in a long listing, don't print group names
  -H
         equivalent to --dereference-args (-D)
  -H
         follow command-line symbolic links in SOURCE
  -H, --heading     print line of column headings
  -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
         use PWD from environment, even if it contains symlinks
  -N, --read-bytes=BYTES
         limit dump to BYTES input bytes
  -O FILE     FILE exists and is owned by the effective user ID
  -O, --format=roff              generate output as roff directives
  -P, --no-dereference
         don't follow any symbolic links (this is the default)
  -P, --no-dereference
         never follow symbolic links in SOURCE
  -P, --physical
         make hard links directly to symbolic links
  -P, --portability
         use the POSIX output format
  -Q, --quote-name
         enclose entry names in double quotes
  -R, --recursive
         change files and directories recursively
  -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
  -T, --format=tex               generate output as TeX directives
  -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
  -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
         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
  -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=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, --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 FILE     FILE exists and is a directory
  -d, --date=STRING
         parse STRING and use it instead of current time
  -d, --dead        print dead processes
  -d, --decode
         decode data
  -d, --delimiter=DELIM
         use DELIM instead of TAB for field delimiter
  -d, --dictionary-order
         consider only blanks and alphanumeric characters
  -d, --directory
         create a directory, not a file
  -e                       equivalent to -vE
  -e FILE     FILE exists
  -e, --echo                treat each ARG as an input line
  -e, --error=MODE   adjust standard error stream buffering
  -f
         (ignored)
  -f FILE     FILE exists and is a regular file
  -f, --file-system
         display file system status instead of file status
  -f, --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
         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, --skip-fields=N
         avoid comparing the first N fields
  -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, --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, --no-dereference
         affect symbolic links instead of any referenced file
  -i
         prompt before every removal
  -i, --ignore-case
         ignore differences in case when comparing
  -i, --ignore-case
         ignore differences in case when comparing fields
  -i, --ignore-environment
         start with an empty environment
  -i, --ignore-file=FILE         read ignore word list from FILE
  -i, --ignore-garbage
         when decoding, ignore non-alphabet characters
  -i, --ignore-interrupts
         ignore interrupt signals
  -i, --ignore-nonprinting
         consider only printable characters
  -i, --initial
         do not convert tabs after non blanks
  -i, --inode
         print the index number of each file
  -i, --inodes
         list inode information instead of block usage
  -i, --input-range=LO-HI   treat each number LO through HI as an input line
  -i, --input=MODE   adjust standard input stream buffering
  -i, --interactive
         prompt before overwrite
  -i, --interactive
         prompt whether to remove destinations
  -i, --line-increment=NUMBER     line number increment at each line
  -j, --skip-bytes=BYTES
         skip BYTES input bytes first
  -k FILE     FILE exists and has its sticky bit set
  -k, --keep-files
         do not remove output files on errors
  -l
         use a long listing format
  -l, --count-links
         count sizes many times if hard linked
  -l, --join-blank-lines=NUMBER   group of NUMBER empty lines counted as one
  -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
  -m
         change only the modification time
  -m
         fill width with a comma separated list of entries
  -m
         like --block-size=1M
  -m, --chars
         print the character counts
  -m, --machine            print the machine hardware name
  -m, --merge
         merge already sorted files; do not sort
  -m, --mode=MODE
         set file mode (as in chmod), not a=rwx - umask
  -m, --mode=MODE
         set permission mode (as in chmod), instead of rwxr-xr-x
  -n
         (ignored)
  -n, --adjustment=N
         add integer N to the niceness (default 10)
  -n, --digits=DIGITS
         use specified number of digits instead of 2
  -n, --head-count=COUNT    output at most COUNT lines
  -n, --iterations=N
         overwrite N times instead of the default (%d)
  -n, --nodename           print the network node hostname
  -n, --number             number all output lines
  -n, --number-format=FORMAT      insert line numbers according to FORMAT
  -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
         same as --preserve=mode,ownership,timestamps
  -p FILE     FILE exists and is a named pipe
  -p, --print-database
         output defaults
  -p, --process     print active processes spawned by init
  -q, --count       all login names and number of users logged on
  -q, --quiet
         suppress diagnostics about file/dir-creation failure
  -r, --kernel-release     print the kernel release
  -r, --reference=FILE
         display the last modification time of FILE
  -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, --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, --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, --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                       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, --tagged-paragraph
         indentation of first line different from second
  -t, --target-directory=DIRECTORY
         move all SOURCE arguments into DIRECTORY
  -t, --terse
         print the information in terse form
  -t, --time        print last system clock change
  -t, --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                       (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, --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
         natural sort of (version) numbers within text
  -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, --verbose
         always output headers giving file names
  -v, --verbose
         always print headers giving file names
  -v, --verbose
         output a diagnostic for every directory processed
  -v, --verbose
         print a message for each created directory
  -v, --verbose
         print name of each linked file
  -w, --equal-width
         equalize width by padding with leading zeroes
  -w, --number-width=NUMBER       use NUMBER columns for line numbers
  -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, --exclude-type=TYPE
         limit listing to file systems not of type TYPE
  -x, --one-file-system
         skip directories on different file systems
  -x, --one-file-system
         stay on this file system
  -z, --zero
         add a final overwrite with zeros to hide shredding
  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
  binary    use binary I/O for data
  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
  direct    use direct I/O for data
  directory  fail unless a directory
  dsync     use synchronized I/O for data
  excl      fail if the output file already exists
  nocreat   do not create the output file
  notrunc   do not truncate the output file
  noerror   continue after read errors
  fdatasync  physically write output file data before finishing
  fsync     likewise, but also write metadata
  fullblock  accumulate full blocks of input (iflag only)
  ibs=BYTES       read up to BYTES bytes at a time (default: 512)
  iflag=FLAGS     read as per the comma separated symbol list
  noatime   do not update access time
  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, off       never make backups (even if --backup is given)
  numbered, t     make numbered backups
  existing, nil   numbered if numbered backups exist, simple otherwise
  simple, never   always make simple backups
  obs=BYTES       write BYTES bytes at a time (default: 512)
  oflag=FLAGS     write as per the comma separated symbol list
  sync      likewise, but also for metadata
  text      use text I/O for data
 (backup: %s) * [-]iutf8      assume input characters are UTF-8 encoded
 ??:????   TTY context=%s groups= old %.*s: invalid conversion specification%b %e  %Y%b %e %H:%M%s (for regexp %s)%s -> %s (unbackup)
%s [-d] terminated abnormally%s and %s are the same file%s exists but is not a directory%s has become accessible%s has become inaccessible%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 specified but %s was not%s: %s: line number out of range%s: %s: match not found%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 overwrite directory%s: cannot rewind%s: cannot seek%s: cannot shred append-only file descriptor%s: cannot skip%s: cannot skip to specified offset%s: 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 truncating%s: expected a numeric value%s: failed to close%s: failed to open for writing%s: failed to remove%s: fcntl failed%s: fdatasync failed%s: file has negative size%s: file has shrunk too much%s: file too large%s: file truncated%s: fstat failed%s: fsync failed%s: hard link not allowed for directory%s: input contains a loop:%s: input contains an odd number of tokens%s: input file is output file%s: integer expected after delimiter%s: invalid count at start of %s%s: invalid directive%s: invalid field specification %s%s: invalid file type%s: invalid option -- '%c'
%s: invalid pattern%s: invalid process id%s: invalid regular expression: %s%s: invalid signal%s: 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 size information for this device%s: not listing already-listed directory%s: option requires an argument -- '%c'
%s: overwrite %s? %s: pass %lu/%lu (%s)...%s: pass %lu/%lu (%s)...%s%s: pass %lu/%lu (%s)...%s/%s %d%%%s: read error%s: remove %s %s? %s: remove write-protected %s %s? %s: removed%s: removing%s: renamed to %s%s: replace %s? %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: value not completely converted%s: write error%s: write failed%s:%ju: is not sorted: %.*s%s:%lu: invalid zero-length file name'(C),  load average: %.2f--%s argument %s too large--context (-Z) works only on an SELinux-enabled kernel--reflink can be used only with --sparse=auto-R --dereference requires either -H or -L-R -h requires -P-ef does not accept -l<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 clockAll requests doneArgument buffer too smallArnold RobbinsAvailAvailableBad system callBad value for ai_flagsBrian FoxBroken pipeBus errorCOMMENTCPU time limit exceededCall the link function to create a link named FILE2 to an existing FILE1.

Call the unlink function to remove the specified FILE.

CapacityChange the group of each FILE to GROUP.
With --reference, change the group 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.
Context: %C
ContinuedCopy a file, converting and formatting according to the operands.

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

David M. IhnatDavid MacKenzieDavid MadoreDirectory: Dmitry V. LevinEMT trapEXITEcho the STRING(s) to standard output.

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

F. PinardFAILEDFifos do not have major and minor device numbers.File size limit exceededFiles are created u+rw, and directories u+rwx, minus umask restrictions.
FilesystemFloating point exceptionGiuseppe ScrivanoH. Peter AnvinHangupI/O possibleIDLEIFreeIUse%IUsedIan Lance TaylorIdleIf FILE is not specified, use %s.  %s as FILE is common.

Illegal instructionIn real life: Information requestInodesInterruptInterrupted by a signalInvalid back referenceInvalid character class nameInvalid collation characterInvalid content of \{\}Invalid preceding regular expressionInvalid range endInvalid regular expressionJames YoungmanJay LepreauJim KingdonJim MeyeringJoseph ArceneauxKaveh GhaziKayvan AghaiepourKevin BraunsdorfKilledLINELOGINLoginLogin name: Mark KettenisMatthew BradburnMemory allocation failureMemory exhaustedMichael MeskesMichael StoneMike HaertelMike ParkerMounted onNAMENameName or service not knownNo 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 commands to set the LS_COLORS environment variable.

Determine format of output:
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.

PIDPackaged by %s
Packaged by %s (%s)
Padraig BradyParameter string not correctly encodedPaul EggertPaul RubinPete TerMaatPlan:
Power failurePremature end of regular expressionPrint ARGUMENT(s) according to FORMAT, or execute according to OPTION:

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 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 full filename of the current working directory.

Print the prime factors of each specified integer NUMBER.  If none
are specified on the command line, read them from standard input.

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

Print value of a symbolic link or canonical file name

Processing request in progressProfiling timer expiredProject: Q. Frank XiaQuitRandy SmithReal-time signal %dRegular expression too bigRemove (unlink) the FILE(s).

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

Report %s bugs to: %s
Request canceledRequest not canceledResource lostRichard M. StallmanRichard MlynarikRoland HuebnerRoland McGrathRoss PatersonRun COMMAND with root directory set to NEWROOT.

Run COMMAND, ignoring hangup signals.

Russell CokerScott BartramScott MillerSegmentation faultServname not supported for ai_socktypeSet LC_ALL='C' to work around the problem.Shell: Simon JosefssonSizeSpecial files require major and minor device numbers.Stack faultStoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stuart KempSuccessSystem errorTIMETemporary failure in name resolutionTerminatedThe strings compared were %s and %s.Torbjorn GranlundTrace/breakpoint trapTrailing backslashTwo 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 \{Urgent I/O conditionUsage: %s
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 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] [COMMAND [ARG]...]
Usage: %s [OPTION]...
Usage: %s [OPTION]... CONTEXT FILE...
  or:  %s [OPTION]... [-u USER] [-r ROLE] [-l RANGE] [-t TYPE] FILE...
  or:  %s [OPTION]... --reference=RFILE FILE...
Usage: %s [OPTION]... DIRECTORY...
Usage: %s [OPTION]... FILE PATTERN...
Usage: %s [OPTION]... FILE...
Usage: %s [OPTION]... FILE1 FILE2
Usage: %s [OPTION]... LAST
  or:  %s [OPTION]... FIRST LAST
  or:  %s [OPTION]... FIRST INCREMENT LAST
Usage: %s [OPTION]... MODE[,MODE]... FILE...
  or:  %s [OPTION]... OCTAL-MODE FILE...
  or:  %s [OPTION]... --reference=RFILE FILE...
Usage: %s [OPTION]... NAME TYPE [MAJOR MINOR]
Usage: %s [OPTION]... NAME...
Usage: %s [OPTION]... [ 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]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
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]... [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:Virtual timer expiredWARNING: Circular directory structure.
This almost certainly means that you have a corrupted file system.
NOTIFY YOUR SYSTEM MANAGER.
The following directory is part of the cycle:
  %s
WARNING: ignoring --preserve-context; this kernel is not SELinux-enabledWARNING: ignoring --strip-program option as -s option was not specifiedWarning: WhenWhereWindow 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.
Written by %s and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
Written by %s, %s, %s,
%s, %s, %s, and %s.
Written by %s, %s, %s,
%s, %s, and %s.
Written by %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
and %s.
Written by %s, %s, and %s.
Written by %s.
[=c=] expressions may not appear in string2 when translating^ no match for key
^[nN]^[yY]`a command must be given with an adjustmentai_family not supportedai_socktype not supportedambiguous argument %s for %san input delimiter may be specified only when operating on fieldsappending output to %sbackup typeblock special fileblock special files not supportedblocksboth files cannot be standard inputcan't apply partial context to unlabeled file %scan't get process contextcannot access %scannot backup %scannot both summarize and show all entriescannot change ownership of %scannot change permissions of %scannot change root directory to %scannot change to directory %scannot chdir to root directorycannot combine --target-directory (-t) and --no-target-directory (-T)cannot combine --target-directory and --no-target-directorycannot combine -e and -i optionscannot combine any two of {ascii,ebcdic,ibm}cannot combine block and unblockcannot combine direct and nocachecannot combine excl and nocreatcannot combine lcase and ucasecannot combine mode and --reference optionscannot combine signal with -l or -tcannot compare file names %s and %scannot convert U+%04X to local character setcannot convert U+%04X to local character set: %scannot copy a directory, %s, into itself, %scannot copy cyclic symbolic link %scannot create directory %scannot create fifo %scannot create hard link %s to %scannot create link %s to %scannot create regular file %scannot create special file %scannot create symbolic link %scannot create symbolic link %s to %scannot create temporary file in %scannot dereference %scannot determine device and inode of %scannot determine hostnamecannot determine location of %s. reverting to pollingcannot do ioctl on %scannot follow %s by namecannot fstat %scannot get current directorycannot get nicenesscannot 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 %s for readingcannot open %s for writingcannot open directory %scannot operate on dangling symlink %scannot perform formatted outputcannot preserve extended attributes, cp is built without xattr supportcannot preserve security context without an SELinux-enabled kernelcannot print "only" of more than one choicecannot print security context when user specifiedcannot read directory %scannot read file names from %scannot read file system information for %scannot read realtime clockcannot read symbolic link %scannot read table of mounted file systemscannot remove %scannot run %scannot set %scannot set datecannot set name to %scannot set nicenesscannot skip past end of combined inputcannot specify --null (-0) with commandcannot 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 touch %scannot un-backup %scannot unlink %scannot unset %scannot watch %scannot watch parent directory of %scannot work around kernel bug after allchanged group of %s from %s to %s
changed ownership of %s from %s to %s
changing group of %schanging ownership of %schanging permissions of %schanging security context of %s
character offset is zerocharacter out of rangecharacter special filecharacter special files not supportedclearing permissions for %sclock changeclose failedclosing %s (fd=%d)closing directory %sclosing input file %sclosing output file %sclosing standard inputcompatibility mode supports at most one fileconflicting empty-field replacement stringsconflicting security context specifiers givencould 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 timecreated directory %screating directory %screating file %s
delimiter list ends with an unescaped backslash: %sdirectorydivision by zeroempty file nameempty taberror closing fileerror in regular expression matchererror in regular expression searcherror reading %serror reading inotify eventerror waiting for commanderror writing %sexecuting with FILE=%s
exit=extra argument %sextra operand %sextra operand %s not allowed with -%cfailed 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 input pipefailed to compute a new contextfailed to create directory via template %sfailed to create file via template %sfailed to create hard link %sfailed to create hard link %s => %sfailed to create pipefailed to create security context: %sfailed to create symbolic link %sfailed to create symbolic link %s -> %sfailed to discard cache for: %sfailed to extend %sfailed to find %sfailed to get attributes of %sfailed to get current contextfailed to get groups for the current processfailed to get groups for user %sfailed to get security context of %sfailed to lookup file %sfailed to open %sfailed 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 directory %sfailed to render standard input unusablefailed to restore the default file creation contextfailed to return to initial working directoryfailed 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 file creation context to %sfailed to set group-IDfailed to set user-IDfailed to stat %sfailed to turn off O_DIRECT: %sfailed to update the environment with %sfdatasync failed for %sfflush failedfield number %s is too largefield number is zerofifofile %d is not in sorted orderfile operands cannot be combined with --files0-fromfile operands cannot be combined with --print-database (-p)file system type %s both selected and excludedfork system call failedformat %s ends in %%format %s has no %% directiveformat %s has too many %% directivesformat %s has unknown %%%c directiveformat string may not be specified when printing equal width stringsfsync failed for %sfts_close failedfts_read failedfts_read failed: %sgetting new attributes of %sgroup of %s retained as %s
iconv function not availableiconv function not usableid=ignoring inputignoring input and appending output to %signoring invalid tab size in environment variable TABSIZE: %signoring invalid value of environment variable QUOTING_STYLE: %signoring invalid width in environment variable COLUMNS: %signoring non-option argumentsincompatible tabsinotify cannot be used, reverting to pollinginotify resources exhaustedinput line is too longinter-device move failed: %s to %s; unable to remove targetinvalid --%s argument %sinvalid adjustment %sinvalid argument %sinvalid argument %s for %sinvalid body numbering style: %sinvalid buffering mode %s for %s
invalid character class %sinvalid 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 specifier: %sinvalid field width: %sinvalid file number in field spec: %sinvalid flags in conversion specification: %%%c%cinvalid floating point argument: %sinvalid footer numbering style: %sinvalid gap width: %sinvalid groupinvalid group %sinvalid group list %sinvalid header numbering style: %sinvalid inputinvalid input flaginvalid integer %sinvalid line discipline %sinvalid line numbering format: %sinvalid line width: %sinvalid major device number %sinvalid maximum depth %sinvalid minor device number %sinvalid modeinvalid mode %sinvalid mode: %sinvalid number at field startinvalid number of bytesinvalid number of bytes to compareinvalid number of bytes to skipinvalid number of fields to skipinvalid number of linesinvalid option -- %cinvalid option -- %c; -WIDTH is recognized only when it is the first
option; use -w N insteadinvalid output flaginvalid page range %sinvalid precision: %sinvalid range with no endpoint: -invalid repeat count %s in [c*n] constructinvalid specinvalid suffix %s, contains directory separatorinvalid 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 universal character name \%c%0*xinvalid userinvalid user %sinvalid zero-length file nameit is dangerous to operate recursively on %sit is dangerous to operate recursively on %s (same as %s)key %lu has zero width and will be ignoredkey %lu is numeric and spans multiple fieldslast=line number overflowmemory exhaustedmessage queueminimum --%s argument is %smisaligned [:upper:] and/or [:lower:] constructmissing %% conversion specification in suffixmissing argument after %smissing argument to %smissing conversion specifier in suffixmissing destination file operand after %smissing file operandmissing hexadecimal number in escapemissing 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 tab %smultiple -i options specifiedmultiple -l or -t options specifiedmultiple compress programs specifiedmultiple levelrangesmultiple output files specifiedmultiple output formats specifiedmultiple random sources specifiedmultiple relative modifiers specifiedmultiple rolesmultiple target directories specifiedmultiple typesmultiple usersneither symbolic link %s nor referent has been changed
no SHELL environment variable, and no shell type option givenno change to ownership of %s
no command specifiedno file systems processedno files remainingno input from %sno login nameno process ID specifiedno type may be specified when dumping stringsno username specified; at least one must be specified when using -lnon-integer argumentnot a ttynot writing through dangling symlink %snumber in parallel must be nonzerooffset overflow while reading file %somitting directory %sonly one [c*] repeat construct may appear in string2only one device may be specifiedopen failedoption used in invalid context -- %coptions --compare (-C) and --preserve-timestamps are mutually exclusiveoptions --compare (-C) and --strip are mutually exclusiveoutput file suffixes exhaustedoverflow extending size of file %sownership of %s retained
ownership of %s retained as %s
page number overflowpage width too narrowpreserving permissions for %spreserving times for %sprinting all duplicated lines and repeat counts is meaninglessread errorread failedreading directory %srecord too largeregular empty fileregular fileremoved %s
removing directory, %srun-levelsemaphoreseparator cannot be emptyset LC_ALL='C' to work around the problemsetting flags for %ssetting permissions for %ssetting times of %sshared memory objectskip-bytes + read-bytes is too largeskipping %s, since it's on a different deviceskipping file %s, as it was replaced while being copiedsocketstandard errorstandard inputstandard input is closedstandard outputstat failedstray character in field specstring comparison failedstring transformation failedstrip process terminated abnormallysuppressing non-delimited lines makes sense
	only when operating on fieldssymbolic linksystem 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 %s is not a directorytarget directory not allowed when installing a directoryterm=test and/or [the --binary and --text options are meaningless when verifying checksumsthe --compare (-C) option is ignored when you specify a mode with non-permission bitsthe --quiet option is meaningful only when verifying checksumsthe --status option is meaningful only when verifying checksumsthe --strict option is meaningful only when verifying checksumsthe --warn option is meaningful only when verifying checksumsthe [c*] construct may appear in string2 only when translatingthe [c*] repeat construct may not appear in string1the delimiter must be a single characterthe options for verbose and stty-readable output styles are
mutually exclusivethe options to print and set the time may not be used togetherthe options to specify dates for printing are mutually exclusivethe strings compared were %s and %sthe strip option may not be used when installing a directorytime %s is out of rangetoo few X's in template %stoo many %% conversion specifications in suffixtoo many characters in settoo many repeated linestoo many templatestotaltraversal failed: %styped memory objectunable to record current working directoryunable to set security context %sunexpected failure: fts_info=%d: %s
please report to %sunknown status from command (0x%X)unparsable value for LS_COLORS environment variableunrecognized operand %sunrecognized prefix: %sup ???? days ??:??,  use --no-preserve-root to override this failsafeusing %s to denote standard input does not work in file system modewaiting for %s [-d]waiting for child processwaiting for stripwarning: %s: character(s) following character constant have been ignoredwarning: %s: failed to change context to %swarning: --pid=PID is not supported on this systemwarning: 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 excess arguments, starting with %swarning: invalid file offset after failed readwarning: line number %s is the same as preceding line numberwarning: source file %s specified more than oncewarning: summarizing is the same as using --max-depth=0warning: the ambiguous octal escape \%c%c%c is being
	interpreted as the 2-byte sequence \0%c%c, %cwarning: timer_createwarning: timer_settimeweird filewhen not truncating set1, string2 must be non-emptywhen specifying an output style, modes may not be setwhen translating with complemented character classes,
string2 must map all characters in the domain to onewhen translating with string1 longer than string2,
the latter string must not end with a character classwill 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 must specify -c, -t, -u, -l, -r, or contextyou 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 8.14-pre1
Report-Msgid-Bugs-To: bug-coreutils@gnu.org
PO-Revision-Date: 2011-10-09 10:15+0100
Last-Translator: Giorgio Catanzaro <catanzag@gmail.com>
Language-Team: Italian <tp@lists.linux.it>
Language: it
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=2; plural=(n != 1);


  ( ESPRESSIONE )               ESPRESSIONE è vera
  ! ESPRESSIONE                 ESPRESSIONE è falsa
  ESPRESSIONE1 -a ESPRESSIONE2  sia ESPRESSIONE1 che ESPRESSIONE2 sono vere
  ESPRESSIONE1 -o ESPRESSIONE2  o ESPRESSIONE1 o ESPRESSIONE2 è vera

  ARG1 * ARG2       prodotto aritmetico di ARG1 e ARG2
  ARG1 / ARG2       quoziente aritmetico di ARG1 diviso ARG2
  ARG1 % ARG2       resto aritmetico di ARG1 diviso ARG2

  ARG1 + ARG2       somma aritmetica di ARG1 e ARG2
  ARG1 - ARG2       differenza aritmetica di ARG1 e ARG2

  ARG1 < ARG2       ARG1 è minore di ARG2
  ARG1 <= ARG2      ARG1 è minore o uguale ad ARG2
  ARG1 = ARG2       ARG1 è uguale ad ARG2
  ARG1 != ARG2      ARG1 è diverso da ARG2
  ARG1 >= ARG2      ARG1 è maggiore o uguale ad ARG2
  ARG1 > ARG2       ARG1 è maggiore di ARG2

  STRINGA : REGEXP   ricerca ancorata del modello REGEXP nella STRINGA

  match STRINGA REGEXP       come STRINGA : REGEXP
  substr STRINGA POS LUNG    sottostringa della STRINGA, POS è contata da 1
  index STRINGA CAR          posizione nella STRINGA di uno dei CAR, se
                             trovato, o 0
  length STRINGA             lunghezza della STRINGA

  b      crea un file speciale a blocchi (bufferizzato)
  c, u   crea un file speciale a caratteri (non bufferizzato)
  p      crea un FIFO

Un campo è una sequenza di spazi (di solito spazi o tabulazioni), seguita da caratteri
non spazi. I campi vengono saltati prima dei caratteri.

Un semplice - implica -i. Se manca COMANDO, stampa l'ambiente risultante.

Dopo qualsiasi flag segue un campo lunghezza opzionale, come numero decimale;
poi un modificatore opzionale, che può essere
E per usare rappresentazioni localizzate alternative, se definite, o
O per usare la rappresentazione localizzata alternativa per i simboli numerici, se definita.

Un'ESPRESSIONE omessa restituisce falso. Altrimenti,
ESPRESSIONE è vera o falsa e imposta lo stato d'uscita. È uno tra:

Come caso particolare, cp fa un backup di ORIGINE quando sono usate le opzioni
force e backup e ORIGINE e DEST sono lo stesso nome di un file regolare già
esistente.

Si noti che molti operatori devono essere preceduti da "\" (escaped) o
protetti da apici a causa delle shell. I confronti sono aritmetici se
entrambi gli ARG sono numeri, altrimenti sono lessicografici. I modelli
restituiscono la stringa corrispondente tra \( e \) oppure null; se
\( e \) non sono usati, restituiscono il numero di caratteri corrispondenti
oppure 0.

Sia MAJOR che MINOR devono essere specificati quando TIPO è b, c o u, e
devono essere omessi quando TIPO è p. Se MAJOR o MINOR inizia con 0x o 0X,
è interpretato come esadecimale; altrimenti, se inizia con 0, come ottale;
altrimenti, come decimale. TIPO può essere:

In modo predefinito, rm non rimuove le directory. Usare l'opzione --recursive
(-r o -R) per rimuovere ogni directory elencata, insieme ai suoi contenuti.

I valori mostrati sono nelle unità della prima DIMensione disponibile da --block-size,
e dalle variabili di ambiente %s_BLOCK_SIZE, BLOCK_SIZE e BLOCKSIZE.
Altrimenti, le unità sono predefinite a 1024 byte (o 512 se è impostata POSIXLY_CORRECT).

Ciascun simbolo FLAG può essere:

  append    modalità append (ha senso solo per l'output; suggerito conv=notrunc)

Esempi:
  %s -12 file1 file2  Stampa solo le righe presenti in entrambi file1 e file2.
  %s -3  file1 file2  Stampa le righe in file1 non in file2, e viceversa.

Esempi:
  %s f - g Mostra il contenuto di f, poi dello standard input e poi il contenuto di g.
  %s       Copia lo standard input nello standard output.

Esempi:
%s root /u          Cambia il proprietario di /u in "root".
%s root:staff /u    Analogo, ma cambia anche il gruppo in "staff".
%s -hR root /u      Cambia il proprietario di /u e dei file contenuti in "root".

Esempi:
  %s staff /u      Cambia il gruppo di /u in "staff".
  %s -hR staff /u  Cambia il gruppo di /u e dei file contenuti in esso in "staff".

Eccetto che per -h e -L, tutte le operazioni sui FILE seguono i collegamenti simbolici
Si noti che le parentesi hanno bisogno di essere protette (p.es. con backslash) dalla shell.
INTERO può anche essere -l STRINGA, che è assume la lunghezza di STRINGA.

Lo stato di uscita è 0 se ESPRESSIONE non è null o 0, 1 se ESPRESSIONE è null
oppure 0, 2 se ESPRESSIONE non è valida sintatticamente e 3 se è avvenuto un errore.

Stato di uscita:
 0  se OK,
 1  per problemi minori (es.: impossibile accedere alla sottodirectory),
 2  per problemi seri (es.: impossibile accedere all'argomento della riga di comando).

FORMATO controlla l'output come in printf del C. Le sequenze interpretate sono:

  \"      virgolette doppie

FORMATO controlla l'output. Le sequenze interpretate sono:

  %%   un % letterale
  %a   nome localizzato abbreviato del giorno della settimana (es.: dom)

Gestisce la linea tty connessa allo standard input. Senza argomenti stampa
il baud rate, la disciplina di linea e le differenze da stty sane. Nelle
impostazioni, CAR è preso letteralmente o codificato come in ^c, 0x37, 0177
o 127; i valori speciali ^- o undef sono usati per disabilitare i caratteri
speciali.

Se è attivo -e, sono riconosciute le seguenti sequenze:


Se sono applicabili sia il primo che il secondo formato di chiamata, si assume il secondo
se l'ultimo operando inizia con un + o (se ci sono due operandi) con una cifra.
Un operando OFFSET significa -j OFFSET. ETICH è lo pseudo-indirizzo
al primo byte stampato, incrementato quando il dump è in corso.
Per OFFSET e ETICH, un prefisso 0x o 0X significa esadecimale;
i suffissi possono essere . per ottale e b per multipli di 512.

Un - opzionale prima di un'IMPOSTAZIONE indica la negazione. Un * indica le
impostazioni non POSIX. Il sistema sottostante definisce quali impostazioni
sono disponibili.

Stampa sullo standard output il valore dell'ESPRESSIONE. Qui sotto, una riga
vuota separa gruppi di operatori con precedenza crescente.
ESPRESSIONE può essere:

  ARG1 | ARG2       ARG1 se non è nullo o 0, altrimenti ARG2

  ARG1 & ARG2       ARG1 se nessun argomento è nullo o 0, altrimenti 0

Usare uno solo tra -b, -c o -f. Ogni ELENCO è costituito da un intervallo unico
o da più intervalli separati da virgole. I dati selezionati in ingresso
sono scritti soltanto una volta nello stesso ordine in cui sono letti.

Senza FILE, o quando FILE è -, legge lo standard input.

Senza opzioni, genera un output a tre colonne. La prima colonna contiene
le righe presenti solo nel FILE1, la seconda contiene le righe presenti solo
nel FILE2, e la terza contiene le righe comuni ad entrambi i file.

Senza alcuna OPZIONE, stampa alcune utili informazioni identificative.
        ???      --attributes-only        non copia i dati del file, solo gli attributi
      --author               con -l stampa l'autore di ogni file
      --copy-contents          quando agisce ricorsivamente copia il contenuto dei file speciali
      --exclude=MODELLO esclude i file che corrispondono a MODELLO
      --filter=COMANDO    scrive al COMANDO di shell; il nome del file è $FILE
      --first-only  converte solo le sequenze iniziali di spazi (prevale su -a)
      --full-time            come -l --time-style=full-iso
      -l, --lookup  cerca di canonicalizzare i nomi host con il DNS
      --message     come -T
      --no-preserve=ELENCO_ATTR non conserva gli attributi specificati
      --no-sync         non fa sync prima di recuperare le informazioni (predefinito)
      --parallel=N          cambia il numero di esecuzioni di ordinamenti concorrenti a N
      --parents                utilizza il nome completo della sorgente sotto DIRECTORY
      --portability   controlla la compatibilità con tutti i sistemi POSIX (equivalente a -p -P)
      --preserve-context  preserva il contesto di sicurezza SELinux
      --quiet          non stampa OK per ogni file verificato con successo
      --random-source=FILE  prende byte casuali da FILE
      --reflink[=WHEN]         controlla le copie clone/CoW copies. Consultare in basso
      --si              come -h, ma usa potenze di 1000 non 1024
      --si                   similmente, ma usa multipli di 1000, non 1024
      --sparse=WHEN            controlla la creazione di file sparsi. Consultare in basso
      --status         non restituisce nulla, il codice di stato mostra il successo
      --strip-program=PROGR  programma usato per eseguire lo strip dei file binari
      --sync            fa sync prima di recuperare le informazioni sull'uso
      --writable    come -T
   oddp          come parenb parodd cs7
   -oddp         come -parenb cs8
   [-]parity     come [-]evenp
   pass8         come -parenb -istrip cs8
   -pass8        come parenb istrip cs7
  %A   nome localizzato completo del giorno della settimana
       (es.: domenica)
  %b   nome localizzato abbreviato del mese (es.: gen)
  %B   nome localizzato completo del mese (es.: gennaio)
  %c   data e orario localizzate (es.: gio 3 mar 2005 12:02:33 CET)
  %S   secondi (00..60)
  %t   un tabulatore orizzontale
  %T   ora; come %H:%M:%S
  %u   giorno della settimana (1..7); 1 rappresenta lunedì
  %U   numero della settimana dell'anno con domenica come primo giorno della
       settimana (00..53)
  %V   numero della settimana ISO con lunedì come primo giorno della
       settimana (01..53)
  %w   giorno della settimana (0..6); 0 rappresenta domenica
  %W   numero della settimana dell'anno con lunedì come primo giorno della
       settimana (00..53)
  %h   come %b
  %H   ora (00..23)
  %I   ora (01..12)
  %j   giorno dell'anno (001..366)
  %k   ora ( 0..23), riempita con spazi ( 0..23); equivalente a %_H
  %l   ora ( 1..12), riempita con spazi ( 1..12); equivalente a %_I
  %m   mese (01..12)
  %M   minuto (00..59)
  %z   +hhmm fuso orario numerico (es: -0400)
  %:z  +hh:mm fuso orario numerico (es: -04:00)
  %::z  +hh:mm:ss fuso orario numerico (es: -04:00:00)
  %:::z  fuso orario numerico con : per la precisione necessaria (es: -04, +05:30)
  %Z   abbreviazione del fuso orario alfabetico (es: CET)

In modo predefinito, date riempie i campi numerici con zeri.
  -1                         elenca un file per riga
  -A, --almost-all           non elenca le voci . e ..
  -A, --auto-reference           stampa i riferimenti generati automaticamente
  -A, --show-all           equivalente a -vET
  -B, --ignore-backups       non elenca le voci che terminano con ~
  -C                         elenca le voci per colonne
  -D, --dired                genera un output adatto al modo dired di Emacs
  -F                       lo stesso di --follow=name --retry
  -G FILE     FILE esiste ed è posseduto dall'id di gruppo efficace
  -G, --groups    stampa gli id di tutti i gruppi
  -G, --no-group             con l'elenco lungo non stampa i nomi dei gruppi
  -H                    equivalente a --dereference-args (-D)
  -H                           segue i collegamenti simbolici sulla riga di comando in ORIGINE
  -H, --heading     stampa la riga di intestazione delle colonne
  -I, --ignore=MODELLO       non elenca le voci corrispondenti al MODELLO della shell
  -L FILE     FILE esiste ed è un collegamento simbolico (come -h)
  -L, --dereference            segue sempre i collegamenti simbolici in ORIGINE
  -L, --dereference     dereferenzia tutti i collegamenti simbolici
  -L, --dereference     segue i collegamenti
  -L, --logical   usa PWD dall'ambiente, anche se contiene collegamenti simbolici
  -N, --read-bytes=BYTE       limita il dump alla lettura di BYTE byte
  -O FILE     FILE esiste ed è posseduto dall'id utente efficace
  -O, --format=roff              genera l'output come direttive roff
  -P, --no-dereference  non segue nessun collegamento simbolico (predefinito)
  -P, --no-dereference         non segue mai i collegamenti simbolici in ORIGINE
  -P, --physical              crea collegamenti fisici direttamente verso collegamenti simbolici
  -P, --portability     usa il formato di output POSIX
  -Q, --quote-name           racchiude tra doppi apici i nomi delle voci
  -R, --recursive         cambia i file e le cartelle ricorsivamente
  -R, --recursive            elenca ricorsivamente le sottodirectory
  -R, --right-side-refs          mette i riferimenti a destra, non contati  in -w
  -S FILE     FILE esiste ed è un socket
  -S, --buffer-size=DIM     usa DIM per il buffer della memoria principale
  -S, --sentence-regexp=REGEXP   per fine riga o fine frase
  -T, --format=tex               genera l'output come direttive TeX
  -T, --print-type      stampa il tipo di file system
  -T, --show-tabs          mostra i caratteri TAB come ^I
  -T, --tabsize=COL          assume che le tabulazioni siano ad ogni COL invece di 8
  -T, -w, --mesg    aggiunge lo stato dei messaggi dell'utente come +, - o ?
  -W, --word-regexp=REGEXP       usa REGEXP per trovare ogni parola chiave
  -X                         ordina alfabeticamente secondo le estensioni
  -X, --exclude-from=FILE  esclude i file che corrispondono a uno qualsiasi dei modelli in FILE
  -a                     cambia solo l'orario di accesso
  -a              ignorato, per compatibilità con altre versioni
  -a, --all        converte tutti gli spazi invece di convertire solo quelli iniziali
  -a, --all                  non nasconde le voci che iniziano con .
  -a, --all             scrive il valore per tutti i file, non solo le directory
  -a, --all          stampa tutte le impostazioni correnti in un formato
                       comprensibile
  -a, --all         come -b -d --login -p -r -t -T -u
  -a, --append              accoda ai FILE specificati, non sovrascrive
  -a, --archive                come -dR --preserve=all
  -b FILE     FILE esiste ed è speciale a blocchi
  -b, --before             aggiunge il separatore prima anziché dopo
  -b, --body-numbering=STILE      usa STILE per numerare le righe del corpo
  -b, --boot        orario dell'ultimo avvio del sistema
  -b, --break-file=FILE          caratteri di separazione delle parole in questo FILE
  -b, --bytes         conta i byte invece delle colonne
  -b, --bytes=ELENCO      seleziona solo questi byte
  -b, --bytes=DIM         mette DIM byte per file di output
  -b, --escape               stampa escape in stile C per i caratteri non grafici
  -b, --number-nonblank    numera le righe di output non vuote, prevale su -n
  -b, --suffix-format=FORMATO  usa il FORMATO come in sprintf invece di %02d
  -c                  (ignorato)
  -c FILE     FILE esiste ed è speciale a caratteri
  -m, --chars            stampa il numero di caratteri
  -c, --characters=ELENCO seleziona solo questi caratteri
  -c, --compute      calcola il contesto del processo di transizione prima di modificare
  -c, --count           mostra il numero di occorrenze all'inizio di ogni riga
  -c, --crown-margin        mantiene il rientro delle prime due righe
  -c, --no-create        non crea alcun file
  -c, --no-create        non crea alcun file
  -c, --total           genera un totale complessivo
  -d                           come --no-dereference --preserve=links
  -d FILE     FILE esiste ed è una directory
  -d, --date=STRINGA     usa STRINGA invece che l'orario attuale
  -d, --dead        stampa i processi morti
  -d, --decode          decodifica i dati
  -d, --delimiter=DELIM   usa DELIM invece di TAB come delimitatore di campo
  -d, --dictionary-order      considera solo spazi e caratteri alfanumerici
  -d, --directory     crea una directory, non un file
  -e                       equivalente a -vE
  -e FILE     FILE esiste
  -e, --echo                tratta ciascun ARG come riga di input
  -e, --error=MODO   modifica il buffering del flusso standard error
  -f                     (ignorato)
  -f FILE     FILE esiste ed è un file regolare
  -f, --file-system     visualizza lo stato del file system invece di quello del file
  -f, --footer-numbering=STILE    usa STILE per numerare le righe dei piè di pagina
  -f, --force    se necessario cambia i permessi per permettere la scrittura
  -f, --force                  sovrascrive le destinazioni esistenti senza chiedere
  -f, --force                 rimuove i file di destinazione esistenti
  -f, --format=FORMATO     usa il FORMATO in virgola mobile in stile printf
  -f, --ignore-case           ignora le differenze tra caratteri minuscoli e maiuscoli
  -f, --ignore-case              cambia minuscole in maiuscole per l'ordinamento
  -f, --skip-fields=N   evita di confrontare i primi N campi
  -g FILE     FILE esiste ed è set-group-ID
  -g, --gap-size=NUMERO          dimensione dello spazio fra le colonne tra i campi in output
  -g, --general-numeric-sort  confronta secondo il valore generale numerico
  -g, --group     stampa solo l'id efficace del gruppo
  -g, --group=GRUPPO  imposta il gruppo proprietario, invece del gruppo del
                        processo corrente
  -g, --save         stampa tutte le impostazioni correnti in un formato
                       leggibile da stty
  -h FILE     FILE esiste ed è un collegamento simbolico (come -L)
  -h, --header-numbering=STILE    usa STILE per numerare le righe di intestazione
  -h, --no-dereference   interessa i collegamenti simbolici invece di ogni file referenziato
  -i                    chiede conferma prima di ogni rimozione
  -i, --ignore-case     ignora le differenze tra maiuscole e minuscole nel confronto
  -i, --ignore-case  ignora le differenze maiuscole/minuscole quando confronta i campi
  -i, --ignore-environment   inizia con un ambiente vuoto
  -i, --ignore-file=FILE         legge l'elenco delle parole da ignorare da FILE
  -i, --ignore-garbage  durante la decodifica ignora i caratteri non alfabetici
  -i, --ignore-interrupts   ignora i segnali di interrupt
  -i, --ignore-nonprinting    considera solo caratteri stampabili
  -i, --initial       non converte i tabulatori dopo caratteri che non sono spazi
  -i, --inode                stampa il numero d'indice di ogni file
  -i, --inodes          elenca informazioni sugli inode invece che sui blocchi
  -i, --input-range=BASSO-ALTO   tratta ciascun numero da BASSO ad ALTO come riga di input
  -i, --input=MODO   modifica il buffering del flusso standard input
  -i, --interactive            chiede prima di sovrascrivere
  -i, --interactive           chiede se rimuovere le destinazioni
  -i, --line-increment=NUMERO     incrementa il numero di riga a ogni riga
  -j, --skip-bytes=BYTE       salta BYTE input prima
  -k FILE     FILE esiste ed ha il suo sticky bit impostato
  -k, --keep-files           non rimuove i file di uscita in caso di errori
  -l                         usa un formato di elenco lungo
  -l, --count-links     conta le dimensioni più volte se ci sono collegamenti fisici
  -l, --join-blank-lines=NUMERO   un gruppo di NUMERO righe vuote viene contato come una
  -l, --link                   crea i collegamenti fisici dei file invece di copiarli
  -l, --list       elenca i nomi dei segnali, o li converte da/in numeri
  -l, --local           limita l'elenco ai file system locali
  -l, --login       stampa i processi di accesso del sistema
  -m                     cambia solo l'orario di modifica
  -m                         elenca le voci separandole con virgole
  -m                    come --block-size=1M
  -l, --lines            stampa il numero di righe
  -m, --machine            stampa il nome dell'hardware della macchina
  -m, --merge               unisce file già ordinati; non ordina
  -m, --mode=MODO   imposta i permessi (come in chmod), non a=rwx - umask
  -m, --mode=PERMESSI imposta i PERMESSI (come in chmod) invece di rwxr-xr-x
  -n (ignorato)
  -n, --adjustment=N   aggiunge l'intero N alla priorità (predefinito 10)
  -n, --digits=CIFRE         utilizza il numero di cifre specificato invece di 2
  -n, --head-count=RIGHE    mostra al più RIGHE righe
  -n, --iterations=N  sovrascrive N volte invece che le %d predefinite
  -n, --nodename           stampa il nome host del nodo di rete
  -n, --number             numera tutte le righe in output
  -n, --number-format=FORMATO     inserisce numeri di riga secondo FORMATO
  -n, --numeric-uid-gid      come -l, ma elenca gli id utente e di gruppo
  -o                         come -l, ma non elenca le informazioni sul gruppo
  -o, --io-blocks        tratta DIM come un numero di blocchi di IO invece di byte
  -o, --only-file=FILE           legge l'elenco delle parole da considerare da questo FILE
  -o, --operating-system   stampa il sistema operativo
  -o, --output=FILE         scrive i risultati in FILE invece dello standard output
  -o, --output=FILE         scrive i risultati in FILE invece dello standard output
  -o, --output=MODO  modifica il buffering del flusso standard output
  -o, --owner=PROPRIETARIO   imposta il PROPRIETARIO (solo per l'amministratore di sistema)
  -p                           come --preserve=mode,ownership,timestamps
  -p FILE     FILE esiste ed è una pipe con nome
  -p, --print-database        stampa le impostazioni predefinite
  -p, --process     stampa i processi attivi figli di init
  -q, --count       tutti i nomi di accesso e il numero di utenti connessi
  -q, --quiet         sopprime la diagnostica su fallimenti di creazione file/dir
  -r, --kernel-release     stampa il rilascio del kernel
  -r, --reference=FILE      visualizza l'orario dell'ultima modifica di FILE
  -r, --reference=FILE   usa l'orario di questo file invece di quello attuale
  -r, --reference=RFILE  basa la dimensione su RFILE
  -r, --references               il primo campo di ciascuna riga è un riferimento
  -r, --regex              interpreta il separatore come espressione regolare
  -r, --reverse              inverte il senso dell'ordinamento
  -r, --reverse               inverte il risultato dei confronti

  -r, --role=RUOLO       imposta il ruolo RUOLO nel contesto di sicurezza di destinazione
  -r, --role=RUOLO   ruolo
  -r, --runlevel    stampa il runlevel attuale
  -s FILE     FILE esiste ed ha dimensione maggiore di zero
  -s, --kernel-name        stampa il nome del kernel
  -s, --number-separator=STRINGA  aggiunge STRINGA dopo l'eventuale numero di riga
  -s, --only-delimited    non stampa le righe che non contengono delimitatori
  -s, --separator=STRINGA  usa STRINGA per separare i numeri (predefinito: \n)
  -s, --separator=STRINGA  utilizza STRINGA come separatore anziché il carattere di ritorno a capo
  -s, --set=STRINGA         imposta l'ora indicata da STRINGA
  -s, --short       stampa solo il nome, la riga e l'orario (predefinito)
  -s, --size                 stampa la dimensione allocata in blocchi di ogni file
  -s, --size=N   distrugge solo N byte (sono accettati suffissi come K, M e G)
  -s, --skip-chars=N    evita di confrontare i primi N caratteri
  -s, --split-only          divide le righe lunghe, ma non le riempie nuovamente
  -s, --squeeze-blank      elimina le righe di output vuote ripetute
  -s, --stable              stabilizza sort disabilitando il confronto "last-resort"
  -s, --strip         esegue lo strip delle tabelle dei simboli
  -s, --summarize       mostra solo il totale di ogni argomento
  -s, --symbolic              crea collegamenti simbolici invece di collegamenti fisici
  -s, --symbolic-link          crea collegamenti simbolici invece di copiare
  -s, --sysv      usa l'algoritmo di somma System V, usa blocchi da 512 byte
  -t                       equivalente a -vT
  -t [FD]     il file descriptor FD è aperto su un terminale
  -t, --field-separator=SEP  usa SEP invece delle transizioni da non spazio a spazio
  -t, --format=TIPO           imposta il formato o i formati di uscita
  -t, --table      stampa una tabella di informazioni sui segnali
  -t, --tabs=N     imposta i tabulatori ogni N caratteri invece di 8 (abilita -a)
  -t, --tagged-paragraph    rientro della prima riga diversa dalla seconda
  --target-directory=DIRECTORY      sposta ogni ORIGINE nella DIRECTORY
  -t, --terse           stampa le informazioni in modo conciso
  -t, --time        stampa l'ultima modifica dell'orologio di sistema
  -t, --type=TIPO       limita l'elenco ai file system di tipo TIPO
  -t, --type=TIPO        imposta il tipo TIPO nel contesto di sicurezza di destinazione
  -t, --type=TIPO    tipo (per lo stesso ruolo del genitore)
  -u                       (ignorato)
  -u FILE     FILE esiste ed ha il proprio bit set-user-ID impostato
  -u, --dry-run       non crea nulla; stampa solo un nome (insicuro)
  -u, --uniform-spacing     uno spazio tra le parole, due dopo le frasi
  -u, --unique          stampa solo le righe uniche
  -u, --unset=NOME     rimuove la variabile dall'ambiente
  -u, --user      stampa solo l'id efficace dell'utente
  -u, --user=UTENTE      imposta l'utente UTENTE nel contesto di sicurezza di destinazione
  -u, --user=UTENTE  identità utente
  -v                    (ignorato)
  -v                         ordina naturalmente secondo i numeri (di versione) nel testo
  -v, --kernel-version     stampa la versione del kernel
  -v, --output-duplicates     non usa * per segnalare la rimozione di una riga
  -v, --show-nonprinting   usa la notazione ^ e M-, eccetto che per LFD e TAB
  -v, --verbose            stampa sempre le intestazioni fornendo i nomi dei file
  -v, --verbose            stampa sempre le intestazioni che riportano i nomi dei file
  -v, --verbose   mostra un diagnostico per ogni directory elaborata
  -v, --verbose     stampa un messaggio per ogni directory creata
  -v, --verbose               stampa il nome di ciascun file collegato
  -w, --equal-width        rende uguale la larghezza riempiendo con zeri iniziali
  -w, --number-width=NUMERO       utilizza NUMERO colonne per i numeri di riga
  -w, --width=NUMERO             stampa la larghezza in colonne, esclusi i riferimenti
  -w, --width=AMPIEZZA      larghezza massima della riga (predefinita a 75 colonne)
  -w, --width=LARG    usa LARG colonne invece di 80
  -w, --words            stampa il numero di parole
  -x                         elenca le voci per righe invece che per colonne
  -x, --exclude-type=TIPO   limita l'elenco ai file system non di tipo TIPO
  -x, --one-file-system    salta le directory su file system diversi
  -x, --one-file-system        rimane su questo file system
  -z, --zero     aggiunge una sovrascrittura finale con zeri per nascondere
                 la distruzione
  FILE1 -ef FILE2   FILE1 e FILE2 hanno gli stessi numeri di device e di inode
  FILE1 -nt FILE2   FILE1 è più nuovo (data di modifica) di FILE2
  FILE1 -ot FILE2   FILE1 è più vecchio di FILE2
  File: "%n"
    ID: %-8i Lunghezza: %-7l Tipo: %T
Dim. blocco: %-10s Dim. blocco fondamentale: %S
Blocchi: Totale: %-10b Lib.: %-10f Disponib.: %a
Inode  : Totale: %-10c Lib.: %d
  File: %N
  Dim.: %-10s	Blocchi: %-10b Blocco di IO: %-6o %F
  INTERO1 -eq INTERO2     INTERO1 è uguale INTERO2
  INTERO1 -ge INTERO2     INTERO1 è maggiore o uguale a INTERO2
  INTERO1 -gt INTERO2     INTERO1 è maggiore di INTERO2
  INTERO1 -le INTERO2     INTERO1 è minore o uguale a INTERO2
  INTERO1 -lt INTERO2     INTERO1 è minore di INTERO2
  INTERO1 -ne INTERO2     INTERO1 non è uguale a INTERO2
  Anche i processi in
uno stato non interrompibile di riposo contribuiscono al carico medio.
  [:graph:]       tutti i caratteri stampabili, senza spazi
  [:lower:]       tutti i caratteri in minuscolo
  [:print:]       tutti i caratteri stampabili, compresi gli spazi
  [:punct:]       tutti i caratteri di punteggiatura
  [:space:]       tutti gli spazi orizzontali o verticali 
  [:upper:]       tutti i caratteri in maiuscolo
  [:xdigit:]      tutte le cifre esadecimali
  [=CAR=]         tutti i caratteri equivalenti a CAR
  \0NNN   byte con valore ottale NNN (da 1 a 3 cifre)
  \xHH    byte con valore esadecimale HH (da 1 a 2 cifre)
  \NNN    byte il cui valore ottale è NNN (da 1 a 3 cifre)
  \xHH    byte il cui valore esadecimale è HH (1 o 2 cifre)
  \uHHHH  carattere Unicode (ISO/IEC 10646) il cui valore esadecimale è HHHH (4 cifre)
  \UHHHHHHHH  carattere Unicode il cui valore esadecimale è HHHHHHHH (8 cifre)
  \\      backslash
  \a      avviso (BEL)
  \b      backspace
  \c      non produce ulteriore output
  \e      escape
  \f      avanzamento pagina
  \n      ritorno a capo
  \r      ritorno carrello
  \t      tabulazione orizzontale
  \v      tabulazione verticale
  binary    utilizza I/O binario per i dati
  cbs=BYTE        converte BYTE byte per volta
  cio       utilizza I/O concorrente per i dati
  conv=CONV       converte il file secondo l'elenco di simboli separati da virgole
  direct    utilizza I/O diretto per i dati
  directory  fallisce a meno che non sia una directory
  dsync     utilizza I/O sincronizzato per i dati
  excl      fallisce se il file di output già esiste
  nocreat   non crea il file di output
  notrunc   non effettua il troncamento del file di output
  noerror   continua dopo errori di lettura
  fdatasync  scrive fisicamente i dati del file di output prima di finire
  fsync     similmente, ma scrive anche i metadati
  fullblock  accumula blocchi pieni di input (solo iflag)
  ibs=BYTE        legge BYTE byte per volta (predefinito: 512)
  iflag=FLAGS     legge come dall'elenco di simboli separati da virgole
  noatime   non aggiorna l'orario di accesso
  noctty    non assegna il controllo del terminale da file
  nofollow  non segue i collegamenti simbolici
  nolinks   fallisce per collegamenti multipli
  nonblock  utilizza I/O non bloccante
  none, off       non fa mai backup (anche se è specificato --backup)
  numbered, t     fa backup numerati
  existing, nil   numerati se esistono backup numerati, altrimenti semplici
  simple, never   fa sempre backup semplici
  obs=BYTE        scrive BYTE byte per volta (predefinito: 512)
  oflag=FLAGS     scrive come dall'elenco di simboli separati da virgole
  sync      similmente, ma anche per metadati
  text      utilizza I/O testuale per i dati
 (backup: %s) * [-]iutf8      assume che i caratteri in ingresso siano codificati UTF-8
 ??.????   TTY contesto=%s gruppi= fa %.*s: specificatore di conversione non valido%e %b  %Y%e %b %H.%M%s (per regexp %s)%s -> %s (annullamento backup)
%s [-d] terminato in modo anomalo%s e %s sono lo stesso file%s esiste ma non è una directory%s è divenuto accessibile%s è diventato inaccessibile%s presenta un tipo di file sconosciuto%s non è usabile, apparentemente ha dimensioni negativeSito web di %s: <%s>
%s non è un intero positivo valido%s può essere usato solo su un kernel SElinuxera specificato %s ma non %s%s: %s: numero di riga fuori dall'intervallo%s: %s: corrispondenza non trovata%s: atteso un operatore binario%s: è possibile creare collegamenti simbolici relativi solo nella directory corrente%s: impossibile cambiare il modo non bloccante%s: impossibile determinare la dimensione del file%s: impossibile sovrascrivere una directory%s: impossibile riavvolgere%s: impossibile fare il seek%s: impossibile distruggere un descrittore di file append only%s: impossibile saltare%s: impossibile saltare all'offset specificato%s: impossibile azzerare il modo non bloccante%s: entrare nella directory %s? %s: entrare nella directory protetta dalla scrittura %s? %s: fine del file%s: l'operando di equivalenza classi deve essere un singolo carattere%s: errore durante il troncamento%s: atteso un valore numerico%s: chiusura non riuscita%s: apertura per la scrittura non riuscita%s: rimozione non riuscita%s: fcntl non riuscito%s: fdatasync non riuscito%s: il file ha dimensioni negative%s: il file si è ridotto eccessivamente%s: file troppo grande%s: file troncato%s: fstat non riuscito%s: fsync non riuscito%s: non è possibile fare un collegamento fisico a una directory%s: l'input contiene un ciclo:%s: l'input contiene un numero dispari di token%s: il file di input coincide con quello di output%s: intero atteso dopo il delimitatore%s: conteggio non valido all'inizio di %s%s: direttiva non valida%s: specifica di campo %s non valida%s: tipo di file non valido%s: opzione -- «%c» non valida
%s: modello non valido%s: id del processo non valido%s: espressione regolare non valida: %s%s: segnale non valido%s: il numero di riga deve essere maggiore di zero%s: numero di riga fuori dall'intervallo%s: lseek non riuscito%s: sono stati specificati segnali multipli%s: i nuovi permessi sono %s, non %s%s: non ci sono informazioni sulle dimensioni di questo dispositivonon viene elencata la directory già elencata: %s%s: l'opzione richiede un argomento -- «%c»
%s: sovrascrivere %s? %s: passo %lu/%lu (%s)...%s: passo %lu/%lu (%s)...%s%s: passo %lu/%lu (%s)...%s/%s %d%%%s: errore di lettura%s: rimuovere %s %s? %s: rimuovere il %s protetto dalla scrittura %s? %s: rimosso%s: rimozione%s: rinominato in %s%s: sostituire %s? %s: seek non riuscito%s: troppe righe del codice di controllo%s: impossibile determinare la lunghezza massima del nome del file%s: impossibile eseguire tutte le operazioni richieste%s: atteso un operatore unario%s: valore non completamente convertito%s: errore di scrittura%s: scrittura non riuscita%s:%ju: non è ordinato: %.*s%s:%lu: nome di file di lunghezza nulla non valido"©,  carico medio: %.2fl'argomento %2$s di --%1$s è troppo grande--context (-Z) funziona solo su un kernel con SELinux abilitato--reflink può essere usato solo con --sparse=auto-R --dereference richiede -H o -L-R -h richiede -P-ef non accetta -l<interno>???
?????AnnullatoAccesso  : %x
Modifica : %y
Cambio   : %z
Creazione: %w
Accesso: (%04a/%10.10A)  Uid: (%5u/%8U)   Gid: (%5g/%8G)
Famiglia di indirizzi per il nome host non supportataSvegliaCompletate tutte le richiesteBuffer per l'argomento troppo piccoloArnold RobbinsDispon.Disponib.Chiamata di sistema errataValore errato per ai_flagsBrian FoxPipe interrottaErrore di busCOMMENTOSuperato il limite di tempo CPUChiama la funzione link per creare un collegamento chiamato FILE2 a un FILE1 esistente.

Chiama la funzione unlink per rimuovere il FILE indicato.

CapacitàCambia l'appartenenza al gruppo di ogni FILE in GRUPPO.
Con --reference, cambia l'appartenenza al gruppo di ogni FILE col gruppo di RFILE.

Cambia il proprietario o il gruppo di ogni FILE in PROPRIETARIO o GRUPPO.
Con --reference, cambia il proprietario e il gruppo di ciascun FILE con quello di RFILE.

Chet RameyProcesso figlio uscitoColin PlumbConfronta i file ordinati FILE1 e FILE2 riga per riga.
Contesto: %C
ContinuatoCopia un file, convertendolo e formattandolo secondo gli operandi.

Copia lo standard input in ogni FILE e anche sullo standard output.

David M. IhnatDavid MacKenzieDavid MadoreDirectory: Dmitry V. LevinRilevato EMTUSCITAStampa la STRINGA (o le stringhe) sullo standard output.

Eric BlakeTermina con un codice di stato indicante fallimento.Termina con un codice di stato indicante successo.Esce con lo stato determinato dall'ESPRESSIONE.

François PinardNON RIUSCITOI fifo non hanno i numeri major e minor del dispositivoSuperato il limite di dimensione fileI file sono creati u+rw e le directory u+rwx, a meno di restrizioni di umask.
File systemEccezione in virgola mobileGiuseppe ScrivanoH. Peter AnvinChiusuraI/O consentitoINATTIVOILiberiIUso%IUsatiIan Lance TaylorInatt.Se FILE non è specificato, usa %s. %s è comunemente usato come FILE.

Istruzione non consentitaNella vita reale: Richiesta informazioniInodeInterruzioneInterrotta da un segnaleRiferimento all'indietro non validoNome della classe di caratteri non validoCarattere di collazione non validoContenuto di \{\} non validoEspressione regolare precedente non validaFine dell'intervallo non validaEspressione regolare non validaJames YoungmanJay LepreauJim KingdonJim MeyeringJoseph ArceneauxKaveh GhaziKayvan AghaiepourKevin BraunsdorfUccisoLINEAACCESSOAccessoNome di accesso: Mark KettenisMatthew BradburnFallimento nell'allocazione della memoriaMemoria esauritaMichael MeskesMichael StoneMike HaertelMike ParkerMontato suNOMENomeNome o servizio sconosciutoNessun indirizzo associato al nome hostNessuna corrispondenzaNessuna espressione regolare precedenteFallimento irrecuperabile nella risoluzione del nomeOKSolo una stringa può essere fornita durante la cancellazione senza omissione delle ripetizioni.Opzioni di ordinamento:

Stampa i comandi per impostare la variabile di ambiente LS_COLORS

Determina il formato dell'output:
Stampa i limiti dipendenti dalla piattaforma in un formato utile per gli script di shell.

Stampa chi è attualmente connesso basandosi su FILE.
Se FILE non è specificato, usa %s.
%s è comunemente usato come FILE.

PIDImpacchettato da %s
Impacchettato da %s (%s)
Padraig BradyStringa dei parametri codificata non correttamentePaul EggertPaul RubinPete TerMaatPiano:
Mancanza alimentazione elettricaFine prematura dell'espressione regolareStampa gli ARGOMENTI secondo il FORMATO, o esegue secondo OPZIONE:

Stampa alcune informazioni sul sistema. Senza una OPZIONE è come -s.

Stampa le appartenenze ai gruppi per ogni NOMEUTENTE o, se non ne è specificato alcuno,
sul processo corrente (che potrebbe essere diverso se il database dei gruppi è cambiato).
Stampa le informazioni sugli utenti che sono attualmente nel sistema.
Stampa l'architettura della macchina.

Stampa l'orario corrente, da quanto tempo il sistema è attivo, il numero di utenti
sul sistema e il numero medio di processi nella coda di esecuzione negli ultimi
1, 5 e 15 minuti.Stampa il nome del file del terminale connesso allo standard input.

Stampa il nome del file completo della directory di lavoro corrente.

Stampa i fattori primi di tutti i NUMERI interi specificati. Se non sono
specificati sulla riga di comando, li legge da standard input.

Stampa il nome dell'utente associato all'attuale id utente efficace.
Come id -un.

Stampa il valore del collegamento simbolico o il nome canonico del file

Elaborazione della richiesta in corsoTimer di profiling terminatoProgetto: Q. Frank XiaUscitaRandy SmithSegnale in tempo reale %dEspressione regolare troppo grandeRimuove (con unlink) i FILE.

Rimuove le DIRECTORY, se vuote.

Segnalare i bug di %s a: <%s>
Richiesta annullataRichiesta non annullataRisorsa persaRichard M. StallmanRichard MlynarikRoland HuebnerRoland McGrathRoss PatersonEsegue il COMANDO con la root directory impostata a NUOVAROOT.

Esegue il COMANDO, ignorando i segnali di sospensione.

Russell CokerScott BartramScott MillerErrore di segmentazioneServname non supportato per ai_socktypeImpostare LC_ALL='C' per aggirare il problema.Shell: Simon JosefssonDim.I file speciali richiedono i numeri major e minor del dispositivoErrore sullo stackFermatoFermato (segnale)Fermato (input da terminale)Fermato (output da terminale)Stuart KempSuccessoErrore di sistemaORAFallimento temporaneo nella risoluzione del nomeTerminatoLe stringhe confrontate erano %s e %s.Torbjörn GranlundRilevato trace/breakpointBackslash finaleDue stringhe devono essere fornite durante la cancellazione e l'omissione delle ripetizioni.Devono essere fornite due stringhe durante la traduzione.TipoUlrich DrepperErrore sconosciutoSegnale sconosciuto %dErrore di sistema sconosciuto( o \( non accoppiata) o \) non accoppiata\{ non accoppiataCondizione di I/O urgenteUso: %s
Uso: %s COMANDO [ARG]...
  o:  %s OPZIONE
Uso: %s ESPRESSIONE
 o:  %s OPZIONE
Uso: %s FILE
  o: %s OPZIONE
Uso: %s FILE1 FILE2
  o: %s OPZIONE
Uso: %s FORMATO [ARGOMENTO]...
 o:  %s OPZIONE
Uso: %s [OPZIONE]... COMANDO
Uso: %s OPZIONE... [FILE]...
Uso: %s [OPZIONE]... [FILE]...
Uso: %s [-F DEVICE] | --file=DEVICE] [IMPOSTAZIONE]...
 or: %s [-F DEVICE] | --file=DEVICE] [-a|--all]
 or: %s [-F DEVICE] | --file=DEVICE] [-g|--save]
Uso: %s [-LARGH] [OPZIONE]... [FILE]...
Uso: %s [-s SEGNALE | -SEGNALE] PID...
  o: %s -l [SEGNALE]...
  o: %s -t [SEGNALE]...
Uso: %s [NOME]
  o: %s OPZIONE
Stampa o imposta il nome host del sistema.

Uso: %s [OPERANDO]...
  o: %s OPZIONE
Uso: %s [OPZIONE]
Uso: %s [OPZIONE]
Stampa l'identificativo numerico (in esadecimale) dell'host corrente.

Uso: %s [OPZIONE] [[COMANDO [ARG]...]
Uso: %s [OPZIONE]...
Uso: %s [OPZIONE]... CONTESTO FILE...
  o:  %s [OPZIONE]... [-u UTENTE] [-r RUOLO] [-l INTERVALLO] [-t TIPO] FILE...
  o:  %s [OPZIONE]... --reference=RFILE FILE...
Uso: %s [OPZIONE]... DIRECTORY...
Uso: %s [OPZIONE]... FILE MODELLO...
Uso: %s [OPZIONE]... FILE...
Uso: %s [OPZIONE]... FILE1 FILE2
Uso: %s [OPZIONE]... ULTIMO
 o:  %s [OPZIONE]... PRIMO ULTIMO
 o:  %s [OPZIONE]... PRIMO INCREMENTO ULTIMO
Uso: %s [OPZIONE]... MODO[,MODO]... FILE...
  o: %s [OPZIONE]... MODO-OTTALE FILE...
  o: %s [OPZIONE]... --reference=RFILE FILE...
Uso: %s [OPZIONE]... NOME TIPO [MAJOR MINOR]
Uso: %s [OPZIONE]... NOME...
Uso: %s [OPZIONE]... [ FILE | ARG1 ARG2 ]
Uso: %s [OPZIONE]... [-T] ORIGINE DESTINAZIONE
  o: %s [OPZIONE]... ORIGINE... DIRECTORY
  o: %s [OPZIONE]... -t DIRECTORY ORIGINE...
Uso: %s [OPZIONE]... [-T] ORIGINE DESTINAZIONE
 o:  %s [OPZIONE]... ORIGINE... DIRECTORY
 o:  %s [OPZIONE]... -t DIRECTORY ORIGINE...
 o:  %s [OPZIONE]... -d DIRECTORY...
Uso: %s [OPZIONE]... [-] [NOME=VALORE]... [COMANDO [ARG]...]
Uso: %s [OPZIONE]... [FILE]...
Uso: %s [OPZIONE]... [FILE]
  o:  %s -e [OPZIONE]... [ARG]...
  o:  %s -i BASSO-ALTO [OPZIONE]...
Uso: %s [OPZIONE]... [FILE]...
Uso: %s [OPZIONE]... [FILE]...
  o:  %s [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]
  o:  %s --traditional [OPZIONE]... [FILE] [[+]OFFSET[.][b] [+][ETICH][.][b]]
Uso: %s [OPZIONE]... [FILE]...
  o: %s [OPZIONE]... --files0-from=F
Uso: %s [OPZIONE]... [INPUT [OUTPUT]]
Uso: %s [OPZIONE]... [INPUT]...   (senza -G)
  o:  %s -G [OPZIONE]... [INPUT [OUTPUT]]
Uso: %s [OPZIONE]... [MODELLO]
Uso: %s [OPZIONE]... [NOMEUTENTE]...
Uso: %s [OPZIONE]... [UTENTE]...
Uso: %s [OZIONE-CORTA]... [STRINGA]...
 o:  %s OPZIONE-LUNGA
Uso: %s [STRINGA]...
 o:  %s OPZIONE
Uso: %s [argomenti in riga di comando ignorati]
  o:  %s OPZIONE
Uso: test ESPRESSIONE
  o: test
  o: [ ESPRESSIONE ]
  o: [ ]
  o: [ OPZIONE
Uso%UsatiSegnale 1 definito dall'utenteSegnale 2 definito dall'utenteSono argomenti validi:Timer virtuale terminatoATTENZIONE: struttura di directory circolare.
Questo significa quasi sicuramente che il file system è danneggiato.
INFORMARE L'AMMINISTRATORE DI SISTEMA.
La seguente directory è parte del ciclo:
  %s
ATTENZIONE: ignorato --preserve-context; questo non è un kernel con SELinux abilitatoATTENZIONE: l'opzione --strip-program è ignorata non essendo stata specificata l'opzione -sAttenzione: QuandoDoveFinestra modificataCon --follow (-f), tail è predefinito a seguire il descrittore del file, che
significa che anche se un file passato come argomento a tail è rinominato, tail
continuerà a seguire la sua fine. Questo comportamento predefinito non è
auspicabile quando si vuole tracciare il nome effettivo del file e non il
descrittore dello stesso (es. rotazione dei log). Usare --follow=nome in questo
caso. Questo fa in modo che tail segua il file nominato in un modo che tenga conto
di operazione di rinomina, rimozione e creazione.
Scritto da %s e %s.
Scritto da %s, %s, %s
%s, %s, %s, %s,
%s, %s e altri.
Scritto da %s, %s, %s,
%s, %s, %s, %s,
%s e %s.
Scritto da %s, %s, %s,
%s, %s, %s, %s
e %s.
Scritto da %s, %s, %s,
%s, %s, %s e %s.
Scritto da %s, %s, %s,
%s, %s e %s.
Scritto da %s, %s, %s,
%s e %s.
Scritto da %s, %s, %s,
e %s.
Scritto da %s, %s e %s.
Scritto da %s.
le espressioni [=c=] non possono apparire in string2 durante la traduzione^ nessuna corrispondenza per la chiave
^[nN]^[sSyY]"un comando deve essere specificato con una variazioneai_family non supportataai_socktype non supportatoargomento %s ambiguo per %sè possibile specificare un delimitatore di input solo quando si opera sui campioutput accodato a %stipo di backupfile speciale a blocchii file speciali a blocchi non sono supportatiblocchientrambi i file non possono essere lo standard inputnon è possibile applicare un contesto parziale al file non etichettato %simpossibile recuperare il contesto del processoimpossibile accedere a %simpossibile fare il backup di %simpossibile riassumere e contemporaneamente mostrare tutte le vociimpossibile cambiare il proprietario di %simpossibile cambiare i permessi di %simpossibile cambiare la root directory a %simpossibile entrare nella directory %simpossibile fare chdir alla root directoryimpossibile combinare --target-directory (-t) e --no-target-directory (-T)impossibile utilizzare sia --target-directory che --no-target-directorynon è possibile combinare le opzioni -e e -inon è possibile combinare qualunque coppia di {ascii,ebcdic,ibm}non è possibile combinare block e unblocknon è possibile combinare direct e nocachenon è possibile combinare excl e nocreatnon è possibile combinare lcase e ucasenon è possibile combinare i modi e le opzioni --referencenon è possibile combinare un segnale con -l o -timpossibile confrontare i nomi dei file %s e %simpossibile convertire U+%04X nell'insieme di caratteri localeimpossibile convertire U+%04X nell'insieme di caratteri locale: %simpossibile copiare una directory, %s, dentro sé stessa, %simpossibile copiare il collegamento simbolico ciclico %simpossibile creare la directory %simpossibile creare il fifo %simpossibile creare il collegamento fisico %s a %simpossibile creare il collegamento %s a %simpossibile creare il file regolare %simpossibile creare il file speciale %simpossibile creare il collegamento simbolico %simpossibile creare il collegamento simbolico %s a %simpossibile creare il file temporaneo in %simpossibile dereferenziare %simpossibile determinare device e inode di %simpossibile determinare il nome hostimpossibile determinare la posizione di %s, ritorno al pollingimpossibile eseguire ioctl su %simpossibile seguire %s per nomeimpossibile fare fstat di %simpossibile determinare la directory correnteimpossibile determinare la priorità di schedulingimpossibile recuperare il nome del sistemaimpossibile ottenere la dimensione di %simpossibile fare lseek in %simpossibile creare contemporaneamente collegamenti fisici e simboliciimpossibile creare la directory %simpossibile spostare %s in %simpossibile spostare %s in una sottodirectory di sé stessa, %simpossibile aprire %s per la letturaimpossibile aprire %s per la scritturaimpossibile aprire la directory %simpossibile operare sul collegamento simbolico con obiettivo non esistente %simpossibile eseguire l'output formattatoimpossibile preservare gli attributi estesi, cp è compilato senza supporto per xattrimpossibile preservare un contesto di sicurezza senza un kernel con SELinux abilitatoimpossibile stampare "solo" più di una sceltaimpossibile stampare il contesto di sicurezza quando si specifica un utenteimpossibile leggere la directory %simpossibile leggere i nomi dei file da %simpossibile leggere le informazioni del file system per %simpossibile leggere l'orologio realtimeimpossibile leggere il collegamento simbolico %simpossibile leggere la tabella dei file system montatiimpossibile rimuovere %simpossibile eseguire %simpossibile impostare %simpossibile impostare la dataimpossibile impostare il nome a %simpossibile impostare la priorità di schedulingimpossibile saltare oltre la fine di un input combinatoimpossibile specificare --null (-0) con un comandoimpossibile specificare sia la stampa verticale che in paralleloimpossibile specificare il numero di colonne quando si stampa in paralleloimpossibile specificare l'orario da più di una fonteimpossibile suddividere in più di un modoimpossibile eseguire stat di %simpossibile determinare la directory corrente (ora %s)impossibile effettuare lo stat dello standard inputimpossibile fare touch di %simpossibile annullare il backup di %simpossibile scollegare %simpossibile azzerare %simpossibile controllare %simpossibile controllare la directory padre di %snon si può aggirare il bug del kernel, dopo tuttoil gruppo di %s è stato cambiato da %s in %s
il proprietario di %s è stato cambiato da %s in %s
cambiamento del gruppo di %scambiamento del proprietario di %scambio dei permessi di %scambio del contesto di sicurezza di %s
l'offset del carattere è zerocarattere fuori dall'intervallofile speciale a caratterii file speciali a caratteri non sono supportatiazzeramento dei permessi per %scambio orarioclose non riuscitachiusura di %s (fd=%d)chiusura della directory %schiusura del file di input %schiusura del file di output %schiusura dello standard inputla modalità compatibile supporta al massimo un fileconflitto fra le stringhe di sostituzione per i campi vuotiforniti specificatori di contesto di sicurezza in conflittoimpossibile impostare il buffering di %s nel modo %s
impossibile creare il file temporaneoimpossibile trovare la directory in %s con l'i-node corrispondenteimpossibile determinare l'orario di avviodirectory %s creatacreazione della directory %screazione di %s
l'elenco dei delimitatori termina con un backslash non protetto: %sdirectorydivisione per zeronome di file vuototabulatore vuotoerrore nel chiudere il fileerrore nel controllo dell'espressione regolareerrore nella ricerca con espressione regolareerrore leggendo %serrore leggendo l'evento inotifyerrore aspettando il comandoerrore scrivendo %sesecuzione con FILE=%s
exit=argomento %s in piùoperando %s in piùoperando %s in più non permesso con -%ctrasformazione di %s in forma canonica non riuscitacambio del contesto di %s in %s non riuscitocambio del gruppo di %s da %s in %s non riuscito
cambio del gruppo di %s in %s non riuscito
cambio del modo di %s da %04lo (%s) in %04lo (%s) non riuscito
cambio del proprietario di %s non riuscito
cambio del proprietario di %s da %s in %s non riuscito
cambio del proprietario di %s in %s non riuscito
cambio della directory in %s non riuscitoclonazione di %s da %s non riuscitachiusura della pipe di input non riuscitacalcolo di un nuovo contesto non riuscitocreazione della directory con il modello %s non riuscitacreazione del file con il modello %s non riuscitacreazione del collegamento fisico %s non riuscitacreazione del collegamento fisico %s a %s non riuscitacreazione della pipe non riuscitacreazione del contesto di sicurezza %s non riuscitacreazione del collegamento simbolico %s non riuscitacreazione del collegamento simbolico %s a %s non riuscitascarto della cache per %s non riuscitocreazione dell'extent di %s non riuscitaricerca di %s non riuscitarecupero degli attributi di %s non riuscitorecupero del contesto corrente non riuscitorecupero dei gruppi per il processo corrente non riuscitorecupero dei gruppi per l'utente %s non riuscitorecupero del contesto di sicurezza di %s non riuscitolookup del file %s non riuscitoapertura di %s non riuscitapreservazione dei diritti di %s non riuscitaimpossibile preservare il proprietario di %simpossibile preservare i permessi di %simpossibile preservare gli orari di %sreindirizzamento dello standard error non riuscitorimozione di %s non riuscitarimozione della directory %s non riuscitarendere inutilizzabile lo standard input non riuscitoripristino del contesto predefinito di creazione dei file non riuscitoritorno alla directory iniziale di lavoro non riuscitoimpossibile eseguire il comando %simpossibile eseguire il comando: «%s -c %s»impostazione del componente del contesto di sicurezza %s in %s non riuscitaimpostazione della variabile di ambiente FILE non riuscitaimpostazione del contesto predefinito di creazione dei file in %s non riuscitaimpostazione dell'id di gruppo non riuscitaimpostazione dell'id utente non riuscitastat di %s non riuscitodisattivazione di O_DIRECT non riuscita: %saggiornamento dell'ambiente con %s non riuscitofdatasync non riuscita per %sfflush non riuscitail numero di campo %s è troppo grandeil numero del campo è zerofifoil file %d non è ordinatogli operandi dei file non possono essere combinati con --files0-fromgli operandi di tipo file non possono essere combinati con --print-database (-p)il tipo di file system %s è stato sia selezionato che esclusochiamata di sistema fork non riuscitail formato %s termina in %%il formato %s non ha una direttiva %%il formato %s ha troppe direttive %%il formato %s ha una direttiva %%%c sconosciutala stringa di formato non può essere specificata quando si stampano stringhe
di larghezza ugualefsync non riuscita per %sfts_close non riuscitafts_read non riuscitafts_read non riuscita: %srecupero dei nuovi attributi di %sil gruppo di %s è stato mantenuto pari a %s
funzione iconv non disponibilefunzione iconv non utilizzabileid=input ignoratoinput ignorato e output accodato a %signorata la larghezza del tabulatore non valida nella variabile di ambiente TABSIZE: %signorato il valore non valido della variabile di ambiente QUOTING_STYLE: %signorata la larghezza non valida nella variabile di ambiente COLUMNS: %sgli argomenti che non sono opzioni sono stati ignoratitabulatori incompatibiliinotify non può essere usato, ritorno al pollingrisorse inotify esauritela riga di input è troppo lungaspostamento tra dispositivi non riuscito: %s in %s; impossibile rimuovere
la destinazionel'argomento %2$s di --%1$s non è validovariazione %s non validaargomento %s non validoargomento %s non valido per %sstile di numerazione del corpo non valido: %smodo di buffering %s non valido per %s
classe di caratteri non valida %scontesto non valido: %sconversione non validaspecificatore di conversione non valido nel suffisso: %cspecificatore di conversione non valido nel suffisso: \%.3odata %s non validaformato di data %s non validointervallo decrescente non validodispositivo %s %s non validotipo del dispositivo %s non validonumero di campo non valido: %sspecificatore di campo non valido: %slarghezza del campo non valida: %snumero di file non valido nello specificatore di campo: %sflag non validi nella specifica di conversione: %%%c%cargomento in virgola mobile non valido: %sstile di numerazione del piè di pagina non valido: %slarghezza dello spazio non valida: %sgruppo non validogruppo %s non validoelenco dei gruppi %s non validostile di numerazione dell'intestazione non valido: %sinput non validoflag di input non validointero non valido %sdisciplina di riga non valida %sformato del numero di righe non valido: %slarghezza della riga non valida: %smajor number del dispositivo %s non validoprofondità massima %s non validaminor number del dispositivo %s non validomodo non validomodo %s non validomodo non valido: %snumero non valido all'inizio del camponumero di byte non validonumero di byte da confrontare non validonumero di byte da saltare non validonumero di campi da saltare non validonumero di righe non validoopzione non valida -- %copzione non valida -- %c; -WIDTH è riconosciuto solo quando è la prima opzione; utilizzare -w Nflag di output non validointervallo di pagine non valido %sprecisione non valida: %sintervallo non valido senza punto finale: -conteggio delle ripetizioni %s non valido nel costrutto [c*n]spec non validasuffisso %s non valido, contiene separatori di directorymodello non valido, %s, contiene separatori di directorymodello non valido, %s; con --tmpdir non può essere assolutointervallo di tempo non valido: %sformato dello stile dell'ora %s non validoopzione finale non valida -- %cstringa di tipo non valida: %snome del carattere universale \%c%0*x non validoutente non validoutente %s non validonome di file di lunghezza zero non validoè pericoloso operare ricorsivamente su %sè pericoloso operare ricorsivamente su %s (come con %s)la chiave %lu ha dimensione zero e sarà ignoratala chiave %lu è numerica e si estende su più campilast=numero di riga eccessivomemoria esauritacoda di messaggiil minimo dell'argomento --%s è %scostrutto disallineato [:upper:] o [:lower:]manca la specifica di conversione %% nel suffissomanca l'argomento dopo %smanca l'argomento per %smanca lo specificatore di conversione nel suffissomanca l'operando per il file di destinazione dopo %smanca il file operandomanca il numero esadecimale nella sequenza di escapemanca l'elenco dei campioperando mancantemanca l'operando dopo %sil modo deve specificare solo i bit di permesso del fileil modo di %s è stato cambiato da %04lo (%s) in %04lo (%s)
il modo di %s è stato mantenuto pari a %04lo (%s)
tabulatore multicarattere %sspecificate opzioni -i multiplesono state specificate opzioni -l o -t multipleè stato specificato più di un programma di compressionelevelrange multipliè stato specificato più di un file di outputspecificati formati di output multiplisono state specificate sorgenti casuali multiplespecificati modificatori multipli relativiruoli multiplispecificate directory multiple di destinazionetipi multipliutenti multipliné il collegamento simbolico %s né il file di riferimento sono cambiati
manca la variabile di ambiente SHELL e non è stata usata l'opzione per
selezionare il tipo della shellnessun cambiamento al proprietario di %s
nessun comando specificatonessun file system elaboratonessun file rimastonessun input da %snome di accesso inesistentenessun id del processo specificatonessun tipo può essere specificato mentre si stampano le stringhenon è stato indicato alcun nome utente; quando si usa -l bisogna indicarne
almeno unoargomento non interonon è un ttynon è possibile scrivere attraverso il collegamento simbolico con obiettivo non esistente %snumero in parallelo non deve essere zerooffset eccessivo leggendo il file %sdirectory %s omessasolo un costrutto ripetuto [c*] dovrebbe apparire in string2può essere specificato un solo dispositivoopen non riuscitaopzione usata in un contesto non valido -- %cle opzioni --compare (-C) e --preserve-timestamps sono mutualmente esclusivele opzioni --compare (-C) e --strip sono mutualmente esclusivei suffissi dei file di output sono esauritioverflow estendendo la dimensione del file %sil proprietario di %s è stato mantenuto
il proprietario di %s è stato mantenuto pari a %s
overflow del numero di paginalarghezza della pagina troppo strettapreservazione dei permessi per %spreservati gli orari di %sè senza senso stampare tutte le righe duplicate e il numero delle ripetizionierrore di letturaread non riuscitalettura della directory %srecord troppo grandefile regolare vuotofile regolare%s rimosso
rimozione della directory, %srun-levelsemaforoil separatore non può essere vuotoimpostare LC_ALL='C' per aggirare il problemaimpostazione dei flag %simpostazione dei permessi per %simpostazione degli orari di %soggetto di memoria condivisail numero di byte saltati + byte letti è troppo grandesaltato %s, dato che è su un dispositivo diversofile %s saltato perché è stato sostituito mentre veniva copiatosocketstandard errorstandard inputlo standard input è chiusostandard outputstat non riuscitacarattere estraneo nella specifica del campoconfronto tra stringhe non riuscitotrasformazione stringa non riuscitaprocesso di strip terminato in modo anomaloeliminare le righe non delimitate ha senso
	solo quando si sta operando sui campicollegamento simbolicoavvio di sistemala grandezza del tabulatore non può essere 0la grandezza del tabulatore contiene caratteri non validi: %sle grandezze dei tabulatori devono essere crescenti%s: posizione del tabulatore troppo grandeil valore della posizione del tabulatore è troppo grandei tabulatori sono troppo grandil'obiettivo %s non è una directoryla directory di destinazione non è permessa durante l'installazione di una directoryterm=test o [le opzioni --binary e --text non hanno significato quando si stanno verificando i codici di controllol'opzione --compare (-C) è ignorata se è specificato un modo senza i bit di permessol'opzione --quiet ha significato solo quando si stanno verificando i codici di controllol'opzione --status ha significato solo quando si stanno verificando i codici di controllol'opzione --strict ha significato solo quando si stanno verificando i codici di controllol'opzione --warn ha significato solo quando si stanno verificando i codici di controlloil costrutto [c*] può apparire in string2 solo durante la traduzioneil costrutto ripetuto [c*] non può apparire in string1il delimitatore deve essere un singolo caratterele opzioni per gli stili dell'output "verbose" e "stty-readable" sono mutualmente esclusivele opzioni per stampare e impostare l'orario non possono essere usate insiemele opzioni per specificare la stampa di date sono mutualmente esclusivele stringhe confrontate erano %s e %sl'opzione strip non può essere usata per installare una directoryl'orario %s è fuori dal limitepoche X nel modello %stroppe specifiche di conversione %% nel suffissotroppi caratteri nell'insiemetroppe righe ripetutetroppi modellitotaletraversamento non riuscito: %soggetto di memoria tipizzataimpossibile registrare l'attuale directory di lavoroimpossibile impostare il contesto di sicurezza %sfallimento non atteso: fts_info=%d: %s
segnalare a %sstato sconosciuto dal comando (0x%X)valore non interpretabile nella variabile di ambiente LS_COLORSoperando %s non riconosciutoprefisso non riconosciuto: %sattivo ???? giorni ??.??,  usare --no-preserve-root per scavalcare questa protezioneusare %s per indicare che lo standard input non lavora in modalità file systemattesa di %s [-d]in attesa del processo figlioin attesa dello stripattenzione: %s: i caratteri che seguono la costante carattere sono stati ignoratiattenzione: %s: cambio del contesto in %s non riuscitoattenzione: --pid=PID non è supportato su questo sistemaattenzione: un "\" (backslash) non protetto a fine stringa non è portabileattenzione: backslash alla fine del formatoattenzione: impossibile rimuovere %sattenzione: disabilitazione dei dump di core non riuscitaattenzione: seguire lo standard input in modo indefinito non è efficaceattenzione: gli argomenti in eccesso sono stati ignorati, a partire da %sattenzione: offset di file non valido dopo una lettura non riuscitaattenzione: il numero di riga %s è lo stesso del precedenteattenzione: il file di origine %s è stato specificato più di una voltaattenzione: riassumere è lo stesso che usare --max-depth=0attenzione: il codice ottale ambiguo \%c%c%c sarà
	interpretato come sequenza di due byte \0%c%c, %cattenzione: timer_createattenzione: timer_settimefile stranose set1 non viene troncato, string2 non deve essere vuotaquando si specifica uno stile dell'output, non si possono impostare i modidurante la traduzione con classi di caratteri complementati,
string2 deve mappare tutti i caratteri nel dominio a unotraducendo con stringa1 più lunga di stringa2,
la seconda non deve finire con una classe di caratterinon sarà copiato %s attraverso il collegamento simbolico %s appena creatoimpossibile creare il collegamento fisico %s alla directory %s%s appena creato non sarà sovrascritto da %scon --parents, la destinazione deve essere una directorycon --suffix, il modello %s deve terminare con Xcon FILE=%s, uscita %d dal comando: %scon FILE=%s, segnale %s dal comando: %serrore di scritturaerrore di scrittura per %swrite non riuscitascrittura di %sdeve essere specificato -c, -t, -u, -l, -r, o il contestoè necessario specificare una elenco di byte, caratteri o campiè necessario specificare un %s relativo con %sè necessario specificare uno tra %s o %s