File: fi.gmo

package info (click to toggle)
bash 5.1-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,116 kB
  • sloc: ansic: 112,107; sh: 7,438; yacc: 5,518; makefile: 4,533; perl: 4,227; asm: 48; awk: 23; sed: 16
file content (992 lines) | stat: -rw-r--r-- 74,465 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
D_l%*%&$'&
L&W&f&m&&&&	&&&'"'9'L'j' z''';'(((1("Z(}((&(&(/(/-)])s).))))*#*A*"U*x****/*++-+-@+n+++++++,!.,P,)m,,,,,,- &-!G-i- |--
----.!.4.K.c.}.
...&./)/?/U/&d/3////
00*0
90G09^0#0000H0:4J4Z4Ff45555	5	55

6@]@0B+EL
HWI?JAMFMOMt_MPsQkRoSgaTVuW2YZ^|^<_`
`````	aaab  bAbNbUb	ebobb	bbNb,b=$dfbeeePe.f:f3ijkFvmFmLnQoq q>3qrtDvvv	wwwwwxOx*cy
yyyyOyB9{E|{{
{{{X|_|*}|
|
|||}}
}}~~%6~$\~~~~!~~
)6'M0u9$:_s
&'€9$	6@!Y
{3=܁-H'h&**)
)7%a% 1΃#1$&V5}„!߄!:#^ y1#̅$$"#G'k.ʆ
,:Xl,%ɇ,%BQZg,|#@
"0M-h,'É.,&G0n6(֊))?:Tzϋ
8V=&'((Qds"5΍OTfx	~
Ɏ
Ԏ+ߎ9;E$ď 5PfHwϐ"+/[w4
Dđ?	,Iv!"Ò"		6@/S)3&2"5U,

Ô1ΔI4J.)	ؕ "2Nhu&='AX,u)̗$&2E"X{̘%.->7l62ۙ1*@,k,;Ś#%-!Ce6~*"	#--=-k!˜ڜ/)2Hah"-ß	/
:Yt,/РT8'$;ڡ&=)V.0::Vm))ڣ#+5a:xʤ*ߤ
5!Wo0ե!!/Q#h (ͦ#(#Cg .٧#',Te Ũ
 3;o#ܩ&/"Rp3FҪ%6\s
@٫/J^k}0
HLV߰(
D_Rrgo

HCkK	
N_q ")*9
P^r	QEi/g+	-O79x)HPo<P3?%e
 ;
&BTcNn0p+''.%>
d
o}%.3%+A!m>"1A=s5
#'4K45@N	$.
J(\B9/920l9:12D3w5&32<[o11/5E7{0:# C?d+0*%9._5.	+	
B	)P	z			,	.	/
0N




,

#N2"#3,9;1u.)9
7:
+r
&

P
U-+V,L$y*'GYr';	  

0'5X?,#!AR$c!!%bk,|
69D=L
Y?C/-'$4Y j	,,<><U8:,
3
>6IZ:.6E	|
%''(6H_!:!#>/b4$*#;Ja(y&%?A.JGAC>066, Pc 2 
  !
!#,!BP!=!(!$!
"*"0;"0l"!"""4"A`RN[u@}lkjX!gz1u=+p_F0g
O7np$q6kdv[H!2)>;*( B^\|~WJE(^Mx<J7G?arv aLySV	IwTem$t9N
,'/R3hZo=\D%G-#Y5hiy	Q):-8'Df6}lq|T"{tSn;o+BWc
#K8{A,LPUP4.xF*Cm<?93%eVZ/j~]fds:U_c5bH1Q&MY>OXbE]C`@rs&2iIzK.w
0timed out waiting for input: auto-logout
	-%s or -o option

malloc: %s:%d: assertion botched
  (wd: %s) (core dumped) line $%s: cannot assign in this way%c%c: invalid option%d: invalid file descriptor: %s%s can be invoked via %s is %s
%s is a function
%s is a shell builtin
%s is a shell keyword
%s is aliased to `%s'
%s is hashed (%s)
%s is not bound to any keys.
%s out of range%s%s%s: %s (error token is "%s")%s: %s out of range%s: %s: bad interpreter%s: %s: must use subscript when assigning associative array%s: ambiguous job spec%s: ambiguous redirect%s: arguments must be process or job IDs%s: bad network path specification%s: bad substitution%s: binary operator expected%s: cannot assign list to array member%s: cannot assign to non-numeric index%s: cannot convert associative to indexed array%s: cannot convert indexed to associative array%s: cannot create: %s%s: cannot delete: %s%s: cannot destroy array variables in this way%s: cannot execute binary file%s: cannot execute: %s%s: cannot get limit: %s%s: cannot modify limit: %s%s: cannot open temp file: %s%s: cannot open: %s%s: cannot overwrite existing file%s: cannot read: %s%s: cannot unset%s: cannot unset: readonly %s%s: command not found%s: error retrieving current directory: %s: %s
%s: expression error
%s: file is too large%s: file not found%s: first non-whitespace character is not `"'%s: hash table empty
%s: history expansion failed%s: host unknown%s: illegal option -- %c
%s: inlib failed%s: integer expression expected%s: invalid action name%s: invalid array origin%s: invalid associative array key%s: invalid callback quantum%s: invalid file descriptor specification%s: invalid limit argument%s: invalid line count%s: invalid option%s: invalid option name%s: invalid service%s: invalid shell option name%s: invalid signal specification%s: invalid timeout specification%s: is a directory%s: job %d already in background%s: job has terminated%s: line %d: %s: missing colon separator%s: no completion specification%s: no job control%s: no such job%s: not a function%s: not a regular file%s: not a shell builtin%s: not an array variable%s: not dynamically loaded%s: not found%s: numeric argument required%s: option requires an argument%s: option requires an argument -- %c
%s: parameter null or not set%s: readonly function%s: readonly variable%s: restricted%s: restricted: cannot redirect output%s: restricted: cannot specify `/' in command names%s: substring expression < 0%s: unary operator expected%s: unbound variable%s: usage: (( expression ))(core dumped) (wd now: %s)
. filename [arguments]/dev/(tcp|udp)/host/port not supported without networking/tmp must be a valid directory name<no current directory>ABORT instructionAborting...Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.
    
    Options:
      -n	Suppresses the normal change of directory when adding
    	directories to the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    	from the left of the list shown by `dirs', starting with
    	zero) is at the top.
    
      -N	Rotates the stack so that the Nth directory (counting
    	from the right of the list shown by `dirs', starting with
    	zero) is at the top.
    
      dir	Adds DIR to the directory stack at the top, making it the
    	new current working directory.
    
    The `dirs' builtin displays the directory stack.Alarm (profile)Alarm (virtual)Alarm clockArithmetic for loop.
    
    Equivalent to
    	(( EXP1 ))
    	while (( EXP2 )); do
    		COMMANDS
    		(( EXP3 ))
    	done
    EXP1, EXP2, and EXP3 are arithmetic expressions.  If any expression is
    omitted, it behaves as if it evaluates to 1.
    
    Exit Status:
    Returns the status of the last command executed.BPT trace/trapBad system callBogus signalBroken pipeBus errorCPU limitChild death or stopCommon shell variable names and usage.
    
    BASH_VERSION	Version information for this Bash.
    CDPATH	A colon-separated list of directories to search
    		for directories given as arguments to `cd'.
    GLOBIGNORE	A colon-separated list of patterns describing filenames to
    		be ignored by pathname expansion.
    HISTFILE	The name of the file where your command history is stored.
    HISTFILESIZE	The maximum number of lines this file can contain.
    HISTSIZE	The maximum number of history lines that a running
    		shell can access.
    HOME	The complete pathname to your login directory.
    HOSTNAME	The name of the current host.
    HOSTTYPE	The type of CPU this version of Bash is running under.
    IGNOREEOF	Controls the action of the shell on receipt of an EOF
    		character as the sole input.  If set, then the value
    		of it is the number of EOF characters that can be seen
    		in a row on an empty line before the shell will exit
    		(default 10).  When unset, EOF signifies the end of input.
    MACHTYPE	A string describing the current system Bash is running on.
    MAILCHECK	How often, in seconds, Bash checks for new mail.
    MAILPATH	A colon-separated list of filenames which Bash checks
    		for new mail.
    OSTYPE	The version of Unix this version of Bash is running on.
    PATH	A colon-separated list of directories to search when
    		looking for commands.
    PROMPT_COMMAND	A command to be executed before the printing of each
    		primary prompt.
    PS1		The primary prompt string.
    PS2		The secondary prompt string.
    PWD		The full pathname of the current directory.
    SHELLOPTS	A colon-separated list of enabled shell options.
    TERM	The name of the current terminal type.
    TIMEFORMAT	The output format for timing statistics displayed by the
    		`time' reserved word.
    auto_resume	Non-null means a command word appearing on a line by
    		itself is first looked for in the list of currently
    		stopped jobs.  If found there, that job is foregrounded.
    		A value of `exact' means that the command word must
    		exactly match a command in the list of stopped jobs.  A
    		value of `substring' means that the command word must
    		match a substring of the job.  Any other value means that
    		the command must be a prefix of a stopped job.
    histchars	Characters controlling history expansion and quick
    		substitution.  The first character is the history
    		substitution character, usually `!'.  The second is
    		the `quick substitution' character, usually `^'.  The
    		third is the `history comment' character, usually `#'.
    HISTIGNORE	A colon-separated list of patterns used to decide which
    		commands should be saved on the history list.
ContinueDefine shell function.
    
    Create a shell function named NAME.  When invoked as a simple command,
    NAME runs COMMANDs in the calling shell's context.  When NAME is invoked,
    the arguments are passed to the function as $1...$n, and the function's
    name is in $FUNCNAME.
    
    Exit Status:
    Returns success unless NAME is readonly.Display or execute commands from the history list.
    
    fc is used to list or edit and re-execute commands from the history list.
    FIRST and LAST can be numbers specifying the range, or FIRST can be a
    string, which means the most recent command beginning with that
    string.
    
    Options:
      -e ENAME	select which editor to use.  Default is FCEDIT, then EDITOR,
    		then vi
      -l 	list lines instead of editing
      -n	omit line numbers when listing
      -r	reverse the order of the lines (newest listed first)
    
    With the `fc -s [pat=rep ...] [command]' format, COMMAND is
    re-executed after the substitution OLD=NEW is performed.
    
    A useful alias to use with this is r='fc -s', so that typing `r cc'
    runs the last command beginning with `cc' and typing `r' re-executes
    the last command.
    
    Exit Status:
    Returns success or status of executed command; non-zero if an error occurs.Display or set file mode mask.
    
    Sets the user file-creation mask to MODE.  If MODE is omitted, prints
    the current value of the mask.
    
    If MODE begins with a digit, it is interpreted as an octal number;
    otherwise it is a symbolic mode string like that accepted by chmod(1).
    
    Options:
      -p	if MODE is omitted, output in a form that may be reused as input
      -S	makes the output symbolic; otherwise an octal number is output
    
    Exit Status:
    Returns success unless MODE is invalid or an invalid option is given.Display possible completions depending on the options.
    
    Intended to be used from within a shell function generating possible
    completions.  If the optional WORD argument is supplied, matches against
    WORD are generated.
    
    Exit Status:
    Returns success unless an invalid option is supplied or an error occurs.Display process times.
    
    Prints the accumulated user and system times for the shell and all of its
    child processes.
    
    Exit Status:
    Always succeeds.Display the list of currently remembered directories.  Directories
    find their way onto the list with the `pushd' command; you can get
    back up through the list with the `popd' command.
    
    Options:
      -c	clear the directory stack by deleting all of the elements
      -l	do not print tilde-prefixed versions of directories relative
    	to your home directory
      -p	print the directory stack with one entry per line
      -v	print the directory stack with one entry per line prefixed
    	with its position in the stack
    
    Arguments:
      +N	Displays the Nth entry counting from the left of the list shown by
    	dirs when invoked without options, starting with zero.
    
      -N	Displays the Nth entry counting from the right of the list shown by
	dirs when invoked without options, starting with zero.DoneDone(%d)EMT instructionEnable and disable shell builtins.
    
    Enables and disables builtin shell commands.  Disabling allows you to
    execute a disk command which has the same name as a shell builtin
    without using a full pathname.
    
    Options:
      -a	print a list of builtins showing whether or not each is enabled
      -n	disable each NAME or display a list of disabled builtins
      -p	print the list of builtins in a reusable format
      -s	print only the names of Posix `special' builtins
    
    Options controlling dynamic loading:
      -f	Load builtin NAME from shared object FILENAME
      -d	Remove a builtin loaded with -f
    
    Without options, each NAME is enabled.
    
    To use the `test' found in $PATH instead of the shell builtin
    version, type `enable -n test'.
    
    Exit Status:
    Returns success unless NAME is not a shell builtin or an error occurs.Evaluate conditional expression.
    
    This is a synonym for the "test" builtin, but the last argument must
    be a literal `]', to match the opening `['.Execute arguments as a shell command.
    
    Combine ARGs into a single string, use the result as input to the shell,
    and execute the resulting commands.
    
    Exit Status:
    Returns exit status of command or success if command is null.Execute commands as long as a test does not succeed.
    
    Expand and execute COMMANDS as long as the final command in the
    `until' COMMANDS has an exit status which is not zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands as long as a test succeeds.
    
    Expand and execute COMMANDS as long as the final command in the
    `while' COMMANDS has an exit status of zero.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on conditional.
    
    The `if COMMANDS' list is executed.  If its exit status is zero, then the
    `then COMMANDS' list is executed.  Otherwise, each `elif COMMANDS' list is
    executed in turn, and if its exit status is zero, the corresponding
    `then COMMANDS' list is executed and the if command completes.  Otherwise,
    the `else COMMANDS' list is executed, if present.  The exit status of the
    entire construct is the exit status of the last command executed, or zero
    if no condition tested true.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands based on pattern matching.
    
    Selectively execute COMMANDS based upon WORD matching PATTERN.  The
    `|' is used to separate multiple patterns.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands for each member in a list.
    
    The `for' loop executes a sequence of commands for each member in a
    list of items.  If `in WORDS ...;' is not present, then `in "$@"' is
    assumed.  For each element in WORDS, NAME is set to that element, and
    the COMMANDS are executed.
    
    Exit Status:
    Returns the status of the last command executed.Execute commands from a file in the current shell.
    
    Read and execute commands from FILENAME in the current shell.  The
    entries in $PATH are used to find the directory containing FILENAME.
    If any ARGUMENTS are supplied, they become the positional parameters
    when FILENAME is executed.
    
    Exit Status:
    Returns the status of the last command executed in FILENAME; fails if
    FILENAME cannot be read.Execute conditional command.
    
    Returns a status of 0 or 1 depending on the evaluation of the conditional
    expression EXPRESSION.  Expressions are composed of the same primaries used
    by the `test' builtin, and may be combined using the following operators:
    
      ( EXPRESSION )	Returns the value of EXPRESSION
      ! EXPRESSION		True if EXPRESSION is false; else false
      EXPR1 && EXPR2	True if both EXPR1 and EXPR2 are true; else false
      EXPR1 || EXPR2	True if either EXPR1 or EXPR2 is true; else false
    
    When the `==' and `!=' operators are used, the string to the right of
    the operator is used as a pattern and pattern matching is performed.
    When the `=~' operator is used, the string to the right of the operator
    is matched as a regular expression.
    
    The && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to
    determine the expression's value.
    
    Exit Status:
    0 or 1 depending on value of EXPRESSION.Exit %dExit a login shell.
    
    Exits a login shell with exit status N.  Returns an error if not executed
    in a login shell.Exit for, while, or until loops.
    
    Exit a FOR, WHILE or UNTIL loop.  If N is specified, break N enclosing
    loops.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Exit the shell.
    
    Exits the shell with a status of N.  If N is omitted, the exit status
    is that of the last command executed.File limitFloating point exceptionGNU bash, version %s (%s)
GNU bash, version %s-(%s)
GNU long options:
Group commands as a unit.
    
    Run a set of commands in a group.  This is one way to redirect an
    entire set of commands.
    
    Exit Status:
    Returns the status of the last command executed.HFT input data pendingHFT monitor mode grantedHFT monitor mode retractedHFT sound sequence has completedHOME not setHangupI have no name!I/O readyIllegal instructionInformation requestInterruptKilledLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
Move job to the foreground.
    
    Place the job identified by JOB_SPEC in the foreground, making it the
    current job.  If JOB_SPEC is not present, the shell's notion of the
    current job is used.
    
    Exit Status:
    Status of command placed in foreground, or failure if an error occurs.Move jobs to the background.
    
    Place the jobs identified by each JOB_SPEC in the background, as if they
    had been started with `&'.  If JOB_SPEC is not present, the shell's notion
    of the current job is used.
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.Null command.
    
    No effect; the command does nothing.
    
    Exit Status:
    Always succeeds.OLDPWD not setQuitRead lines from a file into an array variable.
    
    A synonym for `mapfile'.Record lockRemoves entries from the directory stack.  With no arguments, removes
    the top directory from the stack, and changes to the new top directory.
    
    Options:
      -n	Suppresses the normal change of directory when removing
    	directories from the stack, so only the stack is manipulated.
    
    Arguments:
      +N	Removes the Nth entry counting from the left of the list
    	shown by `dirs', starting with zero.  For example: `popd +0'
    	removes the first directory, `popd +1' the second.
    
      -N	Removes the Nth entry counting from the right of the list
    	shown by `dirs', starting with zero.  For example: `popd -0'
    	removes the last directory, `popd -1' the next to last.
    
    The `dirs' builtin displays the directory stack.Report time consumed by pipeline's execution.
    
    Execute PIPELINE and print a summary of the real time, user CPU time,
    and system CPU time spent executing PIPELINE when it terminates.
    
    Options:
      -p	print the timing summary in the portable Posix format
    
    The value of the TIMEFORMAT variable is used as the output format.
    
    Exit Status:
    The return status is the return status of PIPELINE.Resume for, while, or until loops.
    
    Resumes the next iteration of the enclosing FOR, WHILE or UNTIL loop.
    If N is specified, resumes the Nth enclosing loop.
    
    Exit Status:
    The exit status is 0 unless N is not greater than or equal to 1.Resume job in foreground.
    
    Equivalent to the JOB_SPEC argument to the `fg' command.  Resume a
    stopped or background job.  JOB_SPEC can specify either a job name
    or a job number.  Following JOB_SPEC with a `&' places the job in
    the background, as if the job specification had been supplied as an
    argument to `bg'.
    
    Exit Status:
    Returns the status of the resumed job.Return a successful result.
    
    Exit Status:
    Always succeeds.Return an unsuccessful result.
    
    Exit Status:
    Always fails.Return from a shell function.
    
    Causes a function or sourced script to exit with the return value
    specified by N.  If N is omitted, the return status is that of the
    last command executed within the function or script.
    
    Exit Status:
    Returns N, or failure if the shell is not executing a function or script.Return the context of the current subroutine call.
    
    Without EXPR, returns "$line $filename".  With EXPR, returns
    "$line $subroutine $filename"; this extra information can be used to
    provide a stack trace.
    
    The value of EXPR indicates how many call frames to go back before the
    current one; the top frame is frame 0.
    
    Exit Status:
    Returns 0 unless the shell is not executing a shell function or EXPR
    is invalid.RunningSegmentation faultSelect words from a list and execute commands.
    
    The WORDS are expanded, generating a list of words.  The
    set of expanded words is printed on the standard error, each
    preceded by a number.  If `in WORDS' is not present, `in "$@"'
    is assumed.  The PS3 prompt is then displayed and a line read
    from the standard input.  If the line consists of the number
    corresponding to one of the displayed words, then NAME is set
    to that word.  If the line is empty, WORDS and the prompt are
    redisplayed.  If EOF is read, the command completes.  Any other
    value read causes NAME to be set to null.  The line read is saved
    in the variable REPLY.  COMMANDS are executed after each selection
    until a break command is executed.
    
    Exit Status:
    Returns the status of the last command executed.Set export attribute for shell variables.
    
    Marks each NAME for automatic export to the environment of subsequently
    executed commands.  If VALUE is supplied, assign VALUE before exporting.
    
    Options:
      -f	refer to shell functions
      -n	remove the export property from each NAME
      -p	display a list of all exported variables and functions
    
    An argument of `--' disables further option processing.
    
    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.Shell commands matching keyword `Shell commands matching keywords `Shell options:
Shift positional parameters.
    
    Rename the positional parameters $N+1,$N+2 ... to $1,$2 ...  If N is
    not given, it is assumed to be 1.
    
    Exit Status:
    Returns success unless N is negative or greater than $#.Signal %dStoppedStopped (signal)Stopped (tty input)Stopped (tty output)Stopped(%s)Suspend shell execution.
    
    Suspend the execution of this shell until it receives a SIGCONT signal.
    Unless forced, login shells cannot be suspended.
    
    Options:
      -f	force the suspend, even if the shell is a login shell
    
    Exit Status:
    Returns success unless job control is not enabled or an error occurs.TIMEFORMAT: `%c': invalid format characterTerminatedThe mail in %s has been read
There are running jobs.
There are stopped jobs.
These shell commands are defined internally.  Type `help' to see this list.
Type `help name' to find out more about the function `name'.
Use `info bash' to find out more about the shell in general.
Use `man -k' or `info' to find out more about commands not in this list.

A star (*) next to a name means that the command is disabled.

Type `%s -c "help set"' for more information about shell options.
Type `%s -c help' for more information about shell builtin commands.
Unknown Signal #%dUnknown errorUnknown statusUrgent IO conditionUsage:	%s [GNU long option] [option] ...
	%s [GNU long option] [option] script-file ...
Use "%s" to leave the shell.
Use the `bashbug' command to report bugs.
User signal 1User signal 2Window changedWrite arguments to the standard output.
    
    Display the ARGs on the standard output followed by a newline.
    
    Options:
      -n	do not append a newline
    
    Exit Status:
    Returns success unless a write error occurs.You have mail in $_You have new mail in $_[ arg... ][[ expression ]]`%c': bad command`%c': invalid format character`%c': invalid symbolic mode character`%c': invalid symbolic mode operator`%s': cannot unbind`%s': invalid keymap name`%s': missing format character`%s': not a pid or valid job spec`%s': not a valid identifier`%s': unknown function name`)' expected`)' expected, found %s`:' expected for conditional expressionadd_process: pid %5ld (%s) marked as still alivealias [-p] [name[=value] ... ]all_local_variables: no function context at current scopeargumentargument expectedarray variable support requiredattempted assignment to non-variablebad array subscriptbad command typebad connectorbad jumpbad substitution: no closing "`" in %sbad substitution: no closing `%s' in %sbash_execute_unix_command: cannot find keymap for commandbg [job_spec ...]break [n]bug: bad expassign tokenbuiltin [shell-builtin [arg ...]]caller [expr]can only `return' from a function or sourced scriptcan only be used in a functioncannot allocate new file descriptor for bash input from fd %dcannot create temp file for here-document: %scannot duplicate fd %d to fd %dcannot duplicate named pipe %s as fd %dcannot find %s in shared object %s: %scannot make child for command substitutioncannot make child for process substitutioncannot make pipe for command substitutioncannot make pipe for process substitutioncannot open named pipe %s for readingcannot open named pipe %s for writingcannot open shared object %s: %scannot redirect standard input from /dev/null: %scannot reset nodelay mode for fd %dcannot set and unset shell options simultaneouslycannot set terminal process group (%d)cannot simultaneously unset a function and a variablecannot suspendcannot suspend a login shellcannot use `-f' to make functionscannot use more than one of -anrwcase WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esacchild setpgid (%ld to %ld)command [-pVv] command [arg ...]command_substitute: cannot duplicate pipe as fd 1completion: function `%s' not foundconditional binary operator expectedcontinue [n]coproc [NAME] command [redirections]could not find /tmp, please create!cprintf: `%c': invalid format charactercurrentdeleting stopped job %d with process group %lddescribe_pid: %ld: no such piddirectory stack emptydirectory stack indexdirs [-clpv] [+N] [-N]division by 0dynamic loading not availableecho [-n] [arg ...]echo [-neE] [arg ...]empty array variable nameenable [-a] [-dnps] [-f filename] [name ...]error getting terminal attributes: %serror importing function definition for `%s'error setting terminal attributes: %seval [arg ...]exit [n]expected `)'exponent less than 0export [-fn] [name[=value] ...] or export -pexpression expectedexpression recursion level exceededfc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]fg [job_spec]file descriptor out of rangefilename argument requiredfor (( exp1; exp2; exp3 )); do COMMANDS; donefor NAME [in WORDS ... ] ; do COMMANDS; doneforked pid %d appears in running job %dfree: called with already freed block argumentfree: called with unallocated block argumentfree: start and end chunk sizes differfree: underflow detected; mh_nbytes out of rangefunction name { COMMANDS ; } or name () { COMMANDS ; }getcwd: cannot access parent directorieshash [-lr] [-p pathname] [-dt] [name ...]hashing disabledhere-document at line %d delimited by end-of-file (wanted `%s')history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]history positionhistory specificationhits	command
identifier expected after pre-increment or pre-decrementif COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fiinitialize_job_control: getpgrp failedinitialize_job_control: line disciplineinitialize_job_control: setpgidinvalid arithmetic baseinvalid baseinvalid character %d in exportstr for %sinvalid hex numberinvalid numberinvalid octal numberinvalid signal numberjob %d started without job controljob_spec [&]jobs [-lnprs] [jobspec ...] or jobs -x command [args]kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]last command: %s
let arg [arg ...]limitline %d: line editing not enabledlocal [option] name[=value] ...logout
logout [n]loop countmake_here_document: bad instruction type %dmake_local_variable: no function context at current scopemake_redirection: redirection instruction `%d' out of rangemalloc: block on free list clobberedmalloc: failed assertion: %s
migrate process to another CPUmissing `)'missing `]'missing hex digit for \xnetwork operations not supportedno `=' in exportstr for %sno closing `%c' in %sno command foundno help topics match `%s'.  Try `help help' or `man -k %s' or `info %s'.no job controlno job control in this shellno match: %sno other directoryno other options allowed with `-x'not currently executing completion functionnot login shell: use `exit'octal numberonly meaningful in a `for', `while', or `until' looppipe errorpop_scope: head of shell_variables not a temporary environment scopepop_var_context: head of shell_variables not a function contextpop_var_context: no global_variables contextpopd [-n] [+N | -N]power failure imminentprint_command: bad connector `%d'printf [-v var] format [arguments]progcomp_insert: %s: NULL COMPSPECprogramming errorpushd [-n] [+N | -N | dir]pwd [-LP]read error: %d: %srealloc: called with unallocated block argumentrealloc: start and end chunk sizes differrealloc: underflow detected; mh_nbytes out of rangerecursion stack underflowredirection error: cannot duplicate fdregister_alloc: %p already in table as allocated?
register_alloc: alloc table is full with FIND_ALLOC?
register_free: %p already in table as free?
restrictedreturn [n]run_pending_traps: bad value in trap_list[%d]: %prun_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myselfsave_bash_input: buffer already exists for new fd %dselect NAME [in WORDS ... ;] do COMMANDS; doneshell level (%d) too high, resetting to 1shift [n]shift countshopt [-pqsu] [-o] [optname ...]sigprocmask: %d: invalid operationsource filename [arguments]start_pipeline: pgrp pipesuspend [-f]syntax errorsyntax error in conditional expressionsyntax error in conditional expression: unexpected token `%s'syntax error in expressionsyntax error near `%s'syntax error near unexpected token `%s'syntax error: `((%s))'syntax error: `;' unexpectedsyntax error: arithmetic expression requiredsyntax error: invalid arithmetic operatorsyntax error: operand expectedsyntax error: unexpected end of filesystem crash imminenttest [expr]time [-p] pipelinetoo many argumentstrap [-lp] [[arg] signal_spec ...]trap_handler: bad signal %dtype [-afptP] name [name ...]umask [-p] [-S] [mode]unalias [-a] name [name ...]unexpected EOF while looking for `]]'unexpected EOF while looking for matching `%c'unexpected EOF while looking for matching `)'unexpected argument `%s' to conditional binary operatorunexpected argument `%s' to conditional unary operatorunexpected argument to conditional binary operatorunexpected argument to conditional unary operatorunexpected token %d in conditional commandunexpected token `%c' in conditional commandunexpected token `%s' in conditional commandunexpected token `%s', conditional binary operator expectedunexpected token `%s', expected `)'unknownunknown command erroruntil COMMANDS; do COMMANDS; donevalue too great for basevariables - Names and meanings of some shell variableswait: pid %ld is not a child of this shellwait_for: No record of process %ldwait_for_job: job %d is stoppedwarning: warning: %s: %swarning: -C option may not work as you expectwarning: -F option may not work as you expectwhile COMMANDS; do COMMANDS; donewrite error: %s{ COMMANDS ; }Project-Id-Version: bash-4.0
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2020-11-28 12:51-0500
PO-Revision-Date: 2009-05-09 15:13+0300
Last-Translator: Pekka Niemi <pekka.niemi@iki.fi>
Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>
Language: fi
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 0.3
aikakatkaisu: automaattinen uloskirjautuminen
	-%s tai -o -valitsin

malloc: %s:%d: varmistus epäonnistui
  (työhakemisto: %s) (luotiin core-tiedosto) rivi $%s: ei voida asettaa näin%c%c: virheellinen valitsin%d: virheellinen tiedostokahva: %s%s voidaan käynnistää näppäinkomennolla %s on %s
%s on funktio
%s on komentotulkin sisäänrakennettu komento
%s on komentotulkin avainsana
%s on aliasioitu ”%s”
%s on hajautettu (%s)
%s ei ole sidottu mihinkään näppäimeen.
%s rajojen ulkopuolella%s%s%s: %s (virheellinen avainsana on ”%s”)%s: %s rajojen ulkopuolella%s: %s: virheellinen tulkki%s: %s: assosiatiiviseen taulukkoon sijoitettaessa täytyy käyttää avainindeksiä%s: ei ole yksiselitteinen työtunniste%s: epämääräinen uudelleenohjaus%s: argumenttien pitää olla prosessi- tai työtunnisteita%s: virheellinen verkkopolkumääritys%s: virheellinen korvaus%s: odotettiin binääristä operaattoria%s: listaa ei voida sijoittaa taulukon alkioon%s: ei voida sijoittaa epänumeeriseen indeksiin%s: assosiatiivista taulukkoa ei voi muuttaa indeksoiduksi%s: indeksoitua taulukkoa ei voi muuttaa assosiatiiviseksi%s: ei voida luoda: %s%s: ei voida poistaa: %s%s: taulukkomuuttujia ei voi tuhota näin%s: binääritiedostoa ei voida suorittaa%s: ei voida suorittaa: %s%s: rajoitusta ei saada: %s%s: rajoitusta ei voida muokata: %s%s: väliaikaistiedostoa ei voitu avata: %s%s: ei voida avata: %s%s: olemassa olevan tiedoston päälle ei voida kirjoittaa%s: ei voida lukea: %s%s: ei voida poistaa%s: ei voida poistaa: kirjoitussuojattu %s%s: komentoa ei löydy%s: nykyhakemistoa luettaessa tapahtui virhe: %s: %s
%s: virhe lausekkeessa
%s: tiedosto on liian iso%s: tiedostoa ei löytynyt%s: ensimmäinen ei-tyhjä merkki ei ole ”"”%s: hajautustaulukko on tyhjä
%s: historiaviittaus epäonnistui%s: tuntematon palvelin%s: virheellinen valitsin – %c
%s: inlib epäonnistui%s: odotettiin kokonaislukuilmaisua%s: virheellinen toiminnon nimi%s: virheellinen taulukkoindeksi%s: virheellinen assosiatiivinen indeksi%s: virheellinen paluukutsumäärä%s: virheellinen tiedostokahvamääritys%s: virheellinen rajoitusargumentti%s: virheellinen rivimäärä%s: virheellinen valitsin%s: virheellinen valitsimen nimi%s: virheellinen palvelu%s: virheellinen komentotulkin valitsimen nimi%s: virheellinen signaalimääritys%s: virheellinen aikakatkaisumääritys%s: on hakemisto%s: työ %d on jo taustalla%s: työ on lopetettu%s: rivi %d:%s: puuttuva kaksoispiste-erotin%s: ei lavennusmääritystä%s: ei työnohjausta%s: työtä ei löydy%s: ei ole funktio%s: ei tavallinen tiedosto%s: ei ole komentotulkin sisäänrakennettu komento%s: ei ole taulukkomuuttuja%s: ei dynaamisesti ladattu%s: ei löytynyt%s: vaaditaan numeerinen argumentti%s: valitsin vaatii argumentin%s: valitsin vaatii argumentin – %c
%s: parametria ei ole tai sitä ei ole asetettu%s: kirjoitussuojattu funktio%s: kirjoitussuojattu muuttuja%s: rajoitettu%s: rajoitettu: tulostusta ei voida uudelleenohjata%s: rajoitettu: komentojen nimissä ei voi käyttää ”/”-merkkiä%s: alimerkkijonolauseke < 0%s: odotettiin unaarista operaattoria%s: sitomaton muuttuja%s: käyttö: (( lauseke ))(luotiin core-tiedosto)(työhakemisto nyt: %s)
. tiedosto [argumentit]/dev/(tcp|udp)/host/port-muotoa ei tueta ilman tietoliikennettä/tmp:n pitää olla kelvollinen hakemiston nimi<ei nykyhakemistoa>ABORT-käskyKeskeytetään...Lisää hakemiston hakemistopinon ylimmäiseksi, tai kääntää pinon, 
    jolloin nykyhakemisto menee pinon huipulle. Ilman argumentteja 
    vaihtaa pinon kahden päällimmäisen hakemiston paikkoja.
    
    Valitsimet:
      -n	jättää hakemiston vaihtamatta, joten vain pinoa muutetaan
    
    Argumentit:
      +N	Kääntää pinoa niin, että N:s hakemisto (laskien vasemmalta "dirs"-
      komennon antamasta listasta) on päällimmäisenä.
    
      -N	Kääntää pinoa niin, että N:s hakemisto (laskien oikealta "dirs"-
      komennon antamasta listasta) on päällimmäisenä.
    
    Sisäänrakennettu ”dirs”-komento näyttää hakemistopinon.Hälytys (profiili)Hälytys (virtuaalinen)HerätyskelloAritmeettinen for-silmukka.
    
    Vastaa
    	(( LAUSEKE1))
    	while (( LAUSEKE2 )); do
    		KOMENNOT
    		(( LAUSEKE3 ))
    	done

    LAUSEKE1, LAUSEKE2 ja LAUSEKE3 ovat aritmeettisiä lausekkeita. Jos jokin
    lauseke on jätetty pois, se tulkitaan 1:ksi.
    
    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.Jäljitys/katkaisupisteansaVirheellinen järjestelmäkutsuVäärä signaaliKatkennut putkiVäylävirheCPU-rajoitusLapsiprosessin kuolema tai pysähtyminenYleisiä komentotulkin muuttujia ja niiden käyttö.
    
    BASH_VERSION	Tämän Bashin versiotiedot.
    CDPATH	Kaksoispistein eroteltu lista hakemistoista, joista etsitään
    		”cd”-komennolle argumentiksi annettua hakemistoa.
    GLOBIGNORE	Kaksoispistein eroteltu lista mallineista, joihin sopivat
    		tiedostonimet jätetään huomiotta polun laventamisessa.
    HISTFILE	Tiedosto, johon komentohistoriasi tallennetaan.
    HISTFILESIZE	Maksimi rivimäärä tähän tiedostoon tallennetaan.
    HISTSIZE	Tulkin käytettävissä olevien historiarivien maksimimäärä
    HOME	Täydellinen polku sisäänkirjautumishakemistoosi.
    HOSTNAME	Nykyisen palvelimen nimi.
    HOSTTYPE	CPU-tyyppi, jonka alaisuudessa tämä Bash-versio on ajossa.
    IGNOREEOF	Kontrolloi, miten tulkki toimii saadessaan syötteenä pelkän
    		EOF:n (tiedoston loppu). Jos asetettu, sen määrittelemä
    		lukumäärä EOF:iä voidaan lukea syötteenä peräkkäin ennenkuin
    		tulkki poistuu (oletuksena 10). Jos ei ole asetettu, EOF
    		merkitsee syötteen loppua.
    MACHTYPE	Järjestelmää kuvaava merkkijono.
    MAILCHECK	Miten monen sekunnein välein Bash tarkistaa uudet postit.
    MAILPATH	Kaksoispistein eroteltu lista tiedostoista joista Bash
    		tarkistaa uudet postit.
    OSTYPE	Järjestelmän Unix-versio.
    PATH	Kaksoispistein eroteltu lista hakemistoista, joista etsitään
    		komentoja.
    PROMPT_COMMAND	Ennen primäärin kehotteen tulostamista suoritettava
    		komento.
    PS1		Primääri komentokehote.
    PS2		Sekundääri kehote.
    PWD		Nykyisen hakemiston täydellinen polkunimi.
    SHELLOPTS	Kaksoispistein eroteltu lista käytössä olevista tulkin
    		valitsimista.
    TERM	Käytettävän päätetyypin nimi.
    TIMEFORMAT	”time”-käskyn tulosteen muotoilumalline.
    auto_resume	Jos ei tyhjä, ensimmäistä rivillä olevaa komentosanaa etsitään
    		keskeytettyjen töiden listasta. Jos sana löydetään, kyseinen
    		työ tuodaan esiin. ”exact”-arvo tarkoittaa, että komentosanan
    		pitää olla täysin sama kuin keskeytettyjen listalta löytyvä.
    		Arvo ”substring” tarkoittaa että komentosanan pitää olla
    		osa työnimeä. Mikä tahansa muu tarkoittaa että komennon pitää
    		olla keskeytetyn työn nimen alkuosa.
    histchars	Merkit, jotka ohjaavat historialistasta hakua ja pikakorvausta.
    		Ensimmäinen merkki on historiakorvausmerkki, tavallisesti ”!”.
    		Toinen, pikakorvausmerkki, on yleensä ”^”. Kolmas merkki,
    		tavallisesti ”#”, on historiakommentti.
    HISTIGNORE	Kaksoispistein eroteltu lista mallineista, joita käytetään
    		päätettäessä komentojen tallentamisesta historialistaan.
JatkaLuo funktion.
    
    Luo komentotulkin funktion NIMI. Jos NIMI käynnistetään komentona,
    KOMENNOT ajetaan kutsuvan tulkin ympäristössä. Kun NIMI käynnistetään,
    sen argumentit välitetään parametreina $1...$n, ja funktion nimi
    sijoitetaan muuttujaan $FUNCNAME.
    
    Paluuarvo:
    Onnistuu, ellei NIMI ole kirjoitussuojattu.Näytä tai suorita komentoja komentohistoriasta.
    
    Fc:tä käytetään historialistassa olevien komentojen tulostamiseen tai
    muokkaamiseen ja uudelleensuoritukseen. ALKU ja LOPPU voivat olla
    rajaavia numeroita, tai ALKU voi olla merkkijono, joka tarkoittaa viimei-
    sintä sillä alkavaa komentoa.
    
    Valitsimet:
      -e ENIMI	valitse käytettävä editori. Oletus on FCEDIT, sitten EDITOR
    		sitten vi
      -l	listaa rivit editoinnin sijaan
      -r	listaa käänteisessä järjestyksessä
    
    Käytettäessä muotoa ”fc -s [malline=korvaus] [komento]”, komento
    suoritetaan kun korvaus MALLINE=KORVAUS on suoritettu.
    
    Eräs käyttökelpoinen alias on r='fc -s', jolloin ”r cc” ajaa viimeisen cc-
    alkuisen komennon ja ”r” suorittaa viimeisen komennon.
    
    Paluuarvo:
    Palauttaa onnistuneen tai suoritetun komennon paluuarvon; nollasta
    poikkeava virhetilanteessa.Näyttää tai asettaa tiedoston tilamaskin.
    
    Asettaa käyttäjän tiedostonluontimaskin TILAKSI. Jos TILAA ei ole 
    annettu, tulostaa maskin nykyisen arvon.
    
    Jos TILA alkaa numerolla, se käsitellään oktaalinumerona; muussa
    tapauksessa se on symbolinen tilamerkkijono jonka chmod(1) hyväksyy.
    
    Valitsimet:
      -p	jos TILAA ei ole annettu, tulostetaan hyödynnettävässä
        	muodossa
      -S	tulostaa symbolisena; muussa tapauksessa tulostetaan
        	oktaaliluku
    
    Paluuarvo:
    Palauttaa onnistuneen ellei TILA ole virheellinen tai on annettu 
    virheellinen valitsin.Näyttää mahdolliset täydenteet valitsimista riippuen.
    
    Tarkoitettu käytettäväksi komentotulkin funktiossa, joka luo mahdollisia
    täydenteitä. Jos valinnainen argumentti SANA on annettu, luodaan siihen
    sopivat täydenteet.
    
    Paluuarvo:
    Palauttaa onnistuneen paitsi jos on annettu virheellinen valitsin tai
    tapahtuu virhe.Näyttää prosessiajat.
    
    Tulostaa kumuloituneet käyttäjä- ja järjestelmäajat sekä komentotulkille
    että kaikille sen lapsiprosesseille.
    
    Paluuarvo:
    Onnistuu aina.Näyttää muistissa olevat hakemistot. Hakemistot
    löytävät tiensä listaan ”pushd”-komennolla; voit
    palata listan hakemistoihin ”popd”-komennolla.
    
    Valitsimet:
      -c	tyhjennä hakemistopino
      -l	älä tulosta tilde-alkuisia versioita hakemistoista jotka ovat
    	suhteessa kotihakemistoosi
      -p tulosta hakemistopino, hakemisto per rivi
      -v tulosta hakemistopino, hakemisto per rivi, pinon sijaintinumeroineen
    
    Argumentit:
      +N	Näyttää listan N:nnen alkion (laskien vasemmalta dirs-komennon 
    	antamasta listasta). Valitsimetta kutsuttaessa aloitetaan nollasta.
    
      -N	Näyttää listan N:nnen alkion (laskien oikealta dirs-komennon
    	antamasta listasta). Valitsimetta kutsuttaessa aloitetaan nollasta.ValmisValmis(%d)EMT-käskyOttaa käyttöön tai poistaa käytöstä komentotulkin sisäänrakennettuja komentoja.
    
    Ottaa käyttöön tai poistaa komentotulkin sisäänrakennettuja komentoja
    käytöstä.  Käytöstäpoisto sallii sinun käyttävän sisäisen komennon kanssa 
    samannimisiä, levyllä olevia komentoja käyttämättä koko polkua.
    
    Valitsimet:
      -a	listaa komennot ja tiedot, mitkä on otettu käyttöön
      -n	poistaa NIMET käytöstä tai näyttää listan poistetuista
      -p	tulosta lista komennoista hyödynnettävässä muodossa
      -s	tulosta ainoastaan Posix-komennot
    
    Valitsimet, jotka kontrolloivat dynaamista lataamista:
      -f	lataa komento NIMI jaetusta objektista TIEDOSTO
      -d	poista -f:llä ladattu komento
    
    Jollei valitsimia anneta, kukin NIMI otetaan käyttöön.
    
    Jos haluat käyttää $PATHista löytyvää ”test”-komentoa sisäänrakennetun
    sijaan, kirjoita ”enable -n test”.
    
    Paluuarvo:
    Palauttaa onnistuneen, paitsi jos NIMI ei ole komentotulkin sisäänrakennettu
    komento tai tapahtuu virhe.Evaluoi ehdollisen lausekkeen.
    
    Tämä on sisäänrakennetun ”test”-komennon synonyymi, mutta viimeisen
    argumentin pitää olla ”]”, joka sulkee avaavan ”[”:n.Suorita argumentit komentotulkin komentona.
    
    Yhdistä ARGUMENTIT yhdeksi merkkijonoksi, käytä tulosta komentotulkin
    syötteenä ja suorita saadut komennot.
    
    Paluuarvo:
    Palauttaa komennon paluuarvon tai onnistuneen jos komento on tyhjä.Suorittaa komentoja niin kauan kun testi epäonnistuu.
    
    Laventaa ja suorittaa KOMENTOJA niin kauna kun viimeinen komento
    ”until KOMENNOT” palauttaa nollasta poikkeavan paluuarvon.
    
    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.Suorittaa komentoja niin kauan kun testi onnistuu.
    
    Laventaa ja suorittaa KOMENTOJA niin kauan kun viimeinen komento
    ”while KOMENNOT” palauttaa nollan.
    
    Paluuarvo:
    Viimeisen komennon paluuarvo.Suorittaa komentoja ehdollisesti.
    
    ”if KOMENNOT”-lista suoritetaan. Jos sen paluuarvo on nolla, suoritetaan
    ”then KOMENNOT”-lista. Muussa tapauksessa suoritetaan vuorollaan
    kukin ”elif KOMENNOT”-lista, ja jos sen paluuarvo on nolla, suoritetaan
    vastaava ”then KOMENNOT”-lista ja if-komento päätetään. Muutoin
    suoritetaan ”else KOMENNOT”-lista, jos sellainen on. Koko rakenteen
    paluuarvo on viimeisen komennon paluuarvo tai nolla, jos mikään ehto
    ei toteutunut.

    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.Suorittaa komentoja tekstihaun perusteella.
    
    Suorittaa valikoiden KOMENTOJA perustuen SANAAN joka sopii MALLINEESEEN.
    ”|”:ea käytetään erottamaan mallineita.
    
    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.Suorittaa komennot listan jokaiselle jäsenelle.
    
    ”For”-silmukka suorittaa komentoketjun listan jokaiselle alkiolle. Jos
    ”in SANAT ...;” ei ole annettu, käytetään rakennetta ”in $@”. NIMI asetetaan
    vuorollaan jokaiseksi SANAT-listan alkioksi, ja KOMENNOT suoritetaan.
    
    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.Suorittaa tiedoston komennot nykyisessä komentotulkissa.
    
    Lue ja suorita komennot TIEDOSTOSTA nykyisessä tulkissa. $PATH:in
    komponentteja käytetään TIEDOSTON sisältävän hakemiston haussa.
    Mahdolliset ARGUMENTIT sijoitetaan positionaalisiksi parametreiksi
    TIEDOSTOA suoritettaessa.
    
    Paluuarvo:
    Palauttaa viimeisen TIEDOSTON suoritetun komennon paluuarvon; epäonnistuu
    mikäli TIEDOSTOA ei voida lukea.Suorittaa ehdollisen komennon.
    
    Palauttaa 0 tai 1 riippuen ehdollisen LAUSEKKEEN tuloksesta. Lausekkeissa
    käytetään samoja primäärejä kuin sisäänrakennetussa ”test”-komennossa,
    ja voidaan yhdistellä seuraavilla operaattoreilla:
    
      ( LAUSEKE )	Palauttaa LAUSEKKEEN arvon
      ! LAUSEKE		Tosi jos LAUSEKE on epätosi; muuten epätosi
      LAUSEKE1 && LAUSEKE2	Tosi jos molemmat lausekkeet ovat tosia, muuten
               		epätosi
      LAUSEKE1 || LAUSEKE2	Tosi jos jompikumpi lausekkeista on tosi,
      			muuten epätosi
    
    Käytettäessä ”==”- ja ”!=”-operaattoreita oikeanpuoleista merkkijonoa 
    käytetään mallineena ja suoritetaan haku sen perusteella. Operaattoria
    ”=~” käytettäessä oikeanpuoleinen merkkijonoa käsitellään kuten säännöllistä
    lauseketta.

    Operaattorit ”&&” ja ”||” eivät evaluoi LAUSEKETTA2 jos LAUSEKE1 riittää
    lausekkeen arvon päättelyyn.
    
    Paluuarvo:
    0 tai 1 riippuen LAUSEKKEEN arvosta.Poistui %dPoistu sisäänkirjautumiskomentotulkista.
    
    Poistuu sisäänkirjautumiskomentotulkista paluuarvolla N.  Palauttaa
    virheen jos ei olla sisäänkirjautumiskomentotulkissa.Exit for, while- tai until-silmukoista
    
    Poistu FOR-, WHILE- tai UNTIL-silmukasta.  Jos N on annettu, poistu
    N:stä sisäkkäisestä silmukasta.
    
    Paluuarvo:
    Paluuarvo on 0 jollei N ole suurempi tai yhtäsuuri kuin 1.Poistu komentotulkista.
    
    Poistuu komentotulkista paluuarvolla N. Jos N:ää ei anneta, paluuarvo
    on viimeisen komennon paluuarvo.TiedostorajoitusLiukulukupoikkeusGNU bash, versio %s (%s)
GNU bash, versio %s-(%s)
GNU:n pitkät valitsimet:
Ryhmittää komennot.
    
    Suorittaa komennot ryhmässä. Tämä on eräs tapa uudelleenohjata kokonaisen
    komentojoukon tulosteet.
    
    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.HFT-syöte odottaaHFT-monitorointitila käytössäHFT-monitorointitila peruttuHFT-äänisekvenssi on valmistunutHOME-ympäristömuuttujaa ei ole asetettuLinjankatkaisuMinulla ei ole nimeä!I/O on valmisVirheellinen käskyInformaatiopyyntöKeskeytysTapettuLisenssi GPLv3+: GNU GPL versio 3 tai uudempi <http://gnu.org/licenses/gpl.html>
Siirrä työ edustalle.
    
    Siirrä TYÖKUVAAJALLA tunnistettu työ edustalle, jolloin siitä tulee nykyinen
    työ. Jos TYÖKUVAAJAA ei ole annettu, käytetään komentotulkin käsitystä
    tämänhetkisestä työstä.
    
    Paluuarvo:
    Edustalle tuodun työn paluuarvo, tai epäonnistuminen virhetilanteessa.Siirtää työt taustalle.
    
    Siirtää kunkin TYÖNKUVAAJALLA tunnistetun työn taustalle, kuten jos ne olisi
    käynnistetty ”&”:llä. Jos TYÖNKUVAAJAA ei ole annettu, käytetään komento-
    tulkin käsitystä nykyisestä työstä.
    
    Paluuarvo:
    Palauttaa onnistuneen paitsi jos työnohjaus ei ole käytössä tai tapahtuu
    virhe.Tyhjä komento.
    
    Ei vaikutusta; komento ei tee mitään.
    
    Paluuarvo:
    Onnistuu aina.OLDPWD-ympäristömuuttujaa ei ole asetettuLopetettuLukee rivit tiedostosta taulukkomuuttujaan.
    
    ”mapfile”:n synonyymi.TietuelukkoPoistaa alkioita hakemistopinosta. Ilman argumenttia poistaa ylimmän
    hakemiston, ja siirtää seuraavan ylimmäiseksi.
    
    Valitsimet:
      -n	Ei siirrytä normaalisti pinosta poistettuun hakemistoon,
    	joten vain pinoa muutetaan.
    
    Argumentit:
      +N	Poistaa N:nnen alkion (laskien vasemmalta ”dirs”-komennon
    	antamasta listasta, alkaen nollasta).  Esimerkiksi ”popd +0”
    	poistaa ensimmäisen hakemistot, ”popd +1” toisen.
    
      -N	Poistaa N:nnen alkion (laskien oikealta ”dirs”-komennon 
    	antamasta listasta, alkaen nollasta). Esimerkiksi: ”popd -0”
    	poistaa viimeisen hakemiston, ”popd -1” sitä edellisen.
    
    Sisäänrakennettu ”dirs”-komento näyttää hakemistopinon sisällön.Raportoi komentoketjun suoritusajan.
    
    Suorita KOMENTOKETJU ja tulosta yhteenveto käytetystä ajasta, käyttäjän
    CPU-ajasta ja järjestelmän CPU-ajasta KOMENTOKETJUA suoritettaessa sen
    päätyttyä.
    
    Valitsimet:
      -p	tulosta ajastusyhteenveto siirrettävässä POSIX-muodossa.
  
    Tulosteen muotoilussa käytetään TIMEFORMAT-muuttujan arvoa.
    
    Paluuarvo:
    KOMENTOKETJUN paluuarvo.Jatko for-, while tai until-silmukoille.
    
    Jatkaa seuraavaa FOR-, WHILE- tai UNTIL-silmukan kierrosta.
    Jos N on annettu, jatkaa N:ttä silmukkaa.
    
    Paluuarvo:
    Paluuarvo on 0 ellei N ole suurempi tai yhtäsuuri kuin 1.Siirtää komennon edustalle.
    
    Sama kuin ”fg”-komennon TYÖNKUVAAJA-argumentti. Jatkaa joko keskeytettyä
    tai taustatyötä. TYÖNKUVAAJA voi määritellä joko työn nimen tai numeron.
    Jos TYÖNKUVAAJAA seuraa ”&” siirretään työ taustalle, kuten jos työnkuvaaja
    olisi annettu ”bg”-komennon argumentiksi.
    
    Paluuarvo:
    Työn tila.Palauttaa onnistuneen paluuarvon.
    
    Paluuarvo:
    Onnistuu aina.Palauttaa epäonnistuneen paluuarvon.
    
    Paluuarvo:
    Epäonnistuu aina.Palauttaa komentotulkin funktiosta.
    
    Aiheuttaa funktion tai luetun skriptin poistumisen annetulla paluuarvolla N.
    Jos N:ää ei ole annettu, palautetaan viimeisen funktiossa tai skriptissä
    suoritetun komennon paluuarvo.
    
    Paluuarvo:
    Palauttaa N:n, tai epäonnistuneen mikäli komentotulkki ei ole suorittamassa
    funktiota tai skriptiä.Palauta tämänhetkisen alirutiinikutsun konteksti.
    
    Ilman parametria, palauttaa ”$line $filename”. Parametrilla palauttaa 
    ”$line $subroutine $filename”; saatua lisätietoa voidaan käyttää kutsupinon
    kuvaamiseksi.
    
    Parametrin arvo määrää, montako kutsukehystä taaksepäin siirrytään; 
    ylin kehys on numero 0.
    
    Paluuarvo:
    Palauttaa 0 ellei komentotulkki ole funktion ulkopuolella tai parametri
    on virheellinen.AjossaMuistialueen ylitysValitsee sanat listasta ja suorittaa komennot.
    
    SANAT lavennetaan, jolloin saadaan sanalista. Lavennettujen sanojen joukko
    tulostetaan vakiovirhetulosteeseen juoksevasti numeroituna. Jos ”in SANAT”
    puuttuu, käytetään rakennetta ”in $@”. Tämän jälkeen tulostetaan 
    PS3-kehote ja vakiosyötteestä luetaan rivi. Mikäli rivi koostuu 
    numerosta joka vastaa jotakin tulostetuista sanoista, asetetaan NIMEN 
    arvoksi kyseinen sana. Jos rivi on tyhjä, SANAT ja kehote tulostetaan 
    uudelleen. Mikäli saadaan EOF (tiedoston loppu), komento päättyy.
    Mikä tahansa muu luettu arvo aiheuttaa NIMEN tyhjäämisen. Luettu rivi 
    tallennetaan REPLY-muuttujaan. KOMENNOT suoritetaan kunkin valinnan 
    jälkeen kunnes suoritetaan break-komento.

    Paluuarvo:
    Viimeisen suoritetun komennon paluuarvo.Aseta ympäristömuuttujien vientiattribuutin.
    
    Merkitse kukin NIMI vietäväksi automaattisesti suoritettujen komentojen
    ympäristöön. Jos ARVO on annettu, se sijoitetaan NIMEEN ennen vientiä.
    
    Valitsimet:
      -f	viittaa komentotulkin funktioihin
      -n	poista jokaiselta NIMELTÄ vientiattribuutti
      -p	listaa kaikki viedyt muuttujat ja funktiot
    
    ”--” argumenttina lopettaa valitsimien käsittelyn.
    
    Paluuarvo:
    Palauttaa onnistuneen paitsi jos on annettu virheellinen valitsin
    tai NIMI on virheellinen.Sopivat komennot avainsanaan `Sopivat komennot avainsanoihin `Komentotulkin valitsimet:
Siirrä positionaalisia parametreja.
    
    Siirrä positionaalisia parametreja $N+1, $N+2 ... parametreihin $1, $2 ...
    Jos N:ää ei ole annettu, sen oletetaan olevan 1.
    
    Paluuarvo:
    Palauttaa onnistuneen ellei N ole negatiivinen tai suurempi kuin $#.Signaali %dPysäytettyPysäytetty (signaali)Pysäytetty (päätteen syöte)Pysäytetty (päätteen tuloste)Pysäytetty(%s)Keskeyttää komentotulkin suorituksen.
    
    Keskeyttää tämän tulkin suorituksen kunnes se saa SIGCONT-signaalin.
    Sisäänkirjautumistulkkeja ei voi keskeyttää kuin väkisin.
    
    Valitsimet:
      -f	pakota keskeyttämään, vaikka tulkki olisi sisäänkirjautumis-
        	tulkki.
    
    Paluuarvo:
    Palauttaa onnistuneen paitsi jos työnohjaus ei ole käytössä tai tapahtuu
    virhe.AJAN MUOTOMÄÄRITYS: ”%c”: virheellinen muotoilumerkkiPäätettyPosti laatikossa %s on luettu
Töitä on ajossa.
Töitä on pysäytettynä.
Nämä komennot on määritelty sisäisesti.  Kirjoita ”help” nähdäksesi tämän listan.
Kirjoita ”help name” saadaksesi lisätietoja funktiosta ”name”.
Komennolla ”info bash” saat lisää yleisiä tietoja komentotulkista.
Käytä komentoa ”man -k” tai ”info” saadaksesi lisätietoja komennoista, jotka eivät ole tällä listalla.

Asteriski (*) nimen vieressä tarkoittaa, että komennon käyttö on estetty.

Kirjoita ”%s -c 'help set'” saadaksesi lisätietoja komentotulkin valitsimista.
Kirjoita ”%s -c help” saadaksesi lisätietoja komentotulkin sisäänrakennetuista komennoista.
Tuntematon signaali #%dTuntematon virheTuntematon tilaKiireellinen I/O-ehtoKäyttö:	%s[GNU:n pitkä valitsin] [valitsin] ...
	%s [GNU:n pitkä valitsin] [valitsin] komentotiedosto ...
Kirjoita ”%s” poistuaksesi komentotulkista.
Raportoi virheet komennolla ”bashbug”.
Käyttäjän määrittelemä signaali 1Käyttäjän määrittelemä signaali 2Ikkuna vaihtunutTulosta argumentit vakiotulosteeseen.
    
    Tulosta ARGUMENTIT vakiotulosteeseen päättäen rivinvaihdolla.
    
    Valitsimet:
      -n	älä lisää rivinvaihtoa
    
    Paluuarvo:
    Palauttaa onnistuneen ellei tapahdu virhettä.Sinulle on postia laatikossa $_Sinulla on uutta postia laatikossa $_[ arg... ][[ lauseke ]]”%c”: virheellinen komento”%c”: virheellinen muotoilumerkki”%c”: virheellinen symbolisen tilan merkki”%c”: virheellinen symbolisen tilan operaattori”%s”: ei voida irrottaa”%s”: virheellinen näppäinkartan nimi”%s”: puuttuva muotoilumerkki”%s”: ei ole prosessitunnus eikä kelvollinen työtunniste”%s”: virheellinen tunniste”%s”: tuntematon funktioodotettiin ”)”odotettiin ”)”, löydettiin %s”:”:ttä odotettiin ehdolliseen lausekkeeseenadd_process: prosessi %5ld (%s) on merkattu vielä toimivaksialias [-p] [nimi[=arvo] ... ]all_local_variables: ei funktiokontekstia nykytilassaargumenttiodotettiin argumenttiavaaditaan tukea taulukkomuuttujilleyritettiin sijoittaa objektiin, joka ei ole muuttujavirheellinen taulukkoindeksivirheellinen komentotyyppivirheellinen liittäjävirheellinen hyppyvirheellinen korvaus: ei sulkevaa ”`” jonossa %svirheellinen korvaus: ei sulkevaa ”%s” jonossa %sbash_execute_unix_command: komennolle ei löydy näppäinkarttaabg [työtunniste ...]break [n]bugi: virheellinen sijoitusavainsanabuiltin [sisäänrakennettu komento [arg ...]]caller [expr]”return” on käytettävissä vain funktiossa tai ladatussa skriptissävoidaan käyttää ainoastaan funktiossabashin syötteeksi ei voida avata uutta tiedostokahvaa kahvasta %dhere-dokumentille ei voida luoda väliaikaistiedostoa: %stiedostokahvaa %d ei voida kopioida kahvaksi %dnimettyä putkea %s ei voida kopioida tiedostokahvaksi %dkohdetta %s ei löydy jaetusta objektista %s: %sei voida luoda lapsiprosessia komennon korvaamista vartenlapsiprosessia ei voida luoda prosessin korvaamista vartenputkea ei voida luoda komennon korvaamista vartenputkea ei voida luoda prosessin korvaamista vartennimettyä putkea %s ei voida avata lukemista vartennimettyä putkea %s ei voida avata kirjoitusta vartenjaettua objektia %s ei voida avata: %ssyötettä ei voida lukea tiedostosta /dev/null: %snodelay-tilaa ei voida asettaa tiedostokahvalle %dkomentotulkin valitsimia ei voida laittaa päällä ja ottaa pois päältä samanaikaisestipäätteen prosessiryhmää ei voitu asettaa (%d)funktiota ja muuttujaa ei voi poistaa yhtä aikaaei voida keskeyttääsisäänkirjautumiskomentotulkkia ei voi keskeyttää”-f”:ää ei voida käyttää funktioiden luomiseenvalitsimista -anrw voidaan käyttää vain yhtäcase SANA in [MALLINE [| MALLINE]...) KOMENNOT ;;]... esaclapsiprosessin setpgid (%ld => %ld)command [-pVv] komento [arg ...]command_substitute: putkea ei voida kopioida tiedostokahvaksi 1täydennys: funktiota ”%s” ei löytynytodotettiin ehdollista binääristä operaattoriacontinue [n]coproc [NIMI] komento [uudelleenohjaukset]/tmp-hakemistoa ei löytynyt, luo se!cprintf: ”%c”: virheellinen muotoilumerkkinykyinenpoistetaan pysäytetty työ %d prosessiryhmästä %lddescribe_pid: %ld: prosessitunnusta ei löydy.hakemistopino on tyhjähakemistopinon indeksidirs [-clpv] [+N] [-N]jako nollalladynaaminen lataus ei ole käytettävissäecho [-n] [arg ...]echo [-neE] [arg ...]tyhjä taulukkomuuttujan nimienable [-a] [-dnps] [-f tiedosto] [nimi ...]pääteasetuksia luettaessa tapahtui virhe: %svirhe tuotaessa ”%s”:n funktiomääritystäpääteasetuksia asetettaessa tapahtui virhe: %seval [arg ...]exit [n]odototettiin ”)”eksponentti on pienempi kuin 0export [-fn] [nimi[=arvo] ...] tai export -podotettiin lausekettalausekkeen rekursiomäärä ylittyifc [-e e-nimi] [-lnr] [ensimmäinen] [viimeinen] tai fc -s [pat=rep] [komento]fg [työtunniste]tiedostokahva rajojen ulkopuolellavaaditaan tiedostonimi argumentiksifor (( lause1; lause2; lause3 )); do KOMENNOT; donefor NIMI [in ARVOT ... ] ; do KOMENNOT; donehaarautettu prosessi-id %d on ajossa olevalla työllä %dfree: kutsuttiin argumenttina jo vapautettu lohkofree: kutsuttuun argumenttina varaamaton lohkofree: alku- ja loppulohkojen koot eroavatfree: havaittiin alivuoto; mh_nbytes rajojen ulkopuolellafunction nimi { KOMENNOT ; } tai nimi () { KOMENNOT ; }getcwd: ylempiin hakemistoihin ei päästähash [-lr] [-p polku] [-dt] [nimi ...]hajautus kytketty poishere-dokumentti rivillä %d päättyi tiedoston loppumiseen (haluttiin ”%s”)history [-c] [-d erotus] [n] tai history -anrw [tiedosto] or history -ps arg [arg...]sijainti komentohistoriassakomentohistoriamääritysosumia	komento
odotettiin muuttujaa ++:n tai --:n jälkeenif KOMENNOT; then KOMENNOT; [ elif KOMENNOT; then KOMENNOT; ]... [ else KOMENNOT; ] fiinitialize_job_control: getpgrp epäonnistuiinitialize_job_control: vuonhallintainitialize_job_control: setpgidvirheellinen lukujärjestelmävirheellinen lukujärjestelmävirheellinen merkki %d %s:n exportstr:ssävirheellinen heksadesimaalilukuvirheellinen lukuvirheellinen oktaalilukuvirheellinen signaalinumerotyö %d käynnistyi ilman työnohjaustatyötunniste [&]jobs [-lnprs] [työtunniste ...] tai jobs -x komento [args]kill [-s signaalitunniste | -n signaalinumero | -signaalimäärite] prosessi-id | työtunniste ... tai kill -l [signaalimäärite]viimeinen komento: %s
let arg [arg ...]rajoitusrivi %d: rivieditointi ei ole käytössälocal [valitsin] nimi[=arvo] ...lopetus
lopetus [n]toistolaskurimake_here_document: virheellinen käskytyyppi %dmake_local_variable: ei funktiokontekstia nykytilassamake_redirection: uudelleenohjaus ”%d” rajojen ulkopuolellamalloc: vapaitten listan lohko ylikirjoittuimalloc: varmistus epäonnistui: %s
siirrä prosessi toiselle CPU:llepuuttuva ”)”puuttuva ”]”\x:stä puuttuu heksadesimaalinumeroverkko-operaatioita ei ole tuettuei =:ä kohteen %s exportstr:ssäei loppumerkkiä ”%c” rivissä %sei löytynyt komentoaOhjeita kohteelle ”%s” ei löydy. Kokeile ”help help”, ”man -k %s” tai 
”info %s”.ei työnohjaustatällä komentotulkilla ei ole työnohjaustaei osumia: %sei toista hakemistoa”-x”:n kanssa ei voida käyttää muita valitsimiatällä hetkellä komennon lavennusfunktiota ei suoritetaei ole sisäänkirjautumiskomentotulkki: käytä komentoa ”exit”oktaalilukuvoidaan käyttää vain ”for”-, ”while”- tai ”until”-silmukoissaputkitusvirhepop_scope: shell_variablesin alku ei väliaikaisten ympäristömuuttujien ympäristössäpop_var_context: shell_variablesin alku ei ole funktiokontekstipop_var_context: ei global_variables-kontekstiapopd [-n] [+N | -N]sähkökatko lähelläprint_command: virheellinen yhdistin ”%d”printf [-v muuttuja] muoto [argumentit]progcomp_insert: %s: tyhjä COMPSPECohjelmointivirhepushd [-n] [+N | -N | hakemisto]pwd [-LP]lukuvirhe: %d: %srealloc: kutsuargumentti on varaamaton lohkorealloc: alku- ja loppulohkojen koot eroavatrealloc: havaittiin alivuoto; mh_nbytes rajojen ulkopuolellarekursiopinon alivuotovirhe uudelleenohjauksessa: tiedostokahvaa ei voida kopioidaregister_alloc: %p on merkitty taulukossa jo varatuksi?
register_alloc: varaustaulukko on täynnä FIND_ALLOCeja?
register_free: %p on jo taulukossa vapaana?
rajoitettureturn [n]run_pending_traps: virheellinen arvo trap_list[%d]: %prun_pending_traps: signaalikäsittelijä on SIG_DFL, lähetän %d (%s) uudelleen itsellenisave_bash_input: uudella tiedostokahvalla %d on jo puskuriselect NIMI [in ARVOT ... ;] do KOMENNOT; donekomentotulkkitaso (%d) liian korkea, palautetaan 1:ksishift [n]siirtolaskurishopt [-pqsu] [-o] [valitsinnimi ...]sigprocmask: %d: virheellinen operaatiosource tiedosto [argumentit]start_pipeline: pgrp-putkisuspend [-f]lauseoppivirhelauseoppivirhe ehdollisessa lausekkeessalauseoppivirhe ehdollisessa lausekkeessa: odottamaton avainsana ”%s”lauseoppivirhe lausekkeessalauseoppivirhe lähellä ”%s”lauseoppivirhe lähellä odottamatonta avainsanaa ”%s”lauseoppivirhe: ”((%s))”lauseoppivirhe: odottamaton ”;”lauseoppivirhe: vaaditaan aritmeettinen lausekelauseoppivirhe: virheellinen aritmetiikkaoperaattorilauseoppivirhe: odotettiin operandialauseoppivirhe: odottamaton tiedostonloppujärjestelmän kaatuminen lähellätest [lauseke]time [-p] komentoputkiliian monta argumenttiatrap [-lp] [[arg] signaalimäärite ...]trap_handler: virheellinen signaali %dtype [-afptP] nimi [nimi ...]umask [-p] [-S] [tila]unalias [-a] nimi [nimi ...]odottamaton EOF odotettaessa ”]]”odottamaton EOF (tiedostonloppu) odotettaessa sulkevaa ”%c”Odottamaton EOF odotettaessa vastaavaa ”)”odottamaton argumentti ”%s” ehdolliselle binääriselle operaattorilleodottamaton argumentti ”%s” ehdolliselle unaariselle operaattorilleodottamaton argumentti ehdolliselle binääriselle operaattorilleodottamaton argumentti ehdolliselle unaariselle operaattorilleodottamaton avainsana %d ehdollisessa komennossaodottamaton avainsana ”%c” ehdollisessa komennossaodottamaton avainsana ”%s” ehdollisessa komennossaodottamaton avainsana ”%s”, odotettiin ehdollista binääristä operaattoriaodottamaton avainsana ”%s”, odotettiin ”)”tuntematontuntematon komentovirheuntil KOMENNOT; do KOMENNOT; doneliian iso luku lukujärjestelmällemuuttujat - eräiden komentotulkin muuttujien nimet ja merkityksetwait: prosessi %ld ei ole tämän komentotulkin lapsiprosessiwait_for: Prosessista %ld ei ole tietojawait_for_job: työ %d on pysäytettyvaroitus: varoitus: %s: %svaroitus: -C -valitsin ei ehkä toimi odotetustivaroitus: -F -valitsin ei ehkä toimi odotetustiwhile KOMENNOT; do KOMENNOT; donekirjoitusvirhe: %s{ KOMENNOT ; }