File: ja.gmo

package info (click to toggle)
bash 5.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 43,860 kB
  • sloc: ansic: 134,738; sh: 8,866; yacc: 5,966; makefile: 4,697; perl: 4,105; asm: 48; awk: 23; sed: 16
file content (985 lines) | stat: -rw-r--r-- 91,569 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
 ****<+$D+
i+t++++++	++,,5,T,k,~,, ,,,(,/&-;V-$-:--.(.'E."m....3./&&/&M//t////./+0E0/W0000"001!1-41b1x1111112)#2M2l222222 2!3>3T3,n33 33
303.%40T44444445585Q5
l5z55&5556)6)?6i66366677&%7L7P7a7
p79~7#7778H8Z;j;z;F;<<<<	=	==
-=GGH]J+xKM?NNQQQQRX-Yg%Z\u]^vbEd|Mdde
*f5fNfiff?ffggg ghh#h	3h=hFhZh	nhxhNh,h=if9kkk6mP;mmmCnpstuFTwFwLw/yzz>{ZP~D~~	0*<
gr5€OBHBE΂
'5DXX*σ


Ɔц%$9'^%ه."=!\~Ĉ'ۈ049S$ȉ
 &)'P3x966/f.3)	]g!
3=A'a&**ۍ))0%Z% #ǎ1&&D&k5.ȏ!#!E:g 0ސ1A#($4Y$f#'גSߒ.3b)ē
.D,^,.ǔ?+6bkx#@ŕ
1-L,z'ϖ.,&F*m06ɗP(Q z)Ř֘"?TS
ϙ8ݙV&m'4)(6_r"ś5O+{	5Ȝ
&
1+<9h;$ޝd!$ʞ֞ :UkH|şԟ"+4`|4
͠Dؠ?,]2!"
"-0P	f1/Q)-3٣
&'2N5,

1I,4v.>ڥ)NC	 "ɦ& =G'ħ,$Ch~6Q!*s%ҩ.-'7U62Ī1*),T,;#,#Lp6ݬ*":6Z	--ɭ#''CkFYA+
(3F,Ly%/("=.`%*=34h;)DY-0O"%GH=:ε	(#)LHv:߶7URUFBc=9S.p%(ڹ<)@.j)%" 1C.u"Ļ"%$J.j%+(.1`M}"˽EFAI"Ҿ+1!.S+:ο%	1/+a".51/@a"%7(#LSi("&=6tx
\D2LKgw$CVr	(

xzNqJ-*D	oyDOdw""$`aY,)4/#dk	up9%	#j*#k6Oa0as	;'EOm"5A#w#B#$$$%%*%-6%
d%o%(%.%5%;&BY(b(](])|)))\)F*Tf*** *'--4-b.(.
..!.'.6/9H/'/'/H/'0'C00k0-0*0@0-61d11>1)1T2[2Zz222*23#3W3$p33373<3;<4Kx44646
5D5>5F6	e6)o6!6
6Y6'#7YK7(7W7;&8?b8?89899=V9=9B9M:Hc:0:;:0;?J;Z;;-;0)<@Z<:<(< <A =Db==0M>(~>*>>$>9?*>?i?Sv?I?<@*Q@3|@@)@@'	A1AEA,wAJAAFA?EB=BBBBC-CGMC
C'C-C-C,'DITDDQDH
E?VELEPE=4F]rF;F G)-G*WGG<GdGb>HHH
H]HV3I5I'I`IIJiJJ=JJJK$K=K=YKK<KVK8LSLkLqL*zLXLLM
/M:M/JMZzMBM7N+PNd|N6N!O:OQO*gO1O<O4P(6P$_P~P-QB1QtQ*Q>Q0QN&RuR	RIRRZR`PSISSTU%T#{T"T"TST9UXU	sUf}U8UKVBiVRVSV6SWJWMWL#XFpXX
XCXjYHY.Y>ZIAZrZ	Z[ [&9[`[z[[*[D[,\H4\,}\\+\,\?]$]]]]]G]&^)^QG^*^^^G^T@_S_B_B,`<o`<`C`E-aEsaVaCbTb$[bb#b!b'bc+cG:c6c3cXcFdPOdPd#d'e4=e/reea/M9znacz<O73}sc!

0X5{PDh4`%(L?HvIQG5C@-Ke-JS"V}ved,Fy;_wkrmWUiTd>2*$Du?]E&L2WsoC8)N|]>~Po7\bm:qwM\(l1!iJ
#T	bX 0=S~h"8{g6y't$_R/*`EF+#pAQt1Z&AU|OV:f'x9g	%jGnZ3B)<N6k^@4pYl,Iq[=fuj^R.x.BHY
Kr[ ;+timed out waiting for input: auto-logout
	-%s or -o option
	-ilrsD or -c command or -O shopt_option		(invocation only)

malloc: %s:%d: assertion botched
  (wd: %s) (core dumped) line $%s: cannot assign in this way%c%c: invalid option%s can be invoked via %s has null exportstr%s is %s
%s is a function
%s is a shell builtin
%s is a shell keyword
%s is a special shell builtin
%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: cannot open as FILE%s: %s: compatibility value out of range%s: %s: invalid value for trace file descriptor%s: %s: must use subscript when assigning associative array%s: %s:%d: cannot allocate %lu bytes%s: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)%s: Is a directory%s: ambiguous job spec%s: arguments must be process or job IDs%s: assigning integer to name reference%s: bad network path specification%s: bad substitution%s: binary operator expected%s: cannot allocate %lu bytes%s: cannot allocate %lu bytes (%lu bytes allocated)%s: cannot assign%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 delete: %s%s: cannot destroy array variables in this way%s: cannot execute: required file not found%s: cannot export%s: cannot inherit value from incompatible type%s: cannot unset%s: cannot unset: readonly %s%s: circular name reference%s: dynamic builtin already loaded%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: invalid action name%s: invalid argument%s: invalid array origin%s: invalid callback quantum%s: invalid file descriptor specification%s: invalid indirect expansion%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: invalid timestamp%s: invalid variable name%s: invalid variable name for name reference%s: is a directory%s: job %d already in background%s: job has terminated%s: line %d: %s: maximum function nesting level exceeded (%d)%s: maximum source nesting level exceeded (%d)%s: nameref variable self references not allowed%s: no completion specification%s: no current jobs%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 an indexed array%s: not dynamically loaded%s: not found%s: numeric argument required%s: option requires an argument%s: option requires an argument -- %c
%s: parameter not set%s: parameter null or not set%s: readonly function%s: readonly variable%s: reference variable cannot be an array%s: removing nameref attribute%s: restricted%s: restricted: cannot specify `/' in command names%s: substring expression < 0%s: unary operator expected%s: unbound variable%s: usage: %s: variable may not be assigned value'

(( expression ))(core dumped) (wd now: %s)
/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.
ContinueDEBUG warning: Define or display aliases.
    
    Without arguments, `alias' prints the list of aliases in the reusable
    form `alias NAME=VALUE' on standard output.
    
    Otherwise, an alias is defined for each NAME whose VALUE is given.
    A trailing space in VALUE causes the next word to be checked for
    alias substitution when the alias is expanded.
    
    Options:
      -p	print all defined aliases in a reusable format
    
    Exit Status:
    alias returns true unless a NAME is supplied for which no alias has been
    defined.Define 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 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 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 instructionEvaluate arithmetic expression.
    
    The EXPRESSION is evaluated according to the rules for arithmetic
    evaluation.  Equivalent to `let "EXPRESSION"'.
    
    Exit Status:
    Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise.Evaluate arithmetic expressions.
    
    Evaluate each ARG as an arithmetic expression.  Evaluation is done in
    fixed-width integers with no check for overflow, though division by 0
    is trapped and flagged as an error.  The following list of operators is
    grouped into levels of equal-precedence operators.  The levels are listed
    in order of decreasing precedence.
    
    	id++, id--	variable post-increment, post-decrement
    	++id, --id	variable pre-increment, pre-decrement
    	-, +		unary minus, plus
    	!, ~		logical and bitwise negation
    	**		exponentiation
    	*, /, %		multiplication, division, remainder
    	+, -		addition, subtraction
    	<<, >>		left and right bitwise shifts
    	<=, >=, <, >	comparison
    	==, !=		equality, inequality
    	&		bitwise AND
    	^		bitwise XOR
    	|		bitwise OR
    	&&		logical AND
    	||		logical OR
    	expr ? expr : expr
    			conditional operator
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	assignment
    
    Shell variables are allowed as operands.  The name of the variable
    is replaced by its value (coerced to a fixed-width integer) within
    an expression.  The variable need not have its integer attribute
    turned on to be used in an expression.
    
    Operators are evaluated in order of precedence.  Sub-expressions in
    parentheses are evaluated first and may override the precedence
    rules above.
    
    Exit Status:
    If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.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 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 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.Execute shell builtins.
    
    Execute SHELL-BUILTIN with arguments ARGs without performing command
    lookup.  This is useful when you wish to reimplement a shell builtin
    as a shell function, but need to execute the builtin within the function.
    
    Exit Status:
    Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is
    not a shell builtin.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:
General help using GNU software: <http://www.gnu.org/gethelp/>
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 readyINFORM: Illegal 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 setPrint the name of the current working directory.
    
    Options:
      -L	print the value of $PWD if it names the current working
    		directory
      -P	print the physical directory, without any symbolic links
    
    By default, `pwd' behaves as if `-L' were specified.
    
    Exit Status:
    Returns 0 unless an invalid option is given or the current directory
    cannot be read.QuitRead lines from a file into an array variable.
    
    A synonym for `mapfile'.Record lockRemove each NAME from the list of defined aliases.
    
    Options:
      -a	remove all alias definitions
    
    Return success unless a NAME is not an existing alias.Remove jobs from current shell.
    
    Removes each JOBSPEC argument from the table of active jobs.  Without
    any JOBSPECs, the shell uses its notion of the current job.
    
    Options:
      -a	remove all jobs if JOBSPEC is not supplied
      -h	mark each JOBSPEC so that SIGHUP is not sent to the job if the
    		shell receives a SIGHUP
      -r	remove only running jobs
    
    Exit Status:
    Returns success unless an invalid option or JOBSPEC is given.Removes 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 variable values and attributes.
    
    A synonym for `declare'.  See `help declare'.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)TIMEFORMAT: `%c': invalid format characterTerminatedThe mail in %s has been read
There are running jobs.
There are stopped jobs.
There is NO WARRANTY, to the extent permitted by law.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.

This is free software; you are free to change and redistribute it.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 2Wait for process completion and return exit status.
    
    Waits for each process specified by a PID and reports its termination status.
    If PID is not given, waits for all currently active child processes,
    and the return status is zero.  PID must be a process ID.
    
    Exit Status:
    Returns the status of the last PID; fails if PID is invalid or an invalid
    option is given.Window 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`%c': invalid time format specification`%s': cannot unbind`%s': cannot unbind in command keymap`%s': invalid alias name`%s': invalid keymap name`%s': invalid variable name for name reference`%s': is a special builtin`%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 home page: <http://www.gnu.org/software/bash>
bash_execute_unix_command: cannot find keymap for commandbg [job_spec ...]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]brace expansion: cannot allocate memory for %sbrace expansion: failed to allocate memory for `%s'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 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 reset nodelay mode for fd %dcannot set and unset shell options simultaneouslycannot set gid to %d: effective gid %dcannot set terminal process group (%d)cannot set uid to %d: effective uid %dcannot simultaneously unset a function and a variablecannot start debugger; debugging mode disabledcannot 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 substitution: ignored null byte in inputcommand_substitute: cannot duplicate pipe as fd 1complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: function `%s' not foundcompopt [-o|+o option] [-DEI] [name ...]conditional binary operator expectedcontinue [n]coproc [NAME] command [redirections]could not find /tmp, please create!cprintf: `%c': invalid format charactercurrentdeclare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]deleting stopped job %d with process group %lddescribe_pid: %ld: no such piddirectory stack emptydirectory stack indexdirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]division by 0dynamic loading not availableecho [-n] [arg ...]echo [-neE] [arg ...]empty array variable nameenable [-a] [-dnps] [-f filename] [name ...]error importing function definition for `%s'eval [arg ...]eval: maximum eval nesting level exceeded (%d)exec [-cl] [-a name] [command [argument ...]] [redirection ...]execute_coproc: coproc [%d:%s] still existsexit [n]expected `)'exponent less than 0expression 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 %dformat parsing problem: %sfree: called with already freed block argumentfree: called with unallocated block argumentfree: start and end chunk sizes differfree: underflow detected; magic8 corruptedfree: underflow detected; mh_nbytes out of rangefunction name { COMMANDS ; } or name () { COMMANDS ; }future versions of the shell will force evaluation as an arithmetic substitutiongetcwd: cannot access parent directoriesgetopts optstring name [arg ...]hash [-lr] [-p pathname] [-dt] [name ...]hashing disabledhelp [-dms] [pattern ...]help not available in this versionhere-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: no job control in backgroundinitialize_job_control: setpgidinvalid arithmetic baseinvalid baseinvalid character %d in exportstr for %sinvalid hex numberinvalid integer constantinvalid 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 enabledload function for %s returns failure (%d): not loadedlocal [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
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]maximum here-document count exceededmigrate process to another CPUmissing `)'missing `]'missing hex digit for \xmissing unicode digit for \%cnetwork 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'null directoryoctal 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 imminentpretty-printing mode ignored in interactive shellsprint_command: bad connector `%d'printf [-v var] format [arguments]progcomp_insert: %s: NULL COMPSPECprogrammable_completion: %s: possible retry loopprogramming errorpushd [-n] [+N | -N | dir]pwd [-LP]readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]readonly [-aAf] [name[=value] ...] or readonly -prealloc: called with unallocated block argumentrealloc: start and end chunk sizes differrealloc: underflow detected; magic8 corruptedrealloc: 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; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]shell level (%d) too high, resetting to 1shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncatedshift [n]shift countshopt [-pqsu] [-o] [optname ...]sigprocmask: %d: invalid operationstart_pipeline: pgrp pipesuspend [-f]syntax errorsyntax error in conditional expressionsyntax error in conditional expression: unexpected token `%s'syntax error near `%s'syntax error near unexpected token `%s'syntax error: `%s' unexpectedsyntax error: `((%s))'syntax error: `;' unexpectedsyntax error: arithmetic expression requiredsyntax error: unexpected end of filesystem crash imminenttest [expr]time [-p] pipelinetoo many argumentstrap handler: maximum trap handler level exceeded (%d)trap_handler: bad signal %dtype [-afptP] name [name ...]typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] [name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limit]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 errorunset [-f] [-v] [-n] [name ...]until COMMANDS; do COMMANDS-2; donevalue too great for basevariables - Names and meanings of some shell variableswait [-fn] [-p var] [id ...]wait [pid ...]wait: pid %ld is not a child of this shellwait_for: No record of process %ldwait_for_job: job %d is stoppedwaitchld: turning on WNOHANG to avoid indefinite blockwarning: warning: -C option may not work as you expectwarning: -F option may not work as you expectwhile COMMANDS; do COMMANDS-2; donextrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: invalid file descriptorxtrace_set: NULL file pointer{ COMMANDS ; }Project-Id-Version: GNU bash 5.2-rc1
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2024-05-31 07:41+0900
Last-Translator: Hiroshi Takekawa <sian@big.or.jp>
Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=1; plural=0;
X-Generator: Poedit 2.0.2
入力待ちがタイムアウトしました: 自動ログアウト
	-%s または -o option
	-ilrsD, -c command または -O shopt_option		(起動時のみ)

malloc: %s:%d: アサーション失敗
  (wd: %s) (コアダンプ) 行 $%s: この方法で割当はできません%c%c: 無効なオプション%s は次を通して起動します %s は null の exportstr を持っています%s は %s です
%s は関数です
%s はシェル組み込み関数です
%s はシェルの予約語です
%s は特殊シェル組み込み関数です
%s は `%s' のエイリアスです
%s はハッシュされています (%s)
%s はどのキーにも割り当てられていません。
%s が範囲外です%s%s%s: %s (エラーのあるトークンは "%s")%s: %s が範囲外です%s: %s: ファイルとして開くことができません%s: %s: 値の互換性が範囲外です%s: %s: トレースファイル記述子として無効な値です%s: %s: 連想配列を設定するときには添字をつけなければいけません%s: %s:%d: %lu バイトを割当できません%s: %s:%d: %lu バイトを割当できません (%lu バイトを割当済み)%s: ディレクトリです%s: 曖昧なジョブ指定です%s: 引数はプロセスIDかジョブIDでなければいけません%s: 名前参照に整数を代入しようとしています%s: ネットワークパス指定に誤りがあります%s: 誤った代入です%s: 二項演算子が予期されます%s: %lu バイトを割当できません%s: %lu バイトを割当できません (%lu バイトを割当済み)%s: 割り当てできません%s: リストを配列要素に割り当てできません%s: 配列の添字に非数字を設定できません%s: 連想配列からインデックス配列に変換することはできません%s: インデックス配列から連想配列に変換することはできません%s: 削除できません: %s%s: この方法で配列変数を消去することはできません%s: 実行できません: 必要なファイルがありません%s: export できません%s: 互換性のないタイプからは継承できません%s: 消去できません%s: 消去できません: %s は読み取り専用です%s: 循環名前参照です%s: 動的ビルトインはロード済です%s: 式のエラー
%s: ファイルが大きすぎます%s: ファイルが見つかりません%s: 最初の非空白類文字が `"' ではありません%s: ハッシュテーブルが空です
%s: ヒストリの展開に失敗しました%s: 不明なホストです%s: 不正なオプションです -- %c
%s: 無効なアクション名です%s: 無効な引数です%s: 無効な配列の原点です%s: コールバックの quantum が無効です%s: 無効なファイル記述子指定です%s: 無効な間接展開です%s: limit の無効な引数です%s: 無効な行数です%s: 無効なオプションです%s: 無効なオプション名です%s: 無効なサービスです%s: 無効なシェルオプション名です%s: 無効なシグナル指定です%s: 無効なタイムアウト指定です%s: 無効なタイムスタンプです%s: 無効な変数名です%s: 名前参照として無効な変数です%s: ディレクトリです%s: ジョブ %d はすでにバックグラウンドで動作しています%s: ジョブは終了しました%s: %d 行: %s: 関数の入れ子レベルの最大値を超えています (%d)%s: source の入れ子レベルの最大値を超えています (%d)%s: 自身を参照する名前参照変数は許可されていません%s: 補完指定がありません%s: カレントジョブがありません%s: ジョブ制御が無効になっています%s: そのようなジョブはありません%s: 関数ではありません%s: 通常ファイルではありません%s: シェルのビルトイン関数ではありません%s: 配列変数ではありません%s: インデックス配列ではありません%s: 動的にロードされていません%s: 見つかりません%s: 数字の引数が必要です%s: オプションには引数が必要です%s: オプションには引数が必要です -- %c
%s: パラメータが設定されていません%s: パラメータが null または設定されていません%s: 読み取り専用関数です%s: 読み取り専用の変数です%s: 参照変数は配列であってはいけません%s: 名前参照属性を削除します%s: 制限されています%s: 制限されています:  `/' をコマンド名の中に指定できません%s: substring expression < 0%s: 単項演算子が予期されます%s: 未割り当ての変数です%s: 使用法: %s: 変数が初期化されていないかもしれません'

(( expression ))(コアダンプ) (wd now: %s)
ネットワークが無効な場合 /dev/(tcp|udp)/host/port はサポートされません/tmp は有効なディレクトリ名でなければいけません<カレントディレクトリがありません>ABORT 指定中止しています...ディレクトリスタックの先頭にディレクトリを追加します。またはディレクトリ
    スタックを回転します。新しいスタックの先頭がカレントディレクトリにな
    ります。引数なしで起動された場合、先頭の2つのディレクトリを交換します。
    
    オプション:
      -n	スタックにディレクトリを追加した時に通常のディレクトリ変更
    	を抑止します。よって、スタックのみ操作されます。
    
    引数:
      +N	先頭がN番目のディレクトリになるように回転します(`dirs'で
    	表示されるスタックの先頭から数えた数です。開始番号は0です)。
    
      -N	先頭がN番目のディレクトリになるように回転します(`dirs'で
    	表示されるスタックの末尾から数えた数です。開始番号は0です)。
    
      ディレクトリ	ディレクトリをスタックの先頭に加え、そのディレク
    	トリを新しいカレントディレクトリにします。
    
    `dirs' ビルトインコマンドでディレクトリスタックを表示します。警報 (プロファイル)警報 (仮想)アラーム時計算術 for ループ
    
    以下と等価です。
    	(( EXP1 ))
    	while (( EXP2 )); do
    		COMMANDS
    		(( EXP3 ))
    	done
    EXP1、EXP2、および EXP3 は数式です。いずれかの数式を省略した場合、
    値が 1 であるとして評価されます。
    
    終了ステータス:
    最後に実行したコマンドのステータスを返します。BPT trace/trap誤ったシステムコール悪いシグナルパイプが切れましたバスエラーCPU limit子プロセスの死亡または停止 通常の変数名とその使用法。
    
    BASH_VERSION	Bashのバージョン情報。
    CDPATH	`cd`の引数として与えられたディレクトリを検索する際に
    		使用されるコロン (:) で区切られたディレクトリの一覧。
    GLOBIGNORE	パス名を展開する時に無視されるコロン (:) で区切られた
    		ファイル名パターンの一覧。
    HISTFILE	コマンドヒストリが保存されるファイル名。
    HISTFILESIZE	ヒストリファイルに保存することができる最大行数。
    HISTSIZE	実行中のシェルがアクセスできる最大ヒストリ行数。
    HOME	ログインディレクトリの完全パス名。
    HOSTNAME	現在のホスト名。
    HOSTTYPE	このバージョンの Bash を実行している CPU の種類。
    IGNOREEOF	シェルがファイル終了 (EOF) 文字を単一の入力として受け
    		取った時の動作を制御します。設定されている場合、空白行
    		で EOF 文字をその数連続して受け取った時にシェルを終了
    		します (デフォルト 10)。設定が解除された場合、EOF で
    		入力が終了することを意味します。
    MACHTYPE	Bash が実行されている現在のシステムを表す文字列。
    MAILCHECK	Bash がメールを確認する頻度 (秒単位)。
    MAILPATH	Bash が新規メールを確認するコロン (:) で区切られた
    		ファイル名の一覧。
    OSTYPE	このバージョンの Bash を実行している OS のバージョン。
    PATH	コマンドを検索する際に使用されるコロン (:) で区切ら
    		れたディレクトリの一覧。
    PROMPT_COMMAND	プライマリプロンプトが表示される前に毎回実行
    		されるコマンド。
    PS1		プライマリプロンプト文字列。
    PS2		セカンダリプロンプト文字列。
    PWD		現在のディレクトリの完全パス名。
    SHELLOPTS	コロン (:) で区切られた有効なシェルオプション一覧。
    TERM	現在の端末種類名。
    TIMEFORMAT	`time' 予約語による時間統計情報の表示書式。
    auto_resume	null で無い場合、その行に現れたコマンドは、まず現在停止
    		されているジョブから検索されます。それで見つかった場合、
    		ジョブがフォアグランドになります。値が `exact' の場合、
    		コマンドが停止しているジョブの一覧と厳密に一致していなけ
    		ればなりません。値が `substring' の場合、コマンドがジョ
    		ブの部分文字列に一致しなければなりません。その他の値の
    		場合はコマンドが停止しているジョブの先頭部分に一致しな
    		ければなりません。
    histchars	ヒストリ展開とクイック置換を制御する文字。最初の文字が
    		ヒストリ展開の文字で通常は `!' です。二番目がクイック
    		置換で通常は `^' です。三番目がヒストリのコメントで
    		通常は `#' です。
    HISTIGNORE	ヒストリ一覧に保存されるコマンドを決める時に使用される
    		コロン (:) で区切られたパターンの一覧。
続行デバッグ 警告: エイリアスを定義または表示します。
    
    引数がない場合、`alias` はエイリアス一覧を `alias 名前=値' という再使用可能な
    形式で標準出力に表示します。
    
    そうでなければ、与えられた名前と値でエイリアスを定義します。値の後続に空白
    が存在する場合は次の語はエイリアス展開時にエイリアス代入対象として確認され
    ます。

    オプション:
      -p	すべての定義されたエイリアスを再利用可能な形式で表示します
    
    終了ステータス:
    alias は与えられた名前でエイリアスが定義されなかった場合を除き true を返します。シェル関数を定義します。
    
    NAME という名前のシェル関数を作成します。単にコマンドとして起動された時は
    NAME は COMMANDs をシェルのコンテキスト内で呼び出します。NAME を起動した
    時に引数は関数に $1...$n という位置パラメーターで、関数名は $FUNCNAME
    変数として渡されます。
    
    終了ステータス:
    NAME が読み取り専用でない限り成功を返します。ファイルのモードマスクを表示または設定します。
    
    ユーザーがファイル作成時のマスクを MODE に設定します。MODE が指定されない場合
    現在のマスクの値を表示します。
    
    MODE が数値で開始した場合8進数として解釈されます。それ以外は chmod(1) で受け
    入れられるシンボルモードの文字列として扱われます。
    
    オプション:
      -p	MODE が指定されない場合、入力として再利用可能な形式で表示します
      -S	シンボルモードで出力します。それ以外は8進数で出力します
    
    終了ステータス:
    MODE が無効か、無効なオプションが与えられない限り成功を返します。プロセスの時間を表示します。
    
    シェルとその子プロセスが使用したユーザー時間とシステム時間それぞれの累積を
    表示します。
    
    終了ステータス:
    常に成功を返します。現在記憶されているディレクトリスタックを表示します。ディレクトリは `pushd'
    コマンドによってスタックの一番上に保存されます。`popd'コマンドによって
    スタックから取り戻すことができます。
    
    オプション:
      -c	ディレクトリスタックからすべての要素を取り除き空にする
      -l	ホームディレクトリからの相対パスを ~ を利用した形式で
    	表示しない
      -p	ディレクトリスタックの要素を1行毎に表示する
      -v	ディレクトリスタックの要素を1行ごとに番号をつけて
    	表示する
    
    引数:
      +N	オプションなしで起動された場合にリストの先頭から数えて
    	N番目の要素を表示します。開始番号は0です。
    
      -N	オプションなしで起動された場合にリストの末尾から数えて
	N番目の要素を表示します。開始番号は0です。終了終了(%d)EMT 指定算術式を評価します。
    
    算術式の規定に基づいて EXPRESSION を評価します。"let EXPRESSION"
    と等価です。
    
    終了ステータス:
    EXPRESSION の評価値が 0 の場合は 1、それ以外は 0 を返します。数式を評価します。
    
    各 ARG を数式として評価します。評価は固定長の整数として行われ、桁溢れは
    検査されません。しかし、0 による除算は捕捉されエラーとしてフラグが
    立ちます。次の演算子一覧は同一優先順位の演算子ごとにグループ化されてい
    ます。優先順位は降順になっています。
    
    	id++, id--	変数の後置インクリメント、デクリメント
    	++id, --id	変数の前置インクリメント、デクリメント
    	-, +		単項マイナス、プラス
    	!, ~		論理およびビット否定
    	**		指数演算
    	*, /, %		乗算、除算、剰余演算
    	+, -		加算、減算
    	<<, >>		左および右ビットシフト
    	<=, >=, <, >	比較
    	==, !=		等価、不等価
    	&		ビット論理積
    	^		ビット排他的論理和
    	|		ビット論理和
    	&&		論理積
    	||		論理和
    	expr ? expr : expr
    			条件演算子
    	=, *=, /=, %=,
    	+=, -=, <<=, >>=,
    	&=, ^=, |=	代入
    
    シェル変数は被演算子として使用できます。変数名は数式内で (強制的に固定長
    整数の) 値に置き換えられます。変数は数式内で使用する時には必ずしも
    整数属性を持っている必要はありません。

    演算子は優先順位の順に評価されます。小括弧でくくられた数式は先に評価され、
    上記の優先順位を上書きするかもしれません。
    
    終了ステータス:
    ARG の最終的な評価値が 0 の場合 let は 1 を返します。それ以外の場合は
     let は 0 を返します。条件式を評価します。
    
    これは test 組み込み関数と同義語です。ただし、最後の引数に開始の`['と一致
    するように文字`]'を与えなければいけません。引数をシェルコマンドとして実行します。
    
    引数を一つの文字列に連結し、その結果をシェルへの入力として使用し、
    その結果をコマンドとして実行します。
    
    終了ステータス:
    コマンドの終了ステータスを返します。コマンドが null の場合は成功を
    返します。条件に従ってコマンドを実行します。
    
    `if COMMANDS' を実行します。この終了ステータスが 0 の場合、`then COMMANDS'
    を実行します。そうでない場合は、各 `elif COMMANDS' を順番に実行し、その
    終了ステータスが 0 の場合に、関連した `then COMMANDS' を実行し、if 文が
    完了します。それ以外の場合、 `else COMMANDS' が存在する場合には実行され
    ます。文全体の終了ステータスは、最後に実行したコマンドの終了ステータスか、
    または、テストした条件に true となるものが無い場合は 0 です。
    
    終了ステータス:
    最後に実行したコマンドの終了ステータスを返します。パターン一致の結果に基づいてコマンドを実行します。
    
    WORD が PATTERN に一致するかどうかに基づいて選択的に COMMANDS を実行します。
    複数のパターンを区切るために `|' が使用されます。
    
    終了ステータス:
    最後に実行したコマンドのステータスを返します。リストの各要素に対してコマンドを実行します。
    
    `for' ループではリストの各要素に対して一連のコマンドを実行します。
    `in WORDS ...;' が存在しない場合、`in "$@"' であると見なされます。
    WORDS の要素が NAME の値として代入され COMMANDS が実行されます。
    
    終了ステータス:
    最後に実行したコマンドのステータスを返します。条件式のコマンドを実行します。
    
    条件式 EXPRESSION の評価結果に基づいて 0 または 1 を返します。
    条件式は test 組み込み関数と同じ優先順位で組み合わされます。また、
    次の演算子とも組み合わされます。
    
      ( EXPRESSION )	EXPRESSION の値を返します
      ! EXPRESSION		EXPRESSION が true の時 false を返します。それ
                  		以外は false を返します
      EXPR1 && EXPR2	EXPR1 および EXPR2 の両方が true の時 true を返します。
      	それ以外は false を返します。
      EXPR1 || EXPR2	EXPR1 および EXPR2 のいずれかが true の時 true を返し
      	ます。それ以外は false を返します。
    
    `==' および `!=' 演算子が使用された場合、演算子の右側の文字列をパターンと
    した左側の文字列に対するパターン一致処理が行われます。
    `=~' 演算子が使用された場合、演算子の右側の文字列が正規表現として扱われま
    す。
    
    && および || 演算子は EXPR1 で式の値を決定するのに十分な場合は EXPR2 を
    評価しません。
    
    終了ステータス:
    EXPRESSION の値に基づいて 0 または 1 を返します。シェル組み込みコマンドを実行します。
    
    コマンドを検索しないでシェル組み込みコマンドを ARG をつけて実行し
    ます。これはシェル組み込みコマンドをシェル関数として実装するが、関数
    内で組み込みコマンドを実行する必要がある場合に役に立ちます。
    
    終了ステータス:
    シェル組み込みコマンドの終了ステータスを返します。シェル組み込みコマ
    ンドが無い場合は false を返します。終了 %dログインシェルを終了します。
    
    終了ステータス N でログインシェルを終了します。実行したのがログインシェル
    内で無い場合はエラーを返します。for、 while、または until ループを脱出します。
    
    FOR、 WHILE、または UNTIL ループを脱出します  もし N が指定されている場合、
    N階層のループを終了します。
    
    終了ステータス:
    N が1未満の場合を除き、終了ステータスは 0 です。シェルを終了します。
    
    終了ステータス N でシェルを終了します。 N を指定しない場合は
    最後に実行したコマンドの終了ステータスになります。ファイル limit浮動小数点例外GNU bash, バージョン %s (%s)
GNU bash, バージョン %s-(%s)
GNU 形式の長いオプション:
GNUソフトウェアを使用する時の一般的なヘルプ : <http://www.gnu.org/gethelp/>
複数のコマンドを一つにグループ化します。
    
    複数のコマンドをグループにして1セットとして実行します。これはコマンド
    のセット全体をリダイレクトする一つの方法です。
    
    終了ステータス:
    最後に実行したコマンドのステータスを返します。HFT 未決の入力データHFT monitorモードが与えられましたHFT monitorモードが奪われましたHFT サウンドシーケンスが完了しましたHOME が設定されていません停止私は名前がありません!I/O 用意ができています情報: 不正な指定情報要求割り込みKilledライセンス GPLv3+: GNU GPL バージョン 3 またはそれ以降 <http://gnu.org/licenses/gpl.html>
ジョブをフォアグランドにします。
    
    JOB_SPEC で識別されたジョブをフォアグランドにして、現在のジョブにします。
    もし JOB_SPEC が存在しない場合、シェルが現在のレントジョブとして考えている
    ものが利用されます。
    
    
    終了ステータス:
    フォアグラウンドになったコマンドのステータスを返します。または、エラーが
    発生した時に失敗を返します。ジョブをバックグラウンドにします。
    
    JOB_SPEC で識別されるジョブを `&' と共に始めた時のようにバックグラウンドに
    します。もし JOB_SPEC が存在しない場合、シェルが現在のジョブとして考えてい
    るものが利用されます。
    
    終了ステータス:
    ジョブ制御が有効になっていないかエラーが発生しない限り成功を返します。何もしないコマンド
    
    何も効果がありません。コマンドは何も行いません
    
    終了ステータス:
    常に成功です。OLDPWD が設定されていませんカレントディレクトリの名前を表示します。
    
    オプション:
      -L	$PWD がカレントディレクトリの名前を指している場合は $PWD
    	を表示する
      -P	シンボリックリンクを辿った物理的なディレクトリを表示する
    
    デフォルトでは `pwd' は `-L' が指定されたように動作します。
    
    終了ステータス:
    無効なオプションまたはカレントディレクトリを読み込めない場合を除き
    0を返します。終了ファイルから行を読み込み配列変数に代入します。
    
    `mapfile'の別名です。記録のロック定義されたエイリアス一覧から各名前のエイリアスを削除します。
    
    Options:
      -a	すべてのエイリアス定義を削除します。
    
    名前がエイリアスに存在しない場合を除き true を返します。現在のシェルからジョブを削除します。
    
    アクティブなジョブのテーブルから各引数の JOBSPEC を削除します。JOBSPEC が指定
    されない場合、シェルが現在のジョブと考えているものが使用されます。
    
    オプション:
      -a	JOBSPEC が与えられない時に全てのジョブを削除する
      -h	シェルが SIGHUP を受け取った時に各 JOBSPEC のジョブに対して SIGHUP 
    	が送られないようにマークする
      -r	実行中のジョブのみ削除する
    
    終了ステータス:
    無効なオプションか JOBSPEC が与えられない限り成功を返します。ディレクトリスタックから要素を削除します。引数が無い場合スタックの先頭から
    削除し、新しいスタックの先頭ディレクトリに移動します。
    
    オプション:
      -n	スタックからディレクトリを削除した時に通常のディレクトリ変更
    	を抑止します。よって、スタックのみ操作されます。
    
    引数:
      +N	ディレクトリスタック(`dirs' で表示される)の先頭から数えて
    	 N 番目の要素を削除します。開始番号は 0 です。例: `popd +0'
    	は最初のディレクトリを削除します。`popd +1' は2番目です。
    
      -N	ディレクトリスタック(`dirs' で表示される)の最後から数えて
    	 N 番目の要素を削除します。開始番号は 0 です。例: `popd +0'
    	は最後のディレクトリを削除します。`popd +1' は最後から2番目です。
    
    `dirs' ビルトインコマンドでディレクトリスタックを表示します。パイプラインを実行する時に消費された時間を報告します。
    
    PIPELINE を実行し、終了時に PIPELINE を実行するために費やされた実
    時間、ユーザー CPU 時間、およびシステム CPU 時間の要約を表示します。
    
    オプション:
      -p	移植性のある Posix 形式で時間の要約を表示します
    
    変数 TIMEFORMAT の値が出力の形式として使用されます。
    
    終了ステータス:
    PIPELINE の戻り値が終了ステータスとなります。for, while, または until ループを再開します。
    
    FOR, WHILE または UNTIL ループの次の繰り返しを再開します。
    もし N が指定された場合、N 階層のループを再開します。
    
    終了ステータス:
    N  が1未満の場合を除き、終了ステータスは 0 です。ジョブをフォアグラウンドで再開します。
    
    `fg' コマンドの引数として与える JOB_SPEC と等価です。停止または
    バックグラウンドのジョブを再開します。JOB_SPEC はジョブ名または
    ジョブ番号で指定します。JOB_SPEC の後に `&' を続けると、`bg' の
    引数として与えられたようにジョブをバックグラウンドにします。
    
    終了ステータス:
    再開されたジョブの終了ステータスを返します。結果として成功を返します。
    
    終了ステータス:
    常に成功です。結果として失敗を返します。
    
    終了ステータス:
    常に失敗です。シェル関数から復帰します。
    
    N で指定した値を戻り値として関数または source されたスクリプトを終了します。
    N が指定されない場合、関数またはスクリプトで最後に実行したコマンドの戻り値
    が使用されます。
    
    終了ステータス:
    戻り値 N、またはシェルが関数またはスクリプトを実行していない場合は失敗を
    返します。現在のサブルーチン呼び出しのコンテキストを返します。
    
    EXPR が無い場合 "$line $filename" を返します。  EXPR がある場合、
    "$line $subroutine $filename" を返します。この追加の情報はスタックトレース
    を提供する時に利用します。
    
    EXPR の値は現在のフレームに戻るまでに何回フレームが呼び出されているかを
    意味します。最上位のフレームは 0 です。
    
    終了ステータス:
    シェルが関数を実行できないか式 EXPR が無効な場合を除き 0 を返します。実行中セグメンテーションフォルト一覧から項目を選択し、COMMANDS を実行します。
    
    WORDS が展開され、項目の一覧が生成されます。展開された項目
    の組は標準エラー出力に表示されます。各項目の前には数値が付け
    られます。`in WORDS' が存在しない場合、`in "$@"' と仮定されます。
    次に PS3 プロンプトが表示され、標準入力から 1 行読み込まれます。
    行が表示した項目の一つに関連づけられた数値で構成されていた場合、
    NAME に項目が設定されます。空行の場合、プロンプトが再度表示され
    ます。ファイル終了(EOF) が読み込まれた場合、コマンドが終了します。
    それ以外の場合は NAME に null が設定されます。読み込んだ行は変数
    REPLY に保存されます。行が読み込まれるごとに break コマンドが実
    行されるまで COMMANDS が繰り返し実行されます。
    
    終了ステータス:
    最後に実行したコマンドのステータスを返します。変数の値および属性を設定します。
    
    declare の同義語です。`help declare'を参照してください。キーワードに一致したシェルコマンド `シェルオプション:
位置パラメーターをシフトします。
    
    位置パラメーター名 $N+1,$N+2 ... を $1,$2 ... に変更します。 
    N が与えられなかった場合、1 と見なされます。
    
    終了ステータス:
    Nが負の値または $# より大きい場合を除き成功を返します。シグナル %d停止停止 (シグナル)停止 (tty 入力)停止 (tty 出力)停止 (%s)TIMEFORMAT: `%c': 無効な書式文字ですTerminated%s のメールは既読です
動作中のジョブがあります。
停止しているジョブがあります。
There is NO WARRANTY, to the extent permitted by law.これらのシェルコマンドは内部で定義されています。`help' と入力して一覧を参照してください。
`help 名前' と入力すると `名前' という関数のより詳しい説明が得られます。
'info bash' を使用するとシェル全般のより詳しい説明が得られます。
`man -k' または info を使用すると一覧にないコマンドのより詳しい説明が得られます。

名前の後にアスタリスク (*) がある場合はそのコマンドが無効になっていることを意味します。

This is free software; you are free to change and redistribute it.シェルオプションの詳細については `%s -c "help set"'と入力してください。
シェル組み込みコマンドについては `%s -c help' と入力してください。
不明なシグナル番号 %d不明なエラーです不明なステータス急ぎの IO 状態使用法:	%s [GNU long option] [option] ...
	%s [GNU long option] [option] script-file ...
シェルから脱出するには "%s" を使用してください。
バグ報告をする場合は `bashbug' コマンドを使用してください。
ユーザシグナル 1ユーザシグナル 2プロセスの実行完了を待ち、終了ステータスを返します。
    
    PIDで指定された各プロレスを待ち、その終了ステータスを返します。PID が与えられ
    ない場合、現在アクティブな全ての子プロセスを待ち、0 を返します。PID は
    プロセスIDでなければいけません。
    
    終了ステータス:
    最後の PID の終了ステータスを返します。PIDが無効か、無効なオプションが与えられた
    場合は失敗します。ウィンドウが変更されました引数を標準出力に書き出します。
    
    引数 ARG を最後に改行を加えて標準出力に表示します。
    
    オプション:
      -n	最後に改行を加えない
    
    終了ステータス:
    書き込みエラーが発生しない限り成功を返します。メールが $_ にあります新しいメールが $_ にあります[ arg... ][[ expression ]]`%c': 誤ったコマンドです`%c': 無効な書式指定文字です`%c': 無効なシンボリックモード文字です`%c': 無効なシンボリックモード演算子です`%c': 無効な時間書式指定です`%s': 割り当て解除できません`%s': コマンドキーマップの割り当てを解除できません`%s': 無効なエイリアス名です`%s': 無効なキーマップ名です`%s': 名前参照として無効な変数です`%s': 特殊シェル組み込み関数です`%s': 書式指定文字がありません`%s': pid または有効なジョブ指定ではありません`%s': 有効な識別子ではありません`%s': 不明な関数名です`)' が予期されます`)' が予期されますが、見つかったのは %s です条件式には `:' が予期されますadd_process: pid %5ld (%s) はまだ存在しているとマークされていますalias [-p] [name[=value] ... ]all_local_variables: 現在のスコープは関数コンテキストではありません引数引数が予期されます配列変数のサポートが必要です非変数に割り当てを行おうとしてます誤った配列の添字誤ったコマンドタイプです誤った接続です誤ったジャンプです誤った代入: %s に閉じる "`" がありません誤った代入: 閉じる `%s' が %s に存在しませんbashホームページ: <http://www.gnu.org/software/bash>
bash_execute_unix_command: コマンドのキーマップがありませんbg [job_spec ...]bgp_delete: LOOP: psi (%d) == storage[psi].bucket_nextbgp_search: LOOP: psi (%d) == storage[psi].bucket_nextbind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function または readline-command]中括弧展開: %s へメモリを割り当てられません中括弧展開: `%s' へのメモリ割り当てに失敗しましたbreak [n]バグ: 誤った式のトークンですbuiltin [shell-builtin [arg ...]]caller [expr]`return' は関数または source されたスクリプト内のみで利用できます関数の中でのみ使用できます新規ファイル記述子(fd) %d を bash の入力として割り当てられませんfd %d を fd %d に複製できません名前付きパイプ %s をファイル記述子(fd) %d として複製できません%s が共有オブジェクト %s に存在しません: %sコマンド代入では子プロセスを作成できませんプロセス代入では子プロセスを作成できませんコマンド代入ではパイプを作成できませんプロセス代入ではパイプを作成できません名前付きパイプ %s を読み込み用に開けません名前付きパイプ %s を書き込み用に開けません共有オブジェクト %s を開くことができません : %sファイル記述子(fd) %d を無遅延モードに再設定できませんシェルオプションを同時に有効かつ無効にできませんgidを %d に設定できません: 実効gid %d端末プロセスグループを設定できません (%d)uidを %d に設定できません: 実効uid %d変数と関数を同時に消去することはできませんデバッガを開始できません。デバッガモードが無効になっています中断できませんログインシェルを中断できません関数作成時に `-f' を使用できません-anrw を2つ以上一緒に使用することはできませんcase WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac子プロセス setpgid (%ld から %ld)command [-pVv] command [arg ...]コマンド代入: 入力のヌルバイトを無視しましたcommand_substitute: パイプを fd 1 として複製できませんcomplete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]completion: 関数 `%s' が見つかりませんcompopt [-o|+o option] [-DEI] [name ...]条件二項演算子が予期されますcontinue [n]coproc [NAME] command [redirections]/tmp が見つかりません。作成してください!cprintf: `%c': 無効な書式文字ですカレントdeclare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]プロセスグループ %2$ld のジョブ %1$d を削除していますdescribe_pid: %ld: そのような pid は存在しませんディレクトリスタックが空ですディレクトリスタックのインデックスdirs [-clpv] [+N] [-N]disown [-h] [-ar] [jobspec ... | pid ...]0 による除算です動的ロードは利用できませんecho [-n] [arg ...]echo [-neE] [arg ...]空の配列変数名ですenable [-a] [-dnps] [-f filename] [name ...]`%s' の関数定義をインポート中にエラーが発生しましたeval [arg ...]eval: eval の入れ子レベルの最大値を超えています (%d)exec [-cl] [-a name] [command [argument ...]] [redirection ...]execute_coproc: coproc [%d:%s] は既に存在していますexit [n]`)' が予期されます0より小さい指数部です式が予期されます式の再帰可能レベルを越えましたfc [-e ename] [-lnr] [first] [last] または fc -s [pat=rep] [command]fg [job_spec]ファイル記述子が範囲外ですファイル名が引数として必要ですfor (( exp1; exp2; exp3 )); do COMMANDS; donefor NAME [in WORDS ... ] ; do COMMANDS; done実行中のジョブ %2$d で fork した pid %1$d が出現しました書式解析問題です: %sfree: 既に free されたブロックを引数として呼び出されましたfree: 未割当のブロックを引数として呼び出されましたfree: 開始と終了の塊の大きさが異なっていますfree: アンダーフローを検出しました。magic8 壊れていますfree: アンダーフローを検出しました。 mh_nbytes が範囲外ですfunction name { COMMANDS ; } または name () { COMMANDS ; }将来のバージョンのシェルでは強制的に数値代入として評価されますgetcwd: 親ディレクトリにアクセスできませんgetopts optstring name [arg ...]hash [-lr] [-p pathname] [-dt] [name ...]ハッシュが無効になっていますhelp [-dms] [pattern ...]このバージョンではヘルプが利用できませんヒアドキュメントの %d 行目でファイル終了 (EOF) に達しました (`%s' が必要)history [-c] [-d offset] [n] または history -anrw [filename] または history -ps arg [arg...]ヒストリ位置ヒストリ指定hits	command
識別子は前置インクリメントまたは前置デクリメントが予期されますif COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fiinitialize_job_control: getpgrp が失敗しましたinitialize_job_control: line disciplineinitialize_job_control: バックグラウンドにジョブコントロールがありませんinitialize_job_control: setpgid無効な基底の数値です無効な基底%2$s に対する exportstr で %1$d は無効な文字です無効な十六進数です無効な整数定数です無効な数字です無効な八進数です無効なシグナル番号ジョブ %d がジョブ制御なしで開始されましたjob_spec [&]jobs [-lnprs] [jobspec ...] または jobs -x command [args]kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... または kill -l [sigspec]最後のコマンド: %s
let 引数 [引数 ...]limit%d 行: 行編集が有効になっていません関数 %s のロードが失敗を返しました(%d): ロードされませんでしたlocal [option] name[=value] ...ログアウト
logout [n]ループ回数make_here_document: 誤った指定の種類 %dmake_local_variable: 現在のスコープは関数コンテキストではありませんmake_redirection: リダイレクト指定 `%d' は範囲外ですmalloc: free ブロックリストが壊れていますmalloc: 失敗したアサーション: %s
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]ヒアドキュメントの最大数を超えましたプロセスを別のCPUに移動`)' がありません`]'がありません\x 用の十六進数字がありません\%c 用のユニコード数値がありませんネットワーク操作はサポートされていません%s に対する exportstr に `=' がありません閉じる `%c' が %s にありませんコマンドが見つかりません`%s' に一致するヘルプ項目がありません。`help help'、`man -k %s' または `info %s' を試してくださいジョブ制御が無効になっていますこのシェルではジョブ制御が無効になっています一致しません: %s他のディレクトリはありません`-x' は他のオプションを同時に使用できません補完機能は現在実行されていませんログインシェルではありません: `exit' を使用してください空のディレクトリ八進数`for'、`while' または `until' ループでのみ意味がありますパイプエラーpop_scope: shell_variables の先頭です。一時環境スコープではありませんpop_var_context: shell_variables の先頭です。関数コンテキストではありませんpop_var_context: global_variables コンテキストではありませんpopd [-n] [+N | -N]電源故障の危険pretty-printing モードはインタラクティブシェルでは無視されますprint_command: 誤った接続 `%d'printf [-v var] format [arguments]progcomp_insert: %s: NULL COMPSPECprogrammable_completion: %s: リライトループになる可能性がありますプログラミングエラーpushd [-n] [+N | -N | dir]pwd [-LP]readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]readonly [-aAf] [name[=value] ...] または readonly -prealloc: 未割当のブロックを引数として呼び出されましたrealloc: 開始と終了の塊の大きさが異なっていますrealloc: アンダーフローを検出しました。magic8 が壊れていますrealloc: アンダーフローを検出しました。 mh_nbytes が範囲外です再帰スタックがアンダーフローしましたリダイレクトエラー: ファイル記述子を複製できませんregister_alloc: %p 既にテーブル上では割り当てられています
register_alloc: FIND_ALLOC で割り当てテーブルがいっぱいです
register_free: %p テーブル上では既に解放されています
制限されていますreturn [n]run_pending_traps: trap_list[%d] に誤った値があります: %prun_pending_traps: シグナルハンドラーは SIG_DFLです。, %d (%s) を自身に再送します。save_bash_input: 新規 fd %d のバッファはすでに存在しますselect NAME [in WORDS ... ;] do COMMANDS; doneset [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]シェルレベル (%d) は高すぎます。1に再設定されましたshell_getc: shell_input_line_size (%zu) が SIZE_MAX (%lu)を越えています: 行が途中で切られましたshift [n]シフト回数shopt [-pqsu] [-o] [optname ...]sigprocmask: %d: 無効な操作ですstart_pipeline: pgrp pipesuspend [-f]構文エラー条件式に構文エラーがあります条件式に構文エラー: 予期しないトークン `%s' です`%s' 周辺に構文エラーがあります予期しないトークン `%s' 周辺に構文エラーがあります構文エラー: 予期しない `%s' です構文エラー: `((%s))'構文エラー: 予期しない `;' です構文エラー: 数値の式が必要です構文エラー: 予期しないファイル終了 (EOF) ですシステムクラッシュの危険test [expr]time [-p] pipeline引数が多すぎますtrap handler: trap handler の最大レベルを超えています (%d)trap_handler: 誤ったシグナル %dtype [-afptP] name [name ...]typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] [name ...]ulimit [-SHabcdefiklmnpqrstuvxPRT] [limit]umask [-p] [-S] [mode]unalias [-a] name [name ...]`]]' を探索中に予期せずファイルが終了しました (EOF)対応する `%c' を探索中に予期せずファイルが終了しました (EOF)対応する `)' を探索中に予期せずファイルが終了しました (EOF)条件二項演算子に対する予期しない引数 `%s' です条件単項演算子に対する予期しない引数 `%s' です条件二項演算子に対する予期しない引数です条件単項演算子に対する予期しない引数です条件コマンドに予期しないトークン %d があります条件コマンドに予期しないトークン `%c' があります条件コマンドに予期しないトークン `%s' があります`%s` は予期しないトークンです。条件二項演算子が予期されます予期しないトークン `%s' です。`)' が予期されます不明不明なコマンドエラーですunset [-f] [-v] [-n] [name ...]until COMMANDS; do COMMANDS-2; done基底の値が大きすぎます変数 - 変数の名前とその意味wait [-fn] [-p var] [id ...]wait [pid ...]wait: pid %ld はこのシェルの子プロセスではありませんwait_for: プロセス %ld の記録がありませんwait_for_job: ジョブ %d は停止していますwaitchld: 不定のブロックを避けるために WNOHANG をオンにしました。警告: 警告: -C オプションは期待通りに動作しないかもしれません警告: -F オプションは期待通りに動作しないかもしれませんwhile COMMANDS; do COMMANDS-2; donextrace fd (%d) != fileno xtrace fp (%d)xtrace_set: %d: 無効なファイル記述子ですxtrace_set: NULL ファイルポインタです{ COMMANDS ; }