File: eo.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 (1371 lines) | stat: -rw-r--r-- 131,787 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
$LIaaapb!b5d~OeweTFfGff#ghiJIjj0kkkllmBnn`op>0q|oqq+rJrAst"u6uuvw`yM,zzz;{7@{x{F5|||O|M|>&}e}K}O}P!~Cr~O~B7IDIFWwA@,;2DEcPCD>FEʃLF]CM86;oBH<79t4N-2D`4Iڇ$L=>AɈF1R8)$NI[<9K:hKA91UkGN	DXANߍF.MuCÎ#A+9mQ;15LgK͐7;QLDڑL;l0;ْB4X,I9H>+1M>3CrE@+=DiDF-:;hRUUM3Hט% NF0Aƙ7H@I@ӚKF`8MH.:wA?49Smnܞ؟

šΡ&ԡ	$9W sϢ)-"A'd"ߣ #5Y>v"ؤ(,8e#u"$/18Azߦ5Rex'§*ݧ$& Kl"ר"%,8)e"ܩ''(8(a"Ѫ"9ER,d0Ϋ..0J"{%)<1N6<.)+X(-"ۮ)(:'Q
y,8į)'
3>Pjy		ǰ	ӰݰK8Ikh
|3Գ	91%9W0´Ѵ
(
AFL++	1.3
LW/>ERW]ciz:ηݷ	'>[w$úպ$5ASdkpv
'8Rc
r
ȼ#ռ*!LEOMXPHno'+;
P&^

#Hg+@;oAB;CT7Wv	K7f@
*>O^
m{1Y'

,&*C;nc&5+a<m
$
7$Bgy&%C+3_d
s

9,R& '04 Ur)EYoTX2&#&"gx..+M~y=^ XyF'cZ!$ ->N'<TGLQg}HG	OY^dBs>;3H/|+'#$D`<p*,AI!#0?Y0j*"8VEu; , E!f+##,;0h,# <Xv$"'95S'
&?Sg{(.B]x%FB+a1*.I)f

)&>'e<:.!4V&e#' "H&k ,%Ci,+8-d)8$;Pf3x		#"5Xi%+?$Y+~#:!	/+'[+*.%Y#%!'Gg{, $!=_x*$#%:`!( 3-R!1'-42b1!()?Q(q
3;J.$$%DJ2*%]%-)!=K@:#,5b~;!8DZn !($*7-b1H%`1#"
#4"Jm
!
,7E}$B"Z} ]Gz!*=hu/$2;M(
3@Pb,9*,-?m*sG
2M/i-
.#2&V)}*$	#	3	+L	1x	"			#
$&
K
`
!
!
%

%
.="\
7=&DYx
-C
a
	v
'
"
?
,%8^4t 12!;-]-$(G&9n"8Mch>B
 +7L2]5			)7av$-7
EL[j#J
bp|*
$8Az
HU>-?l?8=%>c3(gN>@#_</#>Sk~*!7 2"S3v0C1#u:H+]J2?4G@|#$=! B_ H 4 . !<O!E!!5!0"7N"c""#"#
:#3E#5y#j#h$_$0$,%*A%3l%(%&%(%&%&8&
E&/S&(&7&&& ','))p)?*__+,M-[-O-.}.W)/*01SB22o3
44i5I66w7na8'8<95::;E;<<1=$>>?@{BI^CCI8DBDDFEEMEO3F7F%F?FI!GSkGNGRH:aHBHHHM(INvI%IIPJ.KO:K3KGKELRLLCLMLH1MJzMMMBNLVNKN?NT/OLOBOLP?aP@PPP83QNlQ7QSQ#GRGkR7RARI-S3wSOS4S-0TG^TMTJT??UNUDUOVNcV6VMV@7WIxW:WMWCKXQXYXI;Y/YLYKZNNZ@Z>ZI['g[J[>[>\{X\J\R]Rr]3]G]IA^9^F^J_IW_I_,_7`FP`H`Q`:2aImaIaBbFDbPb4b;cNMcHcKc>1dIpd&dEd3'e@[e7eMeQ"f?tfDfIfBCgOgPgP'hLxhPhiBiTjrtjjklmmm
mnnn	7nAnMnfn|nn"nnnoo+o,Jowo#o$ooo(p%*p$Ppupp*pCp'q"Fq$iq'qq)qq&r3r+Rr ~r;rr7r's>sZs$ossss#st"t:t0Ptt,tt0t7u$Ou$tuuuuuuv:vXv.mv%v vvv"w0?wpw&w'wwwx#*x
Nx(\xBx
x
xx7x0yJy%dy6y-y+y?z#[zzz)z%zz3z5-{c{f{*{7{B{F'|4n|2|9|*},;}h}}}6}	}}}}.}8~/X~~~~#~~
(.6Fa
y	#5A5>p	̂ւ>.
=>H?9ǃBDbȄԄ1ڄ:$._+!܅<""*
M[$2W
t"·?ԇ
+!-
5@YqΊ8Ql "‹$
	"!܌*Ie
ɍ9)&ElDrd̎E1wItko&ڑ
'/IHidUm5
*@EkLQ?{ޕEZB(
%0	JTmE Af'Иߘ%#)Ml8g6ך*F6*})Hқq#!?
I	Sf{֝ޝ	#	%"&Ho'(ӞJ.Gv{ҟ
47D<|--7<M? ʡ#%51wg^k0פ'.%,rC<g">ǧHQ$w'7_\6z`%)8&bJ0Ԭ<oBͭݭ&J9AƮ	Ϯٮݮ?=2p92.*#&N"uҰ428@'Ck8  2S)Z;&613O! )Ƴ  V2R"ܴ/&/'V%~$:ɵ1'6(^,2'+%Gm!#з%*A/Z3&۸08$i$$ع!!*7b2̺--"Kn*%P߻;0+l9
Ҽ#1 %Rx2˽޽4N1n/4о0>6*u"'ÿ?0+\n*1'-+U%'!:\w.3I+}.$E'T|5	
	$.He$,ELd+|*-'0>X%1+-Id|$-+)"E(h)"('G]$r'/).&Ho $.&&A%h#* &';7c, $;+/g5;:	D#c-'". On	%=C&<j *)+AU!=.T0+ 0"S+cHF@`-&A"N'q2)# M$n%("3Ki'*I)i();Nb;6Uex% #F#jhAZ$/M]:|- ;$F`%.Tdx!$1,	460k#K(>Jf,3"	5F_ v#&3J[(t5%"$Hm  !$!=J!Y"{7O^~ &+CJo)$>31r.3#A0V,)26(H"qA3"''JrC,0p	66>F	)9Q5e0<		$0E Qr"">-:C/c 5)_e>wV0
1>1p-/;.<k$K"7n:$8?Z'y*1*\G "9Mg;A#)<M30	F::>4L0&})-CM^156GK%))0
Z>"(#	/;I`VE=.+&42:#m%9%42Z!OxK4O^Lv/b{),g}k&UoAlbjs38kXr7_\-oexpJ.Sb9kcFmFtguaom
q89RkSRV'*3nrEA#tI0jKB
@.e
A?z$|{E:2]Y8OYGJV[t|4dWCF1o	!]~$?w_@M2]<Zp5)jG?ClVvsyhJXMSabe$zE*^FQi_(/#-+^W+(y=XvrDH)d<D~d%C|6A+5: (}"l6&y~5SNfTI-UT]pHPn( NeUz.,0gdx?%p/ X{&7R6}f*#iM;f<61`%Y6\XN}Qhx;G=@y
!1LJ9={DqHIm\>L_"_=`'jI<
p0-i25wL	8Nh:,c
wPi]t+vlf
Q~'*4B^0H09[3\j=\3E/T'S8	cGuu4b Nsqm@E"KH>{xY+zP>uWrnDq2a7;UMe.g
GnhohZn#~c[IU!K*C"sBu"/	%,#-2J4F ATVY>VP|	`|ZwC$Bci)'Rtw?z!TQ
lLaMD}`:9;`kfZO<77P1%s;^(y[[@>Qr&Rgq
$,!:Od531K&vaWB)W.Zm

  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 lightweight 'finger' program;  print user information.
The utmp file will be %s.

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

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.

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

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

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

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

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

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

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

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.

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

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

  \"      double quote

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

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


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

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

If no option is specified, -P is assumed.

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

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

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

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

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

Read standard input if FILE is -

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

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

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


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

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

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

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

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

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

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
      --copy-contents
         copy contents of special files when recursive
      --lookup      attempt to canonicalize hostnames via DNS
      --message     same as -T
      --no-preserve-root
         do not treat '/' specially (the default)
      --no-preserve=ATTR_LIST
         don't preserve the specified attributes
      --no-sync
         do not invoke sync before getting usage info (default)
      --parents
         use full source file name under DIRECTORY
      --portability
         check for all POSIX systems (equivalent to -p -P)
      --preserve-root
         fail to operate recursively on '/'
      --random-source=FILE  get random bytes from FILE
      --reflink[=WHEN]
         control clone/CoW copies. See below
      --sparse=WHEN
         control creation of sparse files. See below
      --strip-program=PROGRAM
         program used to strip binaries
      --writable    same as -T
  + TOKEN                    interpret TOKEN as a string, even if it is a
                               keyword like 'match' or an operator like '/'

  ( EXPRESSION )             value of EXPRESSION
  -0, --null
         end each output line with NUL, not newline
  -G, --groups
         print all group IDs
  -H
         follow command-line symbolic links in SOURCE
  -H, --heading     print line of column headings
  -L, --dereference
         always follow symbolic links in SOURCE
  -L, --logical
         dereference TARGETs that are symbolic links
  -L, --logical
         use PWD from environment, even if it contains symlinks
  -M, --macro-name=STRING        macro name to use instead of 'xx'
  -O, --format=roff              generate output as roff directives
  -P, --no-dereference
         never follow symbolic links in SOURCE
  -P, --physical
         make hard links directly to symbolic links
  -R, --right-side-refs          put references at right, not counted in -w
  -S, --sentence-regexp=REGEXP   for end of lines or end of sentences
  -T, --format=tex               generate output as TeX directives
  -T, --no-target-directory
         treat LINK_NAME as a normal file always
  -T, --show-tabs          display TAB characters as ^I
  -T, -w, --mesg    add user's message status as +, - or ?
  -W, --word-regexp=REGEXP       use REGEXP to match each keyword
  -Z, --context
         print only the security context of the process
  -a
         ignore, for compatibility with other versions
  -a, --all         same as -b -d --login -p -r -t -T -u
  -a, --archive
         same as -dR --preserve=all
  -a, --multiple
         support multiple arguments and treat each as a NAME
  -b, --boot        time of last system boot
  -b, --break-file=FILE          word break characters in this FILE
  -b, --bytes=LIST
         select only these bytes
  -b, --suffix-format=FORMAT
         use sprintf FORMAT instead of %02d
  -c
         (ignored)
  -c, --changes
         like verbose but report only when a change is made
  -c, --characters=LIST
         select only these characters
  -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
  -d
         same as --no-dereference --preserve=links
  -d, --dead        print dead processes
  -d, --decode
         decode data
  -d, --delimiter=DELIM
         use DELIM instead of TAB for field delimiter
  -d, --repeated
         only print duplicate lines, one for each group
  -e, --echo                treat each ARG as an input line
  -f, --force
         remove existing destination files
  -f, --ignore-case              fold lower case to upper case for sorting
  -f, --prefix=PREFIX
         use PREFIX instead of 'xx'
  -g, --gap-size=NUMBER          gap size in columns between output fields
  -g, --goal=WIDTH
         goal width (default of 93% of width)
  -g, --group
         print only the effective group ID
  -h, --no-dereference
         affect symbolic links instead of any referenced file
  -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, --inodes
         list inode information instead of block usage
  -i, --input-range=LO-HI   treat each number LO through HI as an input line
  -i, --interactive
         prompt whether to remove destinations
  -k
         like --block-size=1K
  -k, --keep-files
         do not remove output files on errors
  -l, --link
         hard link files instead of copying
  -l, --list
         list signal names, or convert signal names to/from numbers
  -l, --local
         limit listing to local file systems
  -l, --login       print system login processes
  -l, --range=RANGE
         set range RANGE in the target security context
  -n
         (ignored)
  -n, --digits=DIGITS
         use specified number of digits instead of 2
  -n, --head-count=COUNT    output at most COUNT lines
  -n, --nodename           print the network node hostname
  -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, --output=FILE         write result to FILE instead of standard output
  -p
         same as --preserve=mode,ownership,timestamps
  -p, --print-database
         output defaults
  -p, --process     print active processes spawned by init
  -q, --count       all login names and number of users logged on
  -r, --kernel-release     print the kernel release
  -r, --reference=RFILE  base size on RFILE
  -r, --references               first field of each line is a reference
  -r, --repeat              output lines can be repeated
  -r, --role=ROLE
         set role ROLE in the target security context
  -r, --runlevel    print current runlevel
  -s, --kernel-name        print the kernel name
  -s, --only-delimited
         do not print lines not containing delimiters
  -s, --short       print only name, line, and time (default)
  -s, --size=SIZE        set or adjust the file size by SIZE bytes
  -s, --skip-chars=N
         avoid comparing the first N characters
  -s, --split-only
         split long lines, but do not refill
  -s, --strip
         strip symbol tables
  -s, --suffix=SUFFIX
         remove a trailing SUFFIX; implies -a
  -s, --symbolic
         make symbolic links instead of hard links
  -s, --symbolic-link
         make symbolic links instead of copying
  -t                       equivalent to -vT
  -t, --table
         print a table of signal information
  -t, --tagged-paragraph
         indentation of first line different from second
  -t, --target-directory=DIRECTORY
         copy all SOURCE arguments into DIRECTORY
  -t, --target-directory=DIRECTORY
         move all SOURCE arguments into DIRECTORY
  -t, --time        print last system clock change
  -t, --type=TYPE
         set type TYPE in the target security context
  -u                       (ignored)
  -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
  -v, --show-nonprinting   use ^ and M- notation, except for LFD and TAB
  -v, --verbose
         always print headers giving file names
  -v, --verbose
         output a diagnostic for every directory processed
  -v, --verbose
         output a diagnostic for every file processed
  -v, --verbose
         print name of each linked file
  -w, --width=NUMBER             output width in columns, reference excluded
  -w, --width=WIDTH
         maximum line width (default of 75 columns)
  -x, --one-file-system
         stay on this file system
  -z, --zero
         end each output line with NUL, not newline
  -z, --zero-terminated     line delimiter is NUL, not newline
  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
  Processes in
an uninterruptible sleep state also contribute to the load average.
  \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
  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
 (backup: %s) ??:????   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 expected%s expected, found %s%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 replaced%s was specified but %s was not%s would overwrite input; aborting%s%s argument '%s' too large%s: %s: line number out of range%s: %s: match not found%s: '}' is required in repeat count%s: binary operator expected%s: can make relative symbolic links only in current directory%s: cannot change nonblocking mode%s: cannot determine file size%s: cannot overwrite directory%s: cannot rewind%s: cannot seek%s: cannot shred append-only file descriptor%s: cannot skip%s: cannot skip to specified offset%s: closing delimiter '%c' missing%s: couldn't reset non-blocking mode%s: descend into directory %s? %s: descend into write-protected directory %s? %s: end of file%s: equivalence class operand must be a single character%s: error truncating%s: expected a numeric value%s: failed to close%s: failed to open for writing%s: failed to remove%s: fcntl failed%s: fdatasync failed%s: file has negative size%s: file has shrunk too much%s: file too large%s: file truncated%s: fstat failed%s: fsync failed%s: hard link not allowed for directory%s: input contains a loop:%s: input contains an odd number of tokens%s: input file is output file%s: integer expected after delimiter%s: invalid count at start of %s%s: invalid directive%s: invalid field specification %s%s: invalid file type%s: invalid option -- '%c'
%s: invalid pattern%s: invalid process id%s: invalid regular expression: %s%s: invalid signal%s: invalid start value for numerical suffix%s: line number must be greater than zero%s: line number out of range%s: lseek failed%s: multiple signals specified%s: new permissions are %s, not %s%s: no size information for this device%s: no such user%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, overriding mode %04lo (%s)? %s: replace %s? %s: seek failed%s: too many checksum lines%s: unable to determine maximum file name length%s: unable to perform all requested operations%s: unary operator expected%s: unwritable %s (mode %04lo, %s); try anyway? %s: value not completely converted%s: write error%s: write failed%s:%lu: invalid zero-length file name%s}: integer required between '{' and '}'''-%c' extra characters or invalid number in the argument: %s'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument(C),  load average: %.2f--%s argument %s too large--context (-Z) works only on an SELinux-enabled kernel--context (-Z) works only on an SELinux/SMACK-enabled kernel--group is mutually exclusive with -c/-d/-D/-u--grouping cannot be combined with --format--header ignored with command-line input--reflink can be used only with --sparse=auto--tag does not support --text mode-R --dereference requires either -H or -L-R -h requires -P-ef does not accept -l-r not specified; omitting directory %s<internal>???
?????AbortedAccess: %x
Modify: %y
Change: %z
 Birth: %w
Access: (%04a/%10.10A)  Uid: (%5u/%8U)   Gid: (%5g/%8G)
Address family for hostname not supportedAlarm clockAlex DeymoAll requests doneArgument buffer too smallArnold RobbinsAssaf GordonAvailAvailableBad system callBad value for ai_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 SELinux security context of each FILE to CONTEXT.
With --reference, change the security context of each FILE to that of RFILE.
Change the group of each FILE to GROUP.
With --reference, change the group of each FILE to that of RFILE.

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

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

Chet RameyChild exitedColin PlumbCompare sorted files FILE1 and FILE2 line by line.
Context: %C
ContinuedCopy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.
Create named pipes (FIFOs) with the given NAMEs.
Create the DIRECTORY(ies), if they do not already exist.
Create the special file NAME of the given TYPE.
David M. IhnatDavid MacKenzieDavid MadoreDirectory: Dmitry V. LevinEMT trapEXITEcho the STRING(s) to standard output.

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

Exit with a status code indicating failure.Exit with a status code indicating success.F. PinardFAILEDFifos do not have major and minor device numbers.FileFile size limit exceededFilesystemFilter adjacent matching lines from INPUT (or standard input),
writing to OUTPUT (or standard output).

With no options, matching lines are merged to the first occurrence.
Floating point exceptionGiuseppe ScrivanoH. Peter AnvinHangupI/O possibleIDLEIFreeIUse%IUsedIan Lance TaylorIdleIf FILE is not specified, use %s.  %s as FILE is common.

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

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

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

Output pieces of FILE separated by PATTERN(s) to files 'xx00', 'xx01', ...,
and output byte counts of each piece to standard output.
Output 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 NAME with any leading directory components removed.
If specified, also remove a trailing SUFFIX.
Print certain system information.  With no OPTION, same as -s.

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

Print selected parts of lines from each FILE to standard output.
Print the current time, the length of time the system has been up,
the number of users on the system, and the average number of jobs
in the run queue over the last 1, 5 and 15 minutes.Print the file name of the terminal connected to standard input.

Print the 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 %dReformat each paragraph in the FILE(s), writing to standard output.
The option -WIDTH is an abbreviated form of --width=DIGITS.
Regular expression too bigRename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
Repeatedly output a line with all specified STRING(s), or 'y'.

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

Run COMMAND, ignoring hangup signals.

Russell CokerScott BartramScott MillerSegmentation faultSend signals to processes, or list signals.
Servname not supported for ai_socktypeSet LC_ALL='C' to work around the problem.Set each NAME to VALUE in the environment and run COMMAND.
Shell: Show information about the file system on which each FILE resides,
or all file systems by default.
Simon JosefssonSizeSpecial files require major and minor device numbers.Stack faultStart COMMAND, and kill it if still running after DURATION.
StoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stuart KempSuccessSystem errorTIMETemporary failure in name resolutionTerminatedThe strings compared were %s and %s.Torbjorn GranlundTrace/breakpoint trapTrailing backslashTry '%s --help' for more information.
Try '%s ./%s' to remove the file %s.
Two strings must be given when both deleting and squeezing repeats.Two strings must be given when translating.TypeUlrich DrepperUnknown errorUnknown signal %dUnknown system errorUnmatched ( or \(Unmatched ) or \)Unmatched [, [^, [:, [., or [=Unmatched \{Urgent I/O conditionUsage: %s
Usage: %s --coreutils-prog=PROGRAM_NAME [PARAMETERS]... 
Usage: %s COMMAND [ARG]...
  or:  %s OPTION
Usage: %s EXPRESSION
  or:  %s OPTION
Usage: %s FILE
  or:  %s OPTION
Usage: %s FILE1 FILE2
  or:  %s OPTION
Usage: %s FORMAT [ARGUMENT]...
  or:  %s OPTION
Usage: %s NAME [SUFFIX]
  or:  %s OPTION... NAME...
Usage: %s OPTION... COMMAND
Usage: %s OPTION... FILE...
Usage: %s OPTION... [FILE]...
Usage: %s [-F DEVICE | --file=DEVICE] [SETTING]...
  or:  %s [-F DEVICE | --file=DEVICE] [-a|--all]
  or:  %s [-F DEVICE | --file=DEVICE] [-g|--save]
Usage: %s [-WIDTH] [OPTION]... [FILE]...
Usage: %s [-s SIGNAL | -SIGNAL] PID...
  or:  %s -l [SIGNAL]...
  or:  %s -t [SIGNAL]...
Usage: %s [NAME]
  or:  %s OPTION
Print or set the hostname of the current system.

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

Usage: %s [OPTION] NAME...
Usage: %s [OPTION] [COMMAND [ARG]...]
Usage: %s [OPTION]...
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:Valid arguments are:
Virtual timer expiredWARNING: ignoring --preserve-context; this kernel is not SELinux-enabledWARNING: ignoring --strip-program option as -s option was not specifiedWarning: WhenWhereWindow changedWrite a random permutation of the input lines to standard output.
Write sorted concatenation of all FILE(s) to standard output.
Written by %s and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
Written by %s, %s, %s,
%s, %s, %s, and %s.
Written by %s, %s, %s,
%s, %s, and %s.
Written by %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
and %s.
Written by %s, %s, and %s.
Written by %s.
[=c=] expressions may not appear in string2 when translating^ no match for key
^[nN]^[yY]`a command must be given with an adjustmentai_family not supportedai_socktype not supportedambiguous argument %s for %san input delimiter may be specified only when operating on 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 access %s: over-mounted by another devicecannot 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 --relative without --symboliccannot do ioctl on %scannot follow %s by namecannot fstat %scannot get current directorycannot get effective GIDcannot get effective UIDcannot get nicenesscannot get real GIDcannot get real UIDcannot get system namecannot get the size of %scannot lseek %scannot make both hard and symbolic linkscannot make directory %scannot move %s to %scannot move %s to a subdirectory of itself, %scannot open %s for readingcannot open %s for writingcannot open directory %scannot operate on dangling symlink %scannot perform formatted outputcannot preserve extended attributes, cp is built without xattr supportcannot preserve security context without an SELinux-enabled kernelcannot print "only" of more than one choicecannot print security context when user specifiedcannot readcannot read directory %scannot read file names from %scannot read file system information for %scannot read realtime clockcannot read symbolic link %scannot read table of mounted file systemscannot remove %scannot run %scannot set %scannot set datecannot set name to %scannot set nicenesscannot set permissions of %scannot set target context and preserve itcannot 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 givencontiguous datacould not set buffering of %s to mode %s
couldn't create temporary filecouldn't find directory entry in %s with matching i-nodecouldn't get boot timecreated directory %screating directory %screating file %s
delimiter list ends with an unescaped backslash: %sdirectorydivision by zerodoorempty file nameempty taberror canonicalizing %serror closing fileerror in regular expression matchererror in regular expression searcherror reading %serror reading inotify eventerror reading inputerror waiting for commanderror writing %sexecuting with FILE=%s
exit=extra argument %sextra operand %sextra operand %s not allowed with -%cfailed to access %sfailed to canonicalize %sfailed to change context of %s to %sfailed to change group of %s from %s to %s
failed to change group of %s to %s
failed to change mode of %s from %04lo (%s) to %04lo (%s)
failed to change ownership of %s
failed to change ownership of %s from %s to %s
failed to change ownership of %s to %s
failed to chdir to %sfailed to clone %s from %sfailed to close %sfailed to close input pipefailed to compute a new contextfailed to convert some of the input numbersfailed to create directory via template %sfailed to create file via template %sfailed to create hard link %sfailed to create hard link %s => %sfailed to create pipefailed to create security context: %sfailed to create symbolic link %sfailed to create symbolic link %s -> %sfailed to discard cache for: %sfailed to extend %sfailed to find %sfailed to get attributes of %sfailed to get current contextfailed to get groups for the current processfailed to get groups for user %sfailed to get security context of %sfailed to get supplemental groupsfailed to lookup file %sfailed to open %sfailed to open %s for readingfailed to open %s for writingfailed to prepare value '%Lf' for printingfailed to preserve authorship for %sfailed to preserve ownership for %sfailed to preserve permissions for %sfailed to preserve times for %sfailed to redirect standard errorfailed to remove %sfailed to remove directory %sfailed to render standard input unusablefailed to restore context for %sfailed to restore the default file creation contextfailed to return to initial working directoryfailed to rewind stream for %sfailed to run command %sfailed to run command: "%s -c %s"failed to set %s security context component to %sfailed to set FILE environment variablefailed to set default creation context for %sfailed to set default file creation context for %sfailed to set default file creation context to %sfailed to set group-IDfailed to set supplemental groupsfailed to set the security context of %sfailed 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: %sgenerating relative pathgetting new attributes of %sgroup of %s retained as %s
grouping and printing repeat counts is meaninglessgrouping cannot be combined with --togrouping has no effect in this localeiconv function not availableiconv function not usableid=ignoring --no-newline with multiple argumentsignoring inputignoring input and appending output to %signoring invalid tab size in environment variable TABSIZE: %signoring invalid value of environment variable QUOTING_STYLE: %signoring invalid width in environment variable COLUMNS: %signoring non-option argumentsincompatible tabsinotify cannot be used, reverting to pollinginotify resources exhaustedinput line is too longinteger overflowinter-device move failed: %s to %s; unable to remove targetinvalid %s%s argument '%s'invalid --%s argument %sinvalid --threshold argument '-0'invalid PIDinvalid adjustment %sinvalid argument %sinvalid argument %s for %sinvalid body numbering style: %sinvalid buffering mode %s for %s
invalid character '%c' in type string %sinvalid 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 value %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 header value %sinvalid inputinvalid input flaginvalid integer %sinvalid line discipline %sinvalid line numbering format: %sinvalid line width: %sinvalid major device number %sinvalid maximum depth %sinvalid maximum number of unchanged stats between opensinvalid minor device number %sinvalid modeinvalid mode %sinvalid mode: %sinvalid numberinvalid number after ','invalid number after '-'invalid number after '.'invalid number at field startinvalid number of bytesinvalid number of bytes to compareinvalid number of bytes to skipinvalid number of fields to skipinvalid number of linesinvalid number of seconds: %sinvalid number: %sinvalid option -- %cinvalid option -- %c; -WIDTH is recognized only when it is the first
option; use -w N insteadinvalid output address radix '%c'; it must be one character from [doxn]invalid output flaginvalid padding value %sinvalid page range %sinvalid precision: %sinvalid range with no endpoint: -invalid repeat count %s in [c*n] constructinvalid specinvalid status levelinvalid suffix %s, contains directory separatorinvalid suffix in %s%s argument '%s'invalid suffix in input %s: %sinvalid suffix in input: %sinvalid template, %s, contains directory separatorinvalid template, %s; with --tmpdir, it may not be absoluteinvalid time interval %sinvalid time style format %sinvalid trailing option -- %cinvalid type string %sinvalid unit size: %sinvalid universal character name \%c%0*xinvalid userinvalid user %sinvalid wrap sizeinvalid zero-length file nameit is dangerous to operate recursively on %sit is dangerous to operate recursively on %s (same as %s)key %lu has zero width and will be ignoredkey %lu is numeric and spans multiple fieldslarge input value %s: possible precision losslast=leading '-' in a component of file name %sleading blanks are significant in key %lu; consider also specifying 'b'line number overflowmemory exhaustedmessage queuemigrated file with datamigrated file without dataminimum --%s argument is %smisaligned [:upper:] and/or [:lower:] constructmissing %% conversion specification in suffixmissing %smissing 'i' suffix in input: %s (e.g Ki/Mi/Gi)missing argument after %smissing argument to %smissing character class name '[::]'missing conversion specifier in suffixmissing destination file operand after %smissing equivalence class character '[==]'missing 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 usersmultiplexed block special filemultiplexed character special filemultiplexed filenamed fileneither symbolic link %s nor referent has been changed
network special fileno SHELL environment variable, and no shell type option givenno change to ownership of %s
no command specifiedno conversion option specifiedno file systems processedno files remainingno input from %sno lines to repeatno login nameno process ID specifiedno type may be specified when dumping stringsno username specified; at least one must be specified when using -lnon-integer argumentnot a ttynot writing through dangling symlink %snumber in parallel must be nonzeronumerical suffix start value is too large for the suffix lengthobsolescent key %s used; consider %s insteadoffset overflow while reading file %somitting directory %sonly one [c*] repeat construct may appear in string2only one device may be specifiedopen failedoption '-%s' is ignoredoptions '-%s' are ignoredoption '-r' only applies to last-resort comparisonoption --output: field %s unknownoption --output: field %s used more than onceoption --zero not permitted in default formatoption used in invalid context -- %coptions %s and %s are mutually exclusiveoptions '-%s' are incompatibleoptions --compare (-C) and --preserve-timestamps are mutually exclusiveoptions --compare (-C) and --strip are mutually exclusiveoutput file suffixes exhaustedoverflow extending size of file %soverflow reading %sownership of %s retained
ownership of %s retained as %s
page number overflowpage width too narrowportpreserving permissions for %spreserving times for %sprinting all duplicated lines and repeat counts is meaninglessrange-endpoints of '%s-%s' are in reverse collating sequence orderread errorread failedreading directory %srecord too largerefusing to remove %s or %s directory: skipping %sregular empty fileregular filerejecting suffix in input: %s (consider using --from)removed %s
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 --tag option is meaningless 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 argument %s lacks a leading '+';
when using an option to specify date(s), any non-option
argument must be a format string beginning with '+'the delimiter must be a single characterthe 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 input linestoo many repeated linestoo many templatestotaltraversal failed: %styped memory objectunable to record current working directoryunable to set security context %sunexpected failure: fts_info=%d: %s
please report to %sunknown status from command (%d)unknown status from command (0x%X)unparsable value for LS_COLORS environment variableunrecognized operand %sunrecognized prefix: %sup  %2d:%02d,  up ???? days ??:??,  use --no-preserve-root to override this failsafeusing %s to denote standard input does not work in file system modevalue too large to be converted: %svalue too large to be printed: '%Lg' (consider using --to)waiting for %s [-d]waiting for child processwaiting for stripwarning: %s: character(s) following character constant have been ignoredwarning: %s: failed to change context to %swarning: 'touch %s' is obsolete; use 'touch -t %04ld%02d%02d%02d%02d.%02d'warning: --pid=PID is not supported on this systemwarning: --retry ignored; --retry is useful only when followingwarning: --retry only effective for the initial openwarning: an unescaped backslash at end of string is not portablewarning: backslash at end of formatwarning: cannot remove: %swarning: disabling core dumps failedwarning: following standard input indefinitely is ineffectivewarning: ignoring --context; it requires an SELinux-enabled kernelwarning: ignoring --context; it requires an SELinux/SMACK-enabled kernelwarning: ignoring excess arguments, starting with %swarning: invalid file offset after failed readwarning: line number %s is the same as preceding line numberwarning: options --apparent-size and -b are ineffective with --inodeswarning: sigprocmaskwarning: source directory %s specified more than oncewarning: source file %s specified more than oncewarning: summarizing is the same as using --max-depth=0warning: the ambiguous octal escape \%c%c%c is being
	interpreted as the 2-byte sequence \0%c%c, %cwarning: timer_createwarning: timer_settimewarning: unrecognized escape '\%c'weird filewhen not truncating set1, string2 must be non-emptywhen specifying an output style, modes may not be setwhen translating with complemented character classes,
string2 must map all characters in the domain to onewhen translating with string1 longer than string2,
the latter string must not end with a character classwhen translating, the only character classes that may appear in
string2 are 'upper' and 'lower'will 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 buffering mode optionyou must specify a list of bytes, characters, or fieldsyou must specify a relative %s with %syou must specify either %s or %sProject-Id-Version: coreutils-8.27-pre1
Report-Msgid-Bugs-To: bug-coreutils@gnu.org
PO-Revision-Date: 2017-04-23 13:57+0200
Last-Translator: Benno Schulenberg <benno@vertaalt.nl>
Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>
Language: eo
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;
X-Generator: Lokalize 1.0


  ARG1 * ARG2       aritmetika produkto de ARG1 kaj ARG2
  ARG1 / ARG2       aritmetika kvociento de ARG1 dividita per ARG2
  ARG1 % ARG2       aritmetika resto de ARG1 dividita per ARG2

  ARG1 + ARG2       aritmetika sumo de ARG1 kaj ARG2
  ARG1 - ARG2       aritmetika diferenco de ARG1 kaj ARG2

  ARG1 < ARG2       ARG1 estas malpli ol ARG2
  ARG1 <= ARG2      ARG1 estas malpli aŭ egalas al ARG2
  ARG1 = ARG2       ARG1 egalas al ARG2
  ARG1 != ARG2      ARG1 ne egalas al ARG2
  ARG1 >= ARG2      ARG1 estas pli ol aŭ egalas al ARG2
  ARG1 > ARG2       ARG1 estas pli ol ARG2

  ĈENO : REGULESPRIMO        ankrita ŝablona kongruo de REGULESPRIMO en ĈENO

  match ĈENO REGULESPRIMO    same kiel 'ĈENO : REGULESPRIMO'
  substr ĈENO POZICIO LONGO  subĉeno de ĈENO (POZICIO nombriĝas ekde 1)
  index ĈENO SIGNOJ          pozicio en ĈENO kie ĉi tiuj SIGNOJ troviĝas, alie 0
  length ĈENO                longo de ĈENO

  b      krei blokan specialan dosieron (bufritan)
  c, u   krei signan specialan dosieron (nebufritan)
  p      krei vicmemoron ('FIFO'-n)

Kampo estas vico de blankspacoj (kutime spacetoj kaj/aŭ taboj) kaj poste
neblankaj signoj.  Kampoj transsaltiĝas antaŭ signoj.

Malpeza 'finger'-programo; eligas informon pri uzantoj.
La uzita 'utmp'-dosiero estos %s.

Nura «-» signifas «-i».  Sen iu KOMANDO, eligi la rezultan ĉirkaŭaĵon.

Specialkaze, «cp» faras savkopion de ORIGINO kiam opcioj «--force» kaj «--backup»
indikatas, kaj ORIGINO kaj CELO estas la sama nomo de ekzistanta normala dosiero.

Notu ke ŝeloj ofte bezonas citilojn aŭ eskapsignon por iuj operacisimboloj.
Se kaj ARG1 kaj ARG2 estas nombroj, oni komparas nombre, alie leksikografie.
Ŝablona rekono liveras la ĉenon kongruan al parentezo inter \( kaj \), aŭ
malplenan ĉenon.  Se oni ne indikas \( kaj \), ŝablona rekono liveras la
nombron de kongruaj signoj, aŭ 0.

ĈEFNUMERO kaj KROMNUMERO ambaŭ indikendas kiam TIPO estas 'b' aŭ 'c' aŭ 'u',
kaj ili forlasendas kiam TIPO estas 'p'.  Kiam ĈEFNUMERO aŭ KROMNUMERO komencas
per '0x' aŭ '0X', ĝi interpretiĝas kiel deksesuma; alie, se ĝi komencas per '0',
kiel okuma; alie, kiel dekuma.  TIPO povas esti:

Defaŭlte, 'rm' ne forigas dosierujojn.  Uzu opcion '--recursive' (-r aŭ -R)
por ankaŭ forigi ĉiun indikatan dosierujon kaj ĝian tutan enhavon.

Ĉiu MODUSO estas laŭ la formo «[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+».

Ekzemploj:
  %s -12 dosiero1 dosiero2  Montras nur liniojn kiuj ĉeestas en ambaŭ dosieroj.
  %s -3 dosiero1 dosiero2   Montras liniojn kiuj ĉeestas en unu dosiero sed ne
                              en la alia.

Ekzemploj:
  %s /usr/bin/              ->  «/usr»
  %s ujo1/ĉeno ujo2/ĉeno    ->  «ujo1» kaj poste «ujo2»
  %s stdio.h                ->  «.».

Ekzemploj:
  %s /usr/bin/sort            ->  «sort»
  %s include/stdio.h .h       ->  «stdio»
  %s -s .h include/stdio.h    ->  «stdio»
  %s -a ia/ĉeno1 ia/ĉeno2     ->  «ĉeno1» kaj poste «ĉeno2»

Ekzemploj: 
  %s f - g    Eligas enhavon de f, poste ĉefenigujon, poste enhavon de g.
  %s          Kopias ĉefenigujon al ĉefeligujo.

Ekzemploj:
  %s root /u          Ŝanĝas la posedanton de /u al "root".
  %s root:teamo /u    Egale, sed ankaŭ ŝanĝas la grupon al "teamo".
  %s -hR root /u      Ŝanĝas la posedanton de /u kaj subdosieroj al "root".

Ekzemploj:
  %s teamo /u        Ŝanĝas la grupon de /u al "teamo".
  %s -hR teamo /u    Ŝanĝas la grupon de /u kaj ĝiaj subdosieroj al "teamo".

Elirstato estas 0 se ESPRIMO estas nek vaka nek nulo, 1 se ESPRIMO estas
vaka aŭ nulo, 2 se ESPRIMO estas sintakse nevalida, kaj 3 se eraro okazis.

KAMPLISTO estas komodisigita listo de montrendaj kolumnoj.  Validaj kampnomoj
estas: 'source', 'fstype', 'itotal', 'iused', 'iavail', 'ipcent', 'size',
'used', 'avail', 'pcent', 'file' kaj 'target' (vidu manlibron kun «info df»).

ARANĜO stiras la eligon kiel je 'printf()' de C.  Interpretitaj sekvencoj estas:

  \"      duobla citigilo

Regas la tty-lineon konektatan al ĉefenigujo.  Sen argumentoj, eligas
rapidecon, linean protokolon, kaj diferencojn disde '/stty sane'.  En ecoj,
SIGNO prezentas sin mem, aŭ estas kodita (ekzemple ^c, 0x37, 0177, aŭ 127);
la specialaj valoroj '^-' aŭ 'undef' malebligas specialajn signojn.

Se opcio '-e' efikas, la subaj eskapsekvencoj rekoniĝas:


Se DOSIERO ne indikatas, %s uzatas.  Kutimas %s kiel DOSIERO.
Kiam du ARGUMENTOj indikatas («estas mi» eblas), opcio «-m» kompreniĝas.

Se DOSIERO indikatas, ĝi legiĝas por decidi kiujn kolorojn uzi por kiuj
dosiertipoj kaj dosierfinaĵoj.  Alie, antaŭkompilita datumbazo uzatas.
Por detaloj pri la aranĝo de tiuj dosieroj, lanĉu 'dircolors --print-database'.

Sen iu opcio, '-P' supozatas.

(Endaj argumentoj por longaj opcioj ankaŭ endas por la mallongaj.)

Posedanto ne ŝanĝiĝas se mankas.  Ankaŭ grupo ne ŝanĝiĝas se mankas, sed
ĝi ŝanĝiĝas al la ensaluta grupo se ':' sekvas simbolan POSEDANTOn.
POSEDANTO kaj GRUPO povas esti numerecaj aŭ simbolaj.

Eligas la valoron de ESPRIMO al ĉefeligujo.

(Sube vaka linio disigas kreskantajn antaŭecajn grupojn.)
ESPRIMO povas esti:

  ARG1 | ARG2       ARG1 se ĝi estas nek vaka nek nulo, alie ARG2

  ARG1 & ARG2       ARG1 se nek ARG1 kaj ARG2 estas vaka aŭ nulo, alie nulo

Kiam DOSIERO estas «-», ĉefenigujo legiĝas.

SIGNALO povas esti signalnomo kiel 'HUP', signalnumero kiel '1',
aŭ la elirstato de procezo kiu terminiĝis per signalo.
PROCEZNUMERO estas entjero; se negativa, ĝi indikas procezgrupon.

Eblas prefiksi GRANDOn per unu el la sekvaj modifaj signoj:
'+' etendi kun, '-' ŝrumpigi kun, '<' maksimume, '>' minimume,
'/' subrondigi al multoblo de, '%' superrondigi al multoblo de.

La savkopia sufikso estas «~», krom se agordita per «--suffix» aŭ per ĉirkaŭaĵa
variablo «SIMPLE_BACKUP_SUFFIX».  La versirega metodo elekteblas per «--backup»
aŭ per ĉirkaŭaĵa variablo «VERSION_CONTROL».  Jen la eblaj metodoj:


Ĉi tiu instalprogramo kopias dosierojn (ofte ĵuse kompilitaj) en celajn
lokojn kiujn vi elektas.  Se vi volas elŝuti kaj instali uzpretan pakon
sur GNU/Linuksa sistemo, vi devus uzi anstataŭe pakaĵmastrumilon kiel
yum(1) aŭ apt-get(1).

En la tri unuaj aranĝoj, ĝi kopias ORIGINOn al CELO, aŭ (pluraj) ORIGINO(j)n
al ekzistanta DOSIERUJO, kaj starigas la permesojn kaj posedanton/grupon.
En la kvara aranĝo, ĝi kreas ĉiujn elementojn de la indikata(j) DOSIERUJO(j).


Uzu unu, kaj nur unu, de «-b», «-c», aŭ «-f».  Ĉiu LISTO konsistendas el
unu gamo, aŭ multaj gamoj disigitaj per komoj.  Elektita enigo skribiĝas
en la sama ordo en kiu ĝi legiĝas, kaj skribiĝas ekzakte unufoje.

Uzu '%s --coreutils-prog=PROGRAMNOMO --help' por helpo pri iu programo.

Uzo de opcio '-s' ignoras '-L' kaj '-P'.  Alie, la laste indikata opcio
difinas la konduton kiam iu CELO estas simbola ligo -- defaŭlte %s.


Se DOSIERO1 aŭ DOSIERO2 (ne ambaŭ) estas «-», ĉefenigujo legiĝas.

Sen DOSIERO, aŭ kiam DOSIERO estas «-», ĉefenigujo legiĝas.

Kiam sen opcioj, produktas trikolumnan eligon.  La unua kolumno entenas
liniojn unikajn al DOSIERO1, la dua kolumno liniojn unikajn al DOSIERO2,
kaj la tria kolumno liniojn komunajn al ambaŭ dosierojn.

Sen iu ajn OPCIO, eligi iun utilan aron de uzanta kaj grupa informo.
 (nekonata)      --attributes-only        ne kopii la dosierdatumojn, nur la atributojn
      --copy-contents          kopii enhavon de specialaj dosieroj kiam rikure
      --lookup      provi normaligi gastnomojn per DNS
      --message     egalas al «-T»
      --no-preserve-root   ne trakti '/' aparte (la defaŭlto)
      --no-preserve=ATRIBUTLISTO    ne konservi la indikatajn atributojn
      --no-sync         ne voki 'sync' antaŭ kapti diskuzad-informojn (defaŭlto)
      --parents                uzi plenan ORIGINOdosieran nomon sub DOSIERUJO
      --portability   fari kontrolon por ĉiuj POSIX-sistemoj (egalas al '-p -P')
      --preserve-root      rifuzi operacii rikure sur '/'
      --random-source=DOSIERO  preni hazardajn bajtojn el DOSIERO
      --reflink[=KIAM]         kopii nur skribotajn blokojn (vidu sube)
      --sparse=KIAM            stiri kreon de maldensaj dosieroj (vidu sube)
      --strip-program=PROGRAMO      uzenda programo por forigi simboltabelojn
      --writable    egalas al «-T»
  + ĴETONO                   interpreti ĴETONOn kiel ĉeno, eĉ se ĝi estas
                               ŝlosilvorto kiel 'match' aŭ operacio kiel '/'

  ( ESPRIMO )                valoro de ESPRIMO
  -0, --null                disigi eligon per nulbajtoj anstataŭ per novlinioj
  -G, --groups    eligi ĉiujn grupajn ID-ojn
  -H                           sekvi komandliniajn simbolajn ligojn en ORIGINO
  -H, --heading     montri linion de kolumno-kapoj
  -L, --dereference            ĉiam sekvi simbolajn ligojn en ORIGINO
  -L, --logical               sekvi CELOjn kiuj estas simbolaj ligoj
  -L, --logical   uzi PWD de la ĉirkaŭaĵo, eĉ se ĝi enhavas simbolajn ligojn
  -M, --macro-name=NOMO          uzenda makronomo anstataŭ «xx»
  -O, --format=roff              generi eligon en formo de 'roff'-direktivoj
  -P, --no-dereference         neniam sekvi simbolajn ligojn en ORIGINO
  -P, --physical              krei rektajn ligojn rekte al simbolaj ligoj
  -R, --right-side-refs          meti linireferencojn dekstre, ekster larĝo
  -S, --sentence-regexp=REGESP   por linifinoj aŭ fino de frazoj
  -T, --format=tex               generi eligon en formo de 'TeX'-direktivoj
  -T, --no-target-directory   ĉiam trakti LIGNOMOn kiel normalan dosieron
  -T, --show-tabs          montri ĉiun TAB-signon kiel «^I»
  -T, -w, --mesg    aldoni mesaĝan staton de la uzanto kiel «+», «-» aŭ «?»
  -W, --word-regexp=REGESP       uzi REGESP por kongrui ĉiun ŝlosilvorton
  -Z, --context   eligi nur la sekurecan kuntekston de la procezo
  -a              ignoriĝas (rekoniĝas nur por kongrui kun aliaj versioj)
  -a, --all         egalas al «-b -d --login -p -r -t -T -u»
  -a, --archive                egalas al «-dR --preserve=all»
  -a, --multiple        permesi plurajn argumentojn kaj trakti ĉiun kiel NOMOn
  -b, --boot        montri tempon de lasta sistemstarto
  -b, --break-file=DOSIERO       vortrompigaj signoj estas en ĉi tiu DOSIERO
  -b, --bytes=LISTO       elekti nur ĉi tiujn bajtojn
  -b, --suffix-format=ARANĜO  uzi ĉi tiun ARANĜOn (de 'sprintf') anstataŭ %02d
  -c                  (ignoriĝas)
  -c, --changes          kiel '--verbose', sed nur kiam ŝanĝo okazis
  -c, --characters=LISTO  elekti nur ĉi tiujn signojn
  -c, --count           prefiksi liniojn per la nombro de okazoj
  -c, --crown-margin        konservi krommarĝenon de la unuaj du linioj
  -c, --no-create         ne krei iun ajn dosieron
  -d                           egalas al «--no-dereference --preserve=links»
  -d, --dead        montri ankaŭ mortajn procezojn
  -d, --decode           malkodi la datenojn
  -d, --delimiter=SIGNO   uzi SIGNOn anstataŭ TAB-on por kampdisigilo
  -d, --repeated        montri nur la ripetitajn liniojn, unu por ĉiu grupo
  -e, --echo                   trakti ĉiun ARGUMENTOn kiel enigan linion
  -f, --force                 forigi ekzistantajn celdosierojn
  -f, --ignore-case              trakti minusklojn kiel majusklojn por ordigo
  -f, --prefix=PREFIKSO       uzi ĉi tiun PREFIKSOn anstataŭ 'xx'
  -g, --gap-size=NOMBRO          breĉa grando en kolumnoj inter eligaj kampoj
  -g, --goal=LARĜO          cela larĝo (defaŭlto: 93% de maksimuma larĝo)
  -g, --group     eligi nur la efektivan grupan ID-on
  -h, --no-dereference   efiki simbolan ligon mem anstataŭ kion ĝi indikas
  -i, --ignore-case     ignori usklecajn malsamecojn je komparo
  -i, --ignore-case  ignori malsamecojn en uskleco dum komparo de kampoj
  -i, --ignore-environment  komenci kun vaka ĉirkaŭaĵo
  -i, --ignore-file=DOSIERO      legi liston de ignorendaj vortoj el DOSIERO
  -i, --ignore-garbage   ignori nealfabetajn signojn dum malkodado
  -i, --inodes          listigi informon pri indeksnodoj anstataŭ pri blokuzado
  -i, --input-range=DE-ĜIS     trakti ĉiun numeron ekde DE tra ĜIS kiel enigan linion
  -i, --interactive           demandi ĉu forigi jam ekzistantajn nomojn
  -k                    kiel '--block-size=1K'
  -k, --keep-files            ne forigi eligajn dosierojn kiam eraro okazas
  -l, --link                   senpere ligi dosierojn anstataŭ kopii ilin
  -l, --list [IO]  montri signalnomojn (aŭ konverti inter nomoj kaj numeroj)
  -l, --local           limigi listadon al lokaj dosiersistemoj
  -l, --login       montri ensalutajn procezojn de la sistemo
  -l, --range=GAMO       difini gamon GAMO en la cela sekureca kunteksto
  -n                      (ignoriĝas)
  -n, --digits=NOMBRO         uzi ĉi tiun nombron de ciferoj anstataŭ 2
  -n, --head-count=NOMBRO      eligi maksimume NOMBRO liniojn
  -n, --nodename           montri la retnomon de la komputilo
  -o, --io-blocks         trakti GRANDOn kiel nombro de en-eligaj blokoj
                            anstataŭ kiel bajtoj
  -o, --only-file=DOSIERO        legi nuran vortliston el ĉi tiu DOSIERO
  -o, --output=DOSIERO         eligi rezulton al DOSIERO anstataŭ al ĉefeligujo
  -p                           egalas al «--preserve=mode,ownership,timestamps»
  -p, --print-database        eligi la defaŭltojn
  -p, --process     montri aktivajn procezojn kiuj kreiĝis far 'init'
  -q, --count       montri nur nomojn kaj nombron de ensalutitaj uzantoj
  -r, --kernel-release     montri la eldonon de la kerno
  -r, --reference=REFDOS  uzi la grandon de ĉi tiu referenca dosiero
  -r, --references               unua kampo de ĉiu linio estas referenco
  -r, --repeat                 permesi ke la eniglinioj uziĝas plurfoje
  -r, --role=ROLO        difini rolon ROLO en la cela sekureca kunteksto
  -r, --runlevel    montri nunan rulnivelon
  -s, --kernel-name        montri la nomon de la kerno
  -s, --only-delimited    ne eligi liniojn kiuj ne enhavas disigilojn
  -s, --short       montri nur nomon, terminalon kaj tempon (defaŭlte)
  -s. --size=GRANDO       agordi aŭ adapti la dosiergrandon laŭ ĉi tiu GRANDO
  -s, --skip-chars=N    eviti kompari la unuajn N signojn
  -s,  --split-only         fendi longajn liniojn, sed ne rerektigi ilin
  -s, --strip                forigi el programoj la tabelojn de simboloj
  -s, --suffix=SUFIKSO  forlasi ĉi tiun SUFIKSOn kiam ĝi okazas
  -s, --symbolic              krei simbolajn ligojn anstataŭ rektajn
  -s, --symbolic-link          krei simbolajn ligojn anstataŭ kopii la enhavon
  -t                       egalas al opcioj «-vT»
  -t, --table      montri tabelon de informoj pri signaloj
  -t, --tagged-paragraph    krommarĝeno de unua linio malsamas al tiu de dua
  -t, --target-directory=DOSIERUJO  kopii ĉiujn ORIGINOjn al DOSIERUJO
  -t, --target-directory=DOSIERUJO  movi ĉiujn ORIGINOjn ene al DOSIERUJO
  -t, --time        montri la lastan sistemhorloĝan ŝanĝon
  -t, --type=TIPO        difini tipon TIPO en la cela sekureca kunteksto
  -u                       (ignorata)
  -u, --uniform-spacing     unu spaceto inter vortoj, du post frazoj
  -u, --unique          montri nur unikajn liniojn
  -u, --unset=NOMO          forigi variablon de la ĉirkaŭaĵo
  -u, --user      eligi nur la efektivan uzantan ID-on
  -u, --user=UZANTO      difini uzanton UZANTO en la cela sekureca kunteksto
  -v, --show-nonprinting   uzi «^» kaj «M-» notigon, escepte por LFD kaj TAB
  -v, --verbose            ĉiam eligi ĉapojn kun dosiernomoj
  -v, --verbose   eligi mesaĝon por ĉiu dosierujo kiu proceziĝis
  -v, --verbose          eligi mesaĝon por ĉiu dosiero kiu proceziĝis
  -v, --verbose               montri nomon de ĉiu ligata dosiero
  -w, --width=NOMBRO             eliglarĝo en kolumnoj (ekskluzive referenco)
  -w, --width=LARĜO         maksimuma larĝo de linio (defaŭlto: 75 kolumnoj)
  -x, --one-file-system        resti sur dosiersistemo sur kiu kopiado komencis
  -z, --zero            disigi eligon per nulbajtoj anstataŭ per novlinioj
  -z, --zero-terminated     disigi eligon per nulbajtoj anstataŭ per novlinioj
  Dosiero: "%n"
       ID: %-8i   Nomlongo: %-7l   Tipo: %T
Blokgrando: %-10s   Baza blokgrando: %S
Blokoj  -- Tutaj: %-10b   Liberaj: %-10f   Disponeblaj: %a
I-nodoj -- Tutaj: %-10c   Liberaj: %d
  Dosiero: %N
  Grando: %-10s   Blokoj: %-10b   IO-bloko: %-6o %F
  Procezoj en ne-interrompebla dormstato ankaŭ kontribuas
al la meznombra ŝarĝo.
  \0NNN   bajto kun okuma valoro NNN (1 ĝis 3 ciferoj)
  \xHH    bajto kun deksesuma valoro HH (1 aŭ 2 ciferoj)
  \NNN    bajto kun okuma valoro NNN (1 ĝis 3 ciferoj)
  \xHH    bajto kun deksesuma valoro HH (1 aŭ 2 ciferoj)
  \uHHHH  Unikoda (ISO/IEC 10646) signo kun deksesuma valoro HHHH (4 ciferoj)
  \UHHHHHHHH  Unikoda signo kun deksesuma valoro HHHHHHHH (8 ciferoj)
  \\      malsuprenstreko
  \a      pepo (BEL)
  \b      retropaŝo
  \c      produkti nenian plian eligon
  \e      eskapo
  \f      paĝavanco
  \n      liniavanco
  \r      ĉaretreiro
  \t      horizontala tabo
  \v      vertikala tabo
  none, off        neniam fari savkopiojn (eĉ se nuran «--backup» indikatas)
  numbered, t      fari numeratajn savkopiojn
  existing, nil    numeratajn se numeratajn savkopiojn ekzistas, alie simplajn
  simple, never    ĉiam fari simplajn savkopiojn
 (savkopio: %s) ??:??   TTY kunteksto=%s grupoj=longenevalida konvertindiko: %.*s%b %e  %Y%b %e %H:%M%s (por regulesprimo %s)%s -> %s (restaŭro)
'%s [-d]' finiĝis nenormale%s kaj %s estas la sama dosiero%s ekzistas sed ne estas dosierujo%s atendatas%s atendatas, %s trovitas%s iĝis atingebla%s iĝis neatingebla%s havas nekonatan dosiertipon%s havas neuzeblan, ŝajne negativan grandonHejmpaĝo de «%s»: <%s>
%s ne estas valida pozitiva entjeroeblas uzi %s nur je SE-Linuksa kerno%s anstataŭiĝisindikatas %s sen %s%s anstataŭigus la enigon -- abortiĝasargumento de %s%s tro grandas: «%s»%s: %s: lininumero estas ekster gamo%s: %s: paron ne trovatas%s: '}' nepras en ripeta nombroduloka operacisigno atendatas, %s trovitas%s: krei relativajn simbolajn ligojn eblas nur en aktuala dosierujo%s: ne eblas ŝanĝi nebarantan moduson%s: ne eblas eltrovi dosiergrandon%s: ne eblas anstataŭigi dosierujonmalsukcesis 'lseek' ĝis komenco sur %s%s: 'seek' ne eblasmaleblas tutviŝi nur-aldonan dosieron %s%s: ne eblas transsalti%s: ne eblas salti al indikata pozicio%s: mankas ferma disigilo '%c'%s: malsukcesis reagordi nebarantan moduson%s: ĉu eniri en dosierujon %s? %s: ĉu eniri en kontraŭskribe protektatan dosierujon %s? %s: fino de dosiero%s: ekvivalentklasa argumento nepras esti ununura signo%s: eraro dum trunkado%s: numera valoro atendatasmalsukcesis fermi %smalsukcesis malfermi %s por skribadomalsukcesis forigi %smalsukcesis fcntl() sur %smalsukcesis 'fdatasync' por %s%s: dosiero havas negativan grandon%s: dosiero ŝrumpis troe%s: dosiero tro grandas%s: dosiero trunkitasmalsukcesis eltrovi statinformon pri malferma %smalsukcesis 'fsync' por %s%s: senpera ligo malpermesatas por dosierujo%s: enigo enhavas iteracion:%s: enigo enhavas malparecan nombron de simbolojeniga dosiero %s estas la eliga dosiero; ĝi ignoriĝas%s: post disigilo atendiĝas entjero%s: nevalida nombro je komenco de %snevalida indiko: %s%s: nevalida kampindiko %s%s: nevalida dosiertipo%s: nevalida opcio -- «%c»
%s: nevalida serĉa ŝablono%s: nevalida indiko de procezo%s: nevalida regulesprimo: %s%s: nevalida signalo%s: nevalida komenca valoro por numera sufikso%s: lininumero devas esti pli ol nulo%s: lininumero estas ekster gamomalsukcesis 'lseek' sur %s%s: pluraj signaloj indikatas%s: novaj permesoj estas %s, ne %s%s: mankas informo pri grando de ĉi tiu aparato%s: tiu uzanto ne ekzistas%s: ne listiĝas jam listita dosierujo%s: opcio bezonas argumenton -- «%c»
%s: ĉu anstataŭigi %s? %s: paŝo %lu/%lu (%s)...%s: paŝo %lu/%lu (%s)...%s%s: paŝo %lu/%lu (%s)...%s/%s %d%%%s: leg-eraro%1$s: ĉu forigi %3$s? (ĝi estas %2$s) %1$s: ĉu forigi %3$s? (ĝi estas kontraŭskribe protektata %2$s) forigiĝis %sforigiĝas %s%s renomiĝis al %s%s: ĉu anstataŭigi %s, ignorante moduson %04lo (%s)? %s: ĉu anstataŭigi %s? malsukcesis 'seek' sur %s%s: tro multaj linioj de kontrolsumoj%s: ne eblas eltrovi maksimuman longecon de dosiernomo%s: ne eblas efiki ĉiujn petatajn operaciojnunuloka operacisigno atendatas, %s trovitas%s: %s ne estas skribebla (moduso %04lo, %s); ĉu provi tamen? %s: valoro ne komplete konvertiĝis%s: skrib-eraro%s: malsukcesis skribo%s:%lu: nevalida dosiernomo (longo nulas)%s}: entjero nepras inter '{' kaj '}'»troaj signoj aŭ nevalida nombro je opcio '-%c': %smankas argumento en '--page=UNUA_PAĜO[:LASTA_PAĜO]'©,  meznombra ŝarĝo: %.2fargumento por opcio '--%s' tro grandas: %sopcio '--context' (-Z) nur funkcias kun SELinuksa kernoopcio '--context' (-Z) nur funkcias kun SELinuksa aŭ SMACKa kernonekombineblas opcio «--group» kun «-c», «-d», «-D», kaj «-u»nekombineblas opcioj «--grouping» kaj «--format»opcio «--header» ignoratas sen komandlinia enigoeblas uzi opcion '--reflink' nur kune kun '--sparse=auto'opcioj '--tag' kaj '--text' ne kombineblas'-R --dereference' bezonas aŭ '-H' aŭ '-L''-R -h' bezonas '-P''-ef' ne akceptas '-l'opcio «-r» ne indikatas; preterpasiĝas dosierujo %s<interna>(nekonata)
-----AbortitaAtingo: %x
Modifo: %y
Ŝanĝo:  %z
Kreo:   %w
Atingo: (%04a/%10.10A)  UID: (%5u/%8U)   GID: (%5g/%8G)
Ne subteniĝas adresfamilio por komputilretnomoVekhorloĝoAleks DEJMO (Alex Deymo)Ĉiuj petoj estas plenumitajBufro por argumentoj tro malgrandasArnold ROBINS (Arnold Robbins)Asaf GORDON (Assaf Gordon)LiberLiberajMisa sistemvokoMisa valoro por 'ai_flags'Brajen FOKS (Brian Fox)Rompita duktoBus-eraroKomentoLimo de procesortempo transpasiĝisKreas ligon de nomo DOSIERO2 al ekzistanta DOSIERO1.
Forigas la indikatan DOSIEROn per alvoko al funkcio 'unlink()'.

KapacitoŜanĝas la SELinuksan sekurecan kuntekston de ĉiu DOSIERO al KUNTEKSTO.
Kun «--reference», ĝi ŝanĝas la sekurecan kuntekston de ĉiu DOSIERO
al tiu de REFERENCDOSIERO.
Ŝanĝas la grupon de ĉiu DOSIERO al GRUPO.
Kun «--reference», ŝanĝas la grupon de ĉiu DOSIERO al tiu de REFERENCDOSIERO.

Ŝangas la moduson de ĉiu DOSIERO al MODUSO.  Kun opcio «--reference»,
ĝi ŝangas la moduson de ĉiu DOSIERO al tiu de REFERENCDOSIERO.

Ŝanĝas la posedanton kaj/aŭ grupon de ĉiu DOSIERO al POSEDANTO kaj/aŭ GRUPO.
Kun «--reference», ŝanĝas la posedanton kaj grupon de ĉiu DOSIERO al tiuj de
REFERENCDOSIERO.

Ĉet REMI (Chet Ramey)Ido finisKolin PLOM (Colin Plumb)Komparas ordigitajn dosierojn DOSIERO1 kaj DOSIERO2 po-linie.
Kunteksto: %C
DaŭrigitaKopias ORIGINOn al CELO, aŭ plurajn ORIGINOjn al DOSIERUJO.

Kreas nomhavajn duktojn (vicmemorojn) kun la indikataj NOMOj.

Kreas la DOSIERUJO(j)n, se ĝi aŭ ili ne jam ekzistas.

Kreas specialan dosieron kun indikata NOMO kaj de indikata TIPO.

David IĤNAT (David M. Ihnat)David MEKENZI (David MacKenzie)David MADOR (David Madore)Dosierujo: Dmitri LEVIN (Dmitry V. Levin)EMT-komandoEliroEligi la indikata(j)n ĈENO(j)n al ĉefeligujo.

Erik BLEJK (Eric Blake)Rulas la internan PROGRAMOn kun la indikataj ARGUMENTOJ.

Eliras kun rezultkodo kiu indikas malsukceson.Eliras kun rezultkodo kiu indikas sukceson.Fransŭa PINAR (François Pinard)MALSAMASVicmemoro ('FIFO') ne havas ĉefan kaj kroman aparatnumeron.DosieroLimo de dosiergrando transpasiĝisDosiersistemoFiltras apudajn kongruajn linioj elde ENIGDOSIERO (aŭ ĉefenigujo),
kaj skribas la restaĵon al ELIGDOSIERO (aŭ ĉefeligujo).

Sen opcioj, kongruaj linioj estas kunfandataj al la unua okazo.

Glitkomkalkul-eraroĜusepe SKRIVANO (Giuseppe Scrivano)Piter ANVIN (H. Peter Anvin)MalkonektoEnigo/eligo eblasVakasI-lbrIuza%I-uzataIen Lans TEJLOR (Ian Lance Taylor)VakasSe DOSIERO ne indikatas, %s uzatas.  Kiel DOSIERO kutimas %s.

MiskomandoVera nomo: En la unua formo, kreiĝas ligo al CELO kun nomo LIGNOMO.
En la dua formo, kreiĝas ligo en la nuna dosierujo al CELO.
En la tria kaj kvara formoj, kreiĝas ligoj en DOSIERUJO al ĉiu CELO.

Defaŭlte kreiĝas rektaj ligoj, simbolaj ligoj nur kun «--symbolic».
Defaŭlte ĉiu nomo de nova ligo devus ne jam ekzisti.
Dum kreado de rektaj ligoj, ĉiu CELO devas ekzisti.
Simbolaj ligoj povas enhavi iun ajn tekston; dum posta sekvado,
relativa ligo interpretiĝas baze de sia patra dosierujo.
senfinoInformmendoI-nodojInterrompoInterrompita per signaloNevalida retroreferencoNevalida nomo de signoklasoNevalida kunmetita signoNevalida enhavo de \{\}nevalida numeroNevalida antaŭa regulesprimoNevalida fino de gamoNevalida regulesprimoĜejmz JONGMAN (James Youngman)Ĝej LEPRO (Jay Lepreau)Ĝim KINGDON (Jim Kingdon)Ĝim MEJERING (Jim Meyering)Ĝosef ARSENO (Joseph Arceneaux)Kave GAZI (Kaveh Ghazi)Kejven AGEJPUR (Kayvan Aghaiepour)Kevin BRAŬNSDORF (Kevin Braunsdorf)BuĉitaTerminaloLOGINListigas informon pri DOSIERUJOj (defaŭlte pri la aktuala).
Alfabetigas la termojn se neniu de '-cftuvSUX' nek '--sort' indikatas.

SalutoEnsaluta nomo: Mark KETENIS (Mark Kettenis)Mefju BREDBORN (Matthew Bradburn)Mankas sufiĉa memoroMankas sufiĉa memoroMajkel MESKES (Michael Meskes)Majkel STON (Michael Stone)Majk HERTEL (Mike Haertel)Majk PARKER (Mike Parker)Metita surNomoNomoNomo aŭ servo ne konatasNils MOLER (Niels Moller)Neniu adreso estas asociata kun nomo de gastiga komputiloNeniu trafoMankas antaŭa regulesprimoNeriparebla malsukceso ĉe nom-eltrovobonasNur unu signoĉeno permesatas kiam forigiĝas sen kunpremi ripetojn.Ordigantaj opcioj:

Eligas ordigitan liston de la vortoj en la enigdosieroj,
inkluzivante la kuntekston de tiuj vortoj.
Eligas komandojn por agordi la ĉirkaŭaĵan variablon 'LS_COLORS'.

Montras ĉiun NOMOn sen sia lasta nestreka ero kaj sen finaj suprenstrekoj;
se NOMO ne enhavas suprenstreko, eligiĝas «.» (indikanta la nuna dosierujo).
Eligas la pecojn de DOSIERO kiuj disigatas per ŜABLONO(j) al la dosieroj
'xx00', 'xx01', ...; kaj eligas la bajtnombron de ĉiu peco al ĉefeligujo.

Eligas platformdependajn limojn en aranĝo kiu utilas por ŝelskriptoj.

Montras kiuj estas aktuale ensalutitaj laŭ DOSIERO.
Se DOSIERO ne indikatas, %s uzatas.  Kiel DOSIERO kutimas %s.

PIDPakigita far %s
Pakigita far %s (%s)
Porig BREDI (Pádraig Brady)Parametra ĉeno ne estas ĝuste koditaPaŭl EGERT (Paul Eggert)Paŭl RUBIN (Paul Rubin)Pit TERMAT (Pete TerMaat)Plano:
Elektra provizo perdiĝisNeatendita fino de regulesprimo  
Eligas ARGUMENTO(j)n laŭ ARANĜO, aŭ montras informon laŭ OPCIO:

Eligas NOMOn sen ĉiuj antaŭaj elementoj dosierujaj.
Se indikata, ankaŭ forigas postan SUFIKSOn.

Montras certan informon pri la komputilo.  Sen iu OPCIO, opcio «-s» kompreniĝas.

Montras grupajn anecojn por ĉiu indikata UZANTNOMO aŭ, sen iu UZANTNOMO, por
la aktuala procezo.  (Tiuj povas malsami se la grupa datumbazo ŝanĝiĝis.)
Montras informon pri la aktuale ensalutitaj uzantoj.
Montras la arkitekturon de la komputilo.

Eligas al ĉefeligujo elektitajn partojn de linioj de ĉiu DOSIERO.

Montras la nunan tempon, la daŭron kiu la sistemo jam rulas, la nombro
de uzantoj, kaj la meznombro de taskoj en la rulvico dum la lastaj 1, 5
kaj 15 minutoj.Montras la dosiernomon de la terminalo kiu estas konektata al ĉefenigujo.

Eligas la kompletan dosiernomon de la aktuala labordosierujo.

Eligas la primajn faktorojn de ĉiu indikata ENTJERO.  Se neniu
indikatas sur la komandlinio, ili legiĝas de ĉefenigujo.
Montras la uzantnomon de la aktuala uzanta ID-o.
Samas al 'id -un'.

Montras la valoron de simbola ligo aŭ ĝian norman dosiernomon.

Traktado de peto daŭrasProfilanta horloĝo transpasis limtemponProjekto: Frenk KSIA (Q. Frank Xia)ForlasigoRendi SMIF (Randy Smith)Realtempa signalo %dRearanĝas ĉiun paragrafon el la DOSIERO(j), skribante al ĉefeligujo.
La opcio '-CIFEROJ' estas mallongigo de '--width=CIFEROJ'.

Regulesprimo tro grandasAlinomas ORIGINOn al CELO, aŭ translokas ORIGINO(j)n al DOSIERUJO.

Daŭre eligas linion kun (ĉiuj) indikata(j) ĈENO(j), aŭ 'y'.

Raportu programmisojn en «%s» al: %s
Peto nuligitasPeto ne nuligitasRisurco perdiĝisRiĉard STOLMEN (Richard M. Stallman)Riĉard MLINARIK (Richard Mlynarik)Roland HIBNER (Roland Huebner)Roland MEKGRAF (Roland McGrath)Ros PETERSON (Ross Paterson)Rulas KOMANDOn kun ŝanĝita afableco, kiu afektas procezan planadon.
Sen iu KOMANDO, la nuna afableco eligiĝas.  Afablecoj etendiĝas de
%d (plej favora planado) al %d (malplej favora).

Rulas KOMANDOn kun CELDOSIERUJO kiel radika dosierujo.

Rulas KOMANDOn, ignorante ajnajn 'hangup'-signalojn.

Rosel KUKER (Russell Coker)Skot BARTREM (Scott Bartram)Skot MILER (Scott Miller)Adres-eraroSendas signalojn al procezoj, aŭ eligas signalnomojn kaj -numerojn.

'servname' ne subtenatas por 'ai_socktype'Agordu LC_ALL='C' por eviti la problemon.Agordas en la ĉirkaŭaĵo ĉiun NOMOn al VALORO kaj lanĉas KOMANDOn.

Ŝelo: Montras informon pri dosiersistemo en kiu loĝas ĉiu indikata DOSIERO,
aŭ defaŭlte pri ĉiuj dosiersistemoj.

Simon ĜOSEFSON (Simon Josefsson)GrandoSpecialaj dosieroj postulas ĉefajn kaj kromajn aparatnumerojn.Stak-eraroStartas KOMANDOn, kaj ĉesigas ĝin kiam ĝi ankoraŭ rulas post DAŬRO.
Paŭzigita (uzule)Paŭzigita (signale)Paŭzigita (pro terminalenigo)Paŭzigita (pro terminaleligo)Stjuŭart KEMP (Stuart Kemp)SukcesoSistemeraroEnsalutisDumtempa malsukceso ĉe nom-eltrovoĈesigitaLa komparitaj ĉenoj estis %s kaj %s.Torbjern GRANLUND (Torbjörn Granlund)Spurumo-/romppunkto-komandoMalsuprenstreko '\' ĉe la finoTajpu '%s --help' por pli da informoj.
Tajpu '%s ./%s' por forigi dosieron %s.
Endas indiki du signoĉenojn kiam kaj forigiĝas kaj kunpremiĝas ripetoj.Endas indiki du signoĉenojn kiam tradukiĝas.TipoUlriĥ DREPER (Ulrich Drepper)Nekonata eraroNekonata signalo %dNekonata sistemeraroSenpara ( aŭ \(Senpara ) aŭ \)Senpara [, [^, [:, [., aŭ [=Senpara \{Urĝa enig-/elig-statoUzmaniero:  %s
Uzmaniero:  %s --coreutils-prog=PROGRAMO [ARGUMENTOJ] 
Uzmaniero:  %s KOMANDO [ARGUMENTO...]
       aŭ:  %s OPCIO
Uzmaniero:  %s ESPRIMO
       aŭ:  %s OPCIO
Uzmaniero:  %s DOSIERO
       aŭ:  %s OPCIO
Uzmaniero:  %s DOSIERO1 DOSIERO2
       aŭ:  %s OPCIO
Uzmaniero:  %s ARANĜO [ARGUMENTO...]
       aŭ:  %s OPCIO
Uzmaniero:  %s NOMO [SUFIKSO]
       aŭ:  %s OPCIO... NOMO...
Uzmaniero:  %s OPCIO... KOMANDO
Uzmaniero:  %s OPCIO... DOSIERO...
Uzmaniero:  %s OPCIO... [DOSIERO...]
Uzamniero:  %s [-F APARATO | --file=APARATO] [AGORDO...]
       aŭ:  %s [-F APARATO | --file=APARATO] [-a|--all]
       aŭ:  %s [-F APARATO | --file=APARATO] [-g|--save]
Uzmaniero:  %s [-LARĜO] [OPCIO...] [DOSIERO...]
Uzmaniero:  %s [-s SIGNALO | -SIGNALO] PROCEZNUMERO...
       aŭ:  %s -l [SIGNALO...]
       aŭ:  %s -t [SIGNALO...]
Uzmaniero:  %s [NOMO]
       aŭ:  %s OPCIO

Montras aŭ agordas la retnomon de la aktuala komputilo.

Uzmaniero:  %s [OPCIO]
Uzmaniero:  %s [OPCIO]

Montras la numeran (deksesuman) identigilon de la aktuala komputilo.

Uzmaniero:  %s [OPCIO] NOMO...
Uzmaniero:  %s [OPCIO] [KOMANDO [ARGUMENTO...]]
Uzmaniero:  %s [OPCIO...]
Uzmaniero:  %s [OPCIO...] KUNTEKSTO DOSIERO...
       aŭ:  %s [OPCIO...] [-u UZANTO] [-r ROLO] [-l GAMO] [-t TIPO] DOSIERO...
       aŭ:  %s [OPCIO...] --reference=REFERENCDOSIERO DOSIERO...
Uzmaniero:  %s [OPCIO...] DOSIERUJO...
Uzmaniero:  %s [OPCIO...] DOSIERO ŜABLONO...
Uzmaniero:  %s [OPCIO...] DOSIERO...
Uzmaniero:  %s [OPCIO...] DOSIERO1 DOSIERO2
Uzmaniero:  %s [OPCIO...] LASTA
       aŭ:  %s [OPCIO...] UNUA LASTA
       aŭ:  %s [OPCIO...] UNUA PAŜO LASTA
Uzmaniero:  %s [OPCIO...] MODUSO[,MODUSO...]  DOSIERO...
       aŭ:  %s [OPCIO...] OKUMA_MODUSO  DOSIERO...
       aŭ:  %s [OPCIO...] --reference=REFERENCDOSIERO  DOSIERO...
Uzmaniero:  %s [OPCIO...] NOMO TIPO [ĈEFNUMERO KROMNUMERO]
Uzmaniero:  %s [OPCIO...] NOMO...
Uzmaniero:  %s [OPCIO...] [ DOSIERO | ARGUMENTO1 ARGUMENTO2 ]
Uzmaniero:  %s [OPCIO...] [-T] ORIGINO CELO
       aŭ:  %s [OPCIO...] ORIGINO... DOSIERUJO
       aŭ:  %s [OPCIO...] -t DOSIERUJO ORIGINO...
Uzmaniero:  %s [OPCIO...] [-T] ORIGINO CELO
       aŭ:  %s [OPCIO...] ORIGINO... DOSIERUJO
       aŭ:  %s [OPCIO...] -t DOSIERUJO ORIGINO...
       aŭ:  %s [OPCIO...] -d DOSIERUJO...
Uzmaniero:  %s [OPCIO...] [-] [NOMO=VALORO]... [KOMANDO [ARGUMENTO...]]
Uzmaniero:  %s [OPCIO...] [DOSIERO]
Uzmaniero:  %s [OPCIO...] [DOSIERO]
       aŭ:  %s -e [OPCIO...] [ARGUMENTO...]
       aŭ:  %s -i DE-ĜIS [OPCIO...]
Uzmaniero:  %s [OPCIO...] [DOSIERO...]
Uzmaniero:  %s [OPCIO...] [DOSIERO...]
       aŭ:  %s [-abcdfilosx] [DOSIERO... [[+]DEŜOVO[.][b]]
       aŭ:  %s --traditional [OPCIO...] [DOSIERO] [[+]DEŜOVO[.][b]] [[+]ETIKEDO[.][b]]
Uzmaniero:  %s [OPCIO...] [DOSIERO...]
       aŭ:  %s [OPCIO...] --files0-from=LISTDOSIERO
Uzmaniero:  %s [OPCIO...] [ENIGDOSIERO [ELIGDOSIERO]]
Uzmaniero:  %s [OPCIO...] [ENIGO...]   (sen '-G')
       aŭ:  %s -G [OPCIO...] [ENIGO [ELIGO]]
Uzmaniero:  %s [OPCIO...] [ŜABLONO]
Uzmaniero:  %s [OPCIO...] [UZANTNOMO...]
Uzmaniero:  %s [OPCIO...] [UZANTO...]
Uzmaniero:  %s [MALLONGA_OPCIO...] [ĈENO...]
       aŭ:  %s LONGA_OPCIO
Uzmaniero:  %s [ĈENO...]
       aŭ:  %s OPCIO
Uzmaniero:  %s [ignorataj argumentoj]
       aŭ:  %s OPCIO
Uzamaniero:  test ESPRIMO
        aŭ:  test
        aŭ:  [ ESPRIMO ]
        aŭ:  [ ]
        aŭ:  [ OPCIO
Uza%UzataUzula signalo 1Uzula signalo 2Validaj argumentoj estas:Validaj argumentoj estas:
Virtuala horloĝo transpasis limtemponAVERTO: ignoriĝas '--preserve-context'; tiu ĉi kerno ne subtenas SELinuxAVERTO: ignoriĝas '--strip-program' ĉar opcio '-s' ne indikatasAverto: EnsalutisKieFenestro ŝanĝiĝisSkribas hazardan permuton de la enigaj linioj al ĉefeligujo.

Eligas ordigitan kunmeton de ĉiuj DOSIEROj al ĉefeligujo.

Verkita de %s kaj %s.
Verkita de %s, %s, %s,
%s, %s, %s, %s,
%s, %s kaj aliaj.
Verkita de %s, %s, %s,
%s, %s, %s, %s,
%s kaj %s.
Verkita de %s, %s, %s,
%s, %s, %s, %s
kaj %s.
Verkita de %s, %s, %s,
%s, %s, %s kaj %s.
Verkita de %s, %s, %s,
%s, %s kaj %s.
Verkita de %s, %s, %s,
%s kaj %s.
Verkita de %s, %s, %s
kaj %s.
Verkita de %s, %s kaj %s.
Verkita de %s.
dum traduko esprimoj «[=s=]» ne permesatas en ARO2^ neniu kongruo por klavo
^[nN]^[jJyY]«kune kun ĝustigo endas indiki komandon'ai_family' ne subtenatas'ai_socktype' ne subtenatasplursenca argumento %s por %seblas indiki enigan disigilon nur kiam traktante kampojneligo aldoniĝas al %stipo de savkopioblokaparatdosieroblokaparatdosieroj ne subtenatasblokojne ambaŭ dosieroj povas esti ĉefenigujone eblas apliki partan kuntekston al sen-etikeda dosiero %sne eblas eltrovi kuntekston de procezone eblas atingi %sne eblas atingi %s: ĝi supermetiĝis per alia aparatone eblas krei savkopion de %sne eblas ambaŭ resumi kaj montri ĉiujn elementojnne eblas ŝanĝi posedanton de %sne eblas ŝanĝi permesojn de %sne eblas ŝanĝi radikan dosierujon al %sne eblas ŝanĝi al dosierujo %sne eblas iri al radika dosierujonekombineblas la opcioj «--target-directory» (-t) kaj «--no-target-directory» (-T)nekombineblas la opcioj '--target-directory' (-t) kaj '--no-target-directory' (-T)nekombineblas opcioj '-e' kaj '-i'ne eblas kombini iujn ajn el {ascii,ebcdic,ibm}ne eblas kombini 'block' kaj 'unblock'ne eblas kombini 'direct' kaj 'nocache'ne eblas kombini 'excl' kaj 'nocreat'ne eblas kombini 'lcase' kaj 'ucase'nekombineblas modusaj argumentoj kaj opcio «--reference»maleblas kombini signalon kun opcio '-l' aŭ '-t'ne eblas kompari dosiernomojn %s kaj %sne eblas konverti U+%04X al loka signarone eblas konverti U+%04X al loka signaro: %sne eblas kopii dosierujon %s al ene de si mem (%s)ne eblas kopii ciklan simbolan ligon %sne eblas krei dosierujon %sne eblas krei vicmemoron %sne eblas krei senperan ligon %s al %sne eblas krei ligon %s al %sne eblas krei regulan dosieron %sne eblas krei specialan dosieron %sne eblas krei simbolan ligon %sne eblas krei simbolan ligon %s al %smalsukcesis krei provizoran dosieron en %sne eblas malreferenci %sne eblas eltrovi aparaton kaj indeksnodon de %sne eblas eltrovi la retnomonne eblas eltrovi lokon de %s;  uzatas nun skrutiniomaleblas '--relative' sen '--symbolic'ne eblas fari 'ioctl' al %sne eblas sekvi %s je nomomalsukcesis eltrovi statinformon pri malferma %sne eblas eltrovi aktualan dosierujonmalsukcesis eltrovi efektivan GID-onmalsukcesis eltrovi efektivan UID-onne eblas eltrovi afableconmalsukcesis eltrovi realan GID-onmalsukcesis eltrovi realan UID-onmalsukcesis eltrovi la nomon de la sistemone eblas eltrovi grandon de %sne eblas 'lseek' sur %sne eblas krei samtempe senperan kaj simbolan ligonne eblas krei dosierujon %sne eblas movi %s al %sne eblas movi %s al subdosiero de si mem (%s)ne eblas malfermi %s por legimalsukcesis malfermi %s por skribine eblas malfermi dosierujon %sne eblas trakti sencelan simbolan ligon %sne eblas efektivigi formatitan eligonmaleblas konservi etenditajn atributojn; 'cp' kompilitis sen subteno por 'xattr'ne eblas konservi sekurecan kuntekston sen SE-Linuksa kernomaleblas eligi ion kun pliaj "nuraj" opciojmaleblas eligi sekurecan kuntekston kiam uzanto indikatasne eblas legine eblas legi dosierujon %smalsukcesis legi dosiernomojn el %smalsukcesis legi en dosiersistemo informon pri %smalsukcesis legi realtempan horloĝonne eblas legi simbolan ligon %sne eblas legi tabelon de surmetitaj dosiersistemojne eblas forigi %sne eblas ruli %sne eblas estigi %sne eblas agordi datonne eblas agordi nomon al %sne eblas agordi afableconne eblas agordi permesojn de %smaleblas kaj agordi celkuntekston kaj reteni ĝinmaleblas transsalti la finon de kombinata enigone eblas indiki opcio '--null' (-0) kune kun komandone eblas printi ambaŭ vertikale kaj horizontalene eblas indiki nombro da kolumnoj kiam printiĝas horizontalenekombineblas opcio '-t' kun '-d' aŭ '-r'maleblas dividi en pluraj manierojmalsukcesis eltrovi statinformon pri %smalsukcesis eltrovi statinformon pri aktuala dosierujo (nun %s)malsukcesis eltrovi statinformon pri ĉefenigujone eblas tuŝi %sne eblas restaŭri savkopion %smalsukcesis forigi %sne eblas malestigi %sne eblas rigardadi %sne eblas rigardadi patran dosierujon de %stamen rezultas ke maleblas preterpasi kern-eraronŝanĝiĝis grupo de %s -- de %s al %s
ŝanĝiĝis posedanto de %s -- de %s al %s
ŝanĝiĝas grupo de %sŝanĝiĝas posedanto de %sŝanĝiĝas permesoj pri %sŝanĝiĝas sekureca kunteksto de %s
signopozicio estas nulosigno estas ekster gamosignoaparatdosierosignoaparatdosieroj ne subtenatasvakigiĝas permesoj pri %shorloĝŝanĝomalsukcesis fermofermiĝas %s (dosiernumero=%d)fermiĝas dosierujo %sfermiĝas eniga dosiero %sfermiĝas eliga dosiero %sfermiĝas ĉefenigujokongrua moduso permesas maksimume unu dosieronkonfliktas la anstataŭigaj ĉenoj por vakaj kampojkonfliktas la indikoj de sekureca kuntekstokoneksaj datumojmalsukcesis agordi bufran moduson de %s al %s
malsukcesis krei provizoran dosieronmalsukcesis trovi en %s dosierujan elementon kies indeksnodo kongruasne eblas eltrovi la tempon de praŝargokreiĝas dosierujo %skreiĝas dosierujo %skreiĝas dosiero %s
listo de disigiloj finas per nuda malsuprenstreko: %sdosierujodivido per nulodoor-ovaka dosiernomovaka taboeraro dum normaligo de %seraro dum fermado de dosieroeraro en regulesprima serĉoeraro en regulesprima serĉoeraro dum legado de %seraro dum legado de 'inotify'-eventoeraro dum legado de enigoeraro dum atendado je komandoeraro dum skribado de %splenumiĝas kun FILE=%s
eliro=superflua argumento: %ssuperflua argumento: %saldona argumento %s ne permesatas por '-%c'malsukcesis atingi %smalsukcesis normaligi %smalsukcesis ŝanĝi kuntekston de %s al %smalsukcesis ŝanĝi grupon de %s de %s al %s
malsukcesis ŝanĝi grupon de %s al %s
malsukcesis ŝanĝi moduson de %s de %04lo (%s) al %04lo (%s)
malsukcesis ŝanĝi posedanton de %s
malsukcesis ŝanĝi posedanton de %s de %s al %s
malsukcesis ŝanĝi posedanton de %s al %s
malsukcesis ŝanĝi aktualan dosierujon al %smalsukcesis kloni %s el %smalsukcesis malfermi %smalsukcesis fermi enigan duktonmalsukcesis kalkuli novan kuntekstonmalsukcesis konverti kelkajn enigajn nombrojnmalsukcesis krei dosierujon tra ŝablono %smalsukcesis krei dosieron tra ŝablono %smalsukcesis krei senperan ligon %smalsukcesis krei senperan ligon %s al %smalsukcesis krei duktonmalsukcesis krei sekurecan kuntekston: %smalsukcesis krei simbolan ligon %smalsukcesis krei simbolan ligon %s al %smalsukcesis forĵeti kaŝmemoron por %smalsukcesis etendi %smalsukcesis trovi %smalsukcesis eltrovi atributojn de %smalsukcesis eltrovi aktualan kuntekstonmalsukcesis eltrovi grupojn por aktuala procezomalsukcesis eltrovi grupojn por uzanto %smalsukcesis eltrovi sekurecan kuntekston de %smalsukcesis obteni la aldonajn grupojnmalsukcesis trovi dosieron %smalsukcesis malfermi %smalsukcesis malfermi %s por legimalsukcesis malfermi %s por skribadomalsukcesis prepari valoron '%Lf' por montradomalsukcesis konservi aŭtorecon pri %smalsukcesis konservi posedanton pri %smalsukcesis konservi permesojn pri %smalsukcesis konservi tempojn pri %smalsukcesis alidirektigi ĉeferar-eligujonmalsukcesis forigi %smalsukcesis forigi dosierujon %smalsukcesis fari ĉefenigujon neuzeblamalsukcesis restaŭri kuntekston por %smalsukcesis restaŭri defaŭltan dosierkrean kuntekstonmalsukcesis reveni al komenca labordosierujomalsukcesis revolvi fluon por %smalsukcesis ruli komandon %smalsukcesis ruli komandon "%s -c %s"malsukcesis agordi elementon %s de sekureca kunteksto al %smalsukcesis agordi ĉirkaŭaĵan variablon FILEmalsukcesis agordi defaŭltan krean kuntekston por %smalsukcesis agordi defaŭltan dosierkrean kuntekston por %smalsukcesis agordi defaŭltan dosierkrean kuntekston al %smalsukcesis agordi grupnumeronmalsukcesis agordi aldonajn grupojnmalsukcesis agordi sekurecan kuntekston de %smalsukcesis agordi uzantnumeronmalsukcesis eltrovi statinformon pri %smalsukcesis malŝalti O_DIRECT: %smalsukcesis ĝisdatigi la ĉirkaŭaĵon kun %smalsukcesis 'fdatasync' por %smalsukcesis fflush()kampnumero %s estas tro grandakampnumero estas nulovicmemorodosiero %d ne estas en ordigita sekvonekombineblas dosieraj argumentoj kun opcio «--files0-from»nekombineblas dosieraj argumentoj kun opcio '--print-database' (-p)dosiersistema tipo %s estas ambaŭ elektita kaj ekskluzivitane eblas krei novan procezonaranĝo %s finiĝas per %%aranĝo %s ne enhavas %%-indikonaranĝo %s enhavas tro multajn %%-indikojnaranĝo %s enhavas nekonatan %%%c-indikonne permesatas indiki aranĝon kiam eligiĝas egallarĝajn ĉenojnmalsukcesis 'fsync' por %smalsukcesis 'fts_close()'malsukcesis 'fts_read()'malsukcesis 'fts_read()': %srelativa pado generiĝaseltroviĝas novaj atributoj de %sgrupo de %s restas %s
sensencas kaj grupigi kaj montri ripetnombrojnnekombineblas opcioj «--grouping» kaj «--to»grupado ne havas efekton en tiu ĉi lokaĵofunkcio 'iconv()' ne disponeblasfunkcio 'iconv()' ne uzeblasid=ignoratas «--no-newline» kun pluraj argumentojenigo ignoratasenigo ignoratas, kaj eligo aldoniĝas al %signoriĝas nevalida grando de tabo (%s) en ĉirkaŭaĵa variablo TABSIZEignoriĝas nevalida valoro (%s) de ĉirkaŭaĵa variablo QUOTING_STYLEignoriĝas nevalida larĝo (%s) en ĉirkaŭaĵa variablo COLUMNSignoratas ne-opciaj argumentojnekongruaj tabojne eblas uzi 'inotify';  uzatas nun skrutiniomankas sufiĉaj risurcoj por 'inotify'eniga linio tro longastroo de entjeromalsukcesis movo inter aparatoj: %s al %s;  ne eblas forigi celonnevalida argumento de %s%s: «%s»nevalida argumento por opcio '--%s': %snevalida argumento por opcio «--threshold»: '-0'nevalida PIDnevalida alĝustigo %snevalida argumento %snevalida argumento %s por %snevalida stilo por numeri korpliniojn: %snevalida bufra moduso %s por %s
nevalida signo '%c' en tipa ĉeno %snevalida signoklaso %snevalida kunteksto: %snevalida konvertonevalida konvertindiko en sufikso: %cnevalida konvertindiko en sufikso: \%.3onevalida dato %snevalida dataranĝo: %snevalida gamo, ĝi malkreskasnevalida aparato %s %snevalida aparattipo %snevalida kampnumero: %snevalida kampindiko: %snevalida kampvaloro %snevalida kampgrando: %snevalida dosiernumero en kampindiko: %snevalidaj flagoj en konvertindiko:: %%%c%cnevalida glitkoma argumento: %snevalida stilo por numeri piedliniojn: %snevalida larĝo de fendo: %snevalida gruponevalida grupo: %snevalida gruplisto: %snevalida stilo por numeri kapliniojn: %snevalida ĉapvaloro %snevalida enigaĵonevalida enigflagonevalida entjero %snevalida protokolo %s por lineonevalida lininumera aranĝo: %snevalida linia larĝo: %snevalida ĉefa aparatnumero %snevalida maksimuma profundo %snevalida nombro da senŝanĝaj statinformoj inter malfermojnevalida kroma aparatnumero %snevalida modusonevalida moduso %snevalida moduso: %snevalida numeronevalida numero post ','nevalida numero post '-'nevalida numero post '.'nevalida numero je kampkomenconevalida nombro da bajtojnevalida nombro de komparendaj bajtojnevalida nombro de saltendaj bajtojnevalida nombro de saltendaj kampojnevalida nombro da liniojnevalida nombro da sekundoj: %snevalida nombro: %snevalida opcio -- %cnevalida opcio %c;
opcio '-LARĜO' nur rekoniĝas kiam ĝi esta la unua;
alie uzu '-w LARĜO' anstataŭenevalida eligadresa bazo '%c'; ĝi devas esti unu signo el [doxn]nevalida eligflagonevalida ŝtopvaloro %snevalida gamo de paĝoj: %snevalida precizo: %snevalida gamo, sen finpunktoj: «-»nevalida ripeta nombro %s en konstruo «[s*n]»nevalida indikonevalida argumento de 'status'nevalida sufikso %s; ĝi enhavas apartigilon de dosierujojnevalida sufikso en argumento de %s%s: «%s»nevalida sufikso en enigo %s: %snevalida sufikso en enigo: %snevalida ŝablono %s; ĝi enhavas apartigilon de dosierujojnevalida ŝablono %s; kun opcio '--tmpdir' ĝi ne rajtas esti absolutanevalida tempintervalo: %snevalida temparanĝo: %snevalida opcio je la fino -- %cnevalida tipa ĉeno: %snevalida unueca grando: %snevalida universala signonomo \%c%0*xnevalida uzantonevalida uzanto: %snevalida faldiga grandonevalida dosiernomo (longo nulas)estas danĝere operacii rikure al %sestas danĝere operacii rikure al %s (samkiel %s)klavo %lu havas nulan larĝon kaj ignoriĝosklavo %lu estas numera kaj ampleksas plurajn kampojngranda eniga valoro %s: eblas perdo de precizecoantaŭa=komenca '-' en ero de dosiernomo %santaŭiraj spacetoj havas signifon en klavo %lu; pripensu indiki ankaŭ 'b'troo de lininumeromankas sufiĉa memoromesaĝovicomigrita dosiero kun datumojmigrita dosiero sen datumojminimuma argumento por opcio '--%s' estas %smisorda konstruo kun '[:upper:]' kajaŭ '[:lower:]'mankas konvertindiko %% en sufiksomankas %smankas sufikso «i» en enigo: %s (ekzemple Ki/Mi/Gi)mankas argumento post %smankas argumento al %smankas signoklasa nomo en '[::]'mankas konvertindiko en sufiksomankas celdosiera argumento post %smankas ekvivalentklasa signo en '[::]'mankas dosiera argumentomankas deksesuma nombromankas listo de kampojmankas argumentomankas argumento post %smoduso povas indiki nur permesajn bitojnmoduso de %s ŝanĝiĝis de %04lo (%s) al %04lo (%s)
moduso de %s restas %04lo (%s)
plursigna tabo %spluraj opcioj '-i' indikataspluraj opcioj '-l' aŭ '-t' indikataspluraj kunpremaj programoj indikataspluraj gamoj de nivelojpluraj eligaj dosieroj indikataspluraj eligaj aranĝoj indikataspluraj aleatoraj fontoj indikataspluraj relativaj modifiloj indikataspluraj rolojpluraj celaj dosierujoj indikataspluraj tipojpluraj uzantojmultipleksorata blokaparatdosieromultipleksorata signoaparatdosieromultipleksorata dosieronomata dosieronek simbola ligo %s nek ĝia referanto estas ŝanĝita
retaparatdosieroĉirkaŭaĵa variablo SHELL ne ekzistas, kaj neniu ŝelsintaksa opcio indikatasne ŝanĝiĝis posedanto de %s
neniu komando indikatasneniu konverta opcio indikatasneniu dosiersistemo pritraktatasne restas dosierojneniu enigo el %sneniu linio por ripetineniu ensaluta nomoneniu proceznumero indikatasne eblas indiki tipon kiam ŝutendas ĉenojneniu uzantnomo indikatas; endas indiki almenaŭ unu nomo kiam '-l' uzatasargumento estas ne-entjerane estas 'tty'ne skribiĝos tra sencela simbola ligo %sparalelnombro devas esti pli ol nulokomenca valoro de numereca sufikso tro grandas por sufikslongouziĝis olda klavo %s; pripensu uzi %s anstataŭepozicio trograndiĝis dum legado de dosiero %spreterpasiĝas dosierujo %snur unu ripeta konstruo «[s*]» permesatas en ARO2eblas indiki nur unu aparatonmalsukcesis malfermoopcio «-%s» ignoratasopcioj «-%s» ignoratasopcio «-r» aplikas nur al lastebla komparoje opcio «--output»: kampo %s nekonatasje opcio «--output»: kampo %s indikatas plurfojeopcio «--zero» ne permesatas en la defaŭlta aranĝoopcio uzatas en nevalida kunteksto -- %cnekombineblas opcioj '%s' kaj '%s'nekombineblas opcioj «-%s»nekombineblas opcioj '--compare' (-C) kaj '--preserve-timestamps'nekombineblas opcioj '--compare' (-C) kaj '--strip'elirdosieraj sufiksoj elĉerpiĝistroo dum etendo de grando de dosiero %stroo dum legado de %sposedanto de %s reteniĝas
posedanto de %s restas %s
troo de paĝnumerotro malgrandas paĝa larĝopordokonserviĝas permesoj pri %skonserviĝas tempoj pri %ssensencas montri kaj ĉiujn ripetitajn liniojn kaj la ripetnombrojnla gamekstremoj en '%s-%s' estas en inversa ordoleg-eraromalsukcesis legolegiĝas dosierujo %srikordo tro grandasne forigiĝas dosierujojn %s kaj %s;  transsaltatas %snormala malplena dosieronormala dosierosufikso en enigo rifuziĝis: %s (konsideru uzon de «--from»)forigiĝis %s
forigiĝas dosierujo %srulnivelosemaforodisigilo ne povas esti vakaAgordu LC_ALL='C' por eviti la problemon.agordiĝas flagoj pri %sagordiĝas permesoj pri %sagordiĝas tempoj de %skomuna memorobjektola sumo de la argumentoj de '-j' kaj '-N' tro grandastranssaltatas %s, ĉar ĝi estas en alia aparatoignoratas dosiero %s, ĉar ĝi estis substituata dum kopiadokonektiloĉeferar-eligujoĉefenigujoĉefenigujo fermitasĉefeligujomalsukcesis eltrovi statinformonhazarda signo en kampindikoĉena komparo malsukcesismalsukcesis transformi signoĉenonprocezo 'strip' finiĝis nenormalesubpremi liniojn sen disigilo eblas nur kiam traktante kampojnsimbola ligo(starto)taba pozicio ne povas esti nulotaba pozicio enhavas nevalida(j)n signo(j)n: %stabaj pozicioj devas kreskitaba pozicio %s estas tro grandataba pozicio estas tro grandatabaj pozicioj tro malproksimascela %s ne estas dosierujoceldosierujo malpermesatas dum instalado al dosierujoterm='test' kajaŭ '['opcioj '--binary' kaj '--text' ne havas sencon dum sumkontroloopcio '--compare' (-C) ignoriĝas kiam indikatas moduso kiu enhavas nepermesajn bitojnopcio '--quiet' nur havas sencon dum sumkontroloopcio '--status' nur havas sencon dum sumkontroloopcio '--strict' nur havas sencon dum sumkontroloopcio '--tag' ne havas sencon dum sumkontroloopcio '--warn' nur havas sencon dum sumkontroloripeta konstruo «[s*]» permesatas en ARO2 nur dum tradukoripeta konstruo «[s*]» ne permesatas en ARO1argumento %s ne havas komencan '+';
kiam opcio por indiki dato(j)n uzatas, iu ajn neopcia
argumento devas esti aranĝa ĉeno kiu komencas per '+'la disigilo devas esti ununura signonekombineblas opcioj '-a' kaj '-g' (por hom-legebla kaj stty-legebla eligo)nekombineblas la opcioj por eligi kaj por agordi temponnekombineblas la diversaj opcioj por indiki eligotaj datojla komparitaj ĉenoj estis %s kaj %sopcio '--strip' malpermesatas dum instalado al dosierujotempo %s estas ekster gamotro malmultaj X en ŝablono %stro multaj konvertindikoj %% en sufiksotro multaj signoj en arotro multaj enigliniojtro da ripetitaj liniojtro multaj ŝablonojtotalomalsukcesis transiro: %stipita memorobjektone eblas registri aktualan labordosierujonmalsukcesis agordi sekurecan kuntekston %sneatendita malsukceso: fts_info()=%d: %s
bonvolu raporti ĉi tion al %snekonata rezulto (%d) el komandonekonata rezulto (0x%X) el komandovaloro de ĉirkaŭaĵa variablo LS_COLORS ne analizeblas ne rekonatas argumento %snerekonata prefikso: %srulas  %2d:%02d,  rulas ??? tagoj ??:??,  uzu «--no-preserve-root» por malŝalti ĉi tiun sekurilonuzi %s por indiki ĉefenigujo ne funkcias en dosiersistema modusovaloro tro grandas por konverti: %svaloro tro grandas por montri: '%Lg' (pripensu uzi «--to»)atendado pri '%s [-d]'atendado pri ida procezoatendiĝas fino de 'strip'averto: %s: signo(j) post signokonstanto ignoriĝasaverto: %s: malsukcesis ŝanĝi kuntekston al %saverto: 'touch %s' arkaikas;
uzu 'touch -t %04ld%02d%02d%02d%02d.%02d'averto: opcio '--pid=PID' ne subtenatas en ĉi tiu sistemoaverto: opcio '--retry' ignoriĝas; ĝi utilas nur dum sekvadoaverto: opcio '--retry' efikas nur dum unua malfermoaverto: necitata malsuprenstreko ĉe la fino de signoĉeno ne transporteblasaverto: malsuprenstreko je aranĝofinoaverto: malsukcesis forigi %saverto: malsukcesis malŝalti nekropsiojnaverto: sekvi senĉese ĉefenigujon ne efikasaverto: ignoriĝas '--context' (-Z); ĝi bezonas kernon kun SELinuxaverto: ignoriĝas '--context' (-Z); ĝi bezonas kernon kun SELinux aŭ SMACKaverto: troaj argumentoj ignoratas, komence de %saverto: nevalida dosiera pozicio post malsukcesa legoaverto: lininumero %s egalas al ĵusantaŭa lininumeroaverto: opcioj '--apparent-size' kaj '-b' ne efikas kune kun '--inodes'averto: malsukcesis malbloki signalonaverto: fontdosiero %s indikatas plurfojeaverto: fontdosiero %s indikatas plurfojeaverto: resumi egalas al opcio «--max-depth=0»averto: plursenca okuma eskapsigno \%c%c%c
  kompreniĝas kiel du-bitoka sekvo: \0%c%c, %caverto: malsukcesis krei horloĝonaverto: malsukcesis agordi horloĝtemponaverto: nerekonata eskapsigno '\%c'stranga dosierokiam ARO1 ne trunkiĝas, ARO2 devas esti nevakane permesatas indiki reĝimon kune kun indiko de eligostilodum traduko kun komplementaj signoklasoj,
ARO2 devas bildigi ĉiujn signojn en la domajno al unukiam dum traduko ARO1 pli longas ol ARO2,
la lasta ĉeno ne rajtas fini per signoklasodum traduko nur la signoklasoj 'upper' kaj 'lower' permesatas en ARO2ne kopiiĝos %s tra ĵuskreita simbola ligo %sne kreiĝos senpera ligo %s al dosierujo %sne anstataŭiĝos ĵuskreita %s per %skun opcio «--parents» la celo devas esti dosierujokun opcio '--suffix', ŝablono %s devas fini per Xkun FILE=%s, eliro %d el komando %skun FILE=%s, signalo %s el komando %sskrib-eraroskrib-eraro por %smalsukcesis skriboskribiĝas al %snepras indiki '-c', '-l', '-r', '-t', '-u' aŭ kuntekstonnepras indiki opcion por bufra modusonepras indiki liston de bajtoj, signoj, aŭ kampojnepras indiki relativan %s kun %snepras indiki aŭ %s aŭ %s