Browsing Japanese translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Japanese guidelines.
532541 of 547 results
532.
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.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
シェル関数を定義します。

NAME という名前のシェル関数を作成します。単にコマンドとして起動された時は
NAME は COMMANDs をシェルのコンテキスト内で呼び出します。NAME を起動した
時に引数は関数に $1...$n という位置パラメーターで、関数名は $FUNCNAME
変数として渡されます。

終了ステータス:
NAME が読み取り専用でない限り成功を返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1686
533.
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.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
複数のコマンドを一つにグループ化します。

複数のコマンドをグループにして1セットとして実行します。これはコマンド
のセット全体をリダイレクトする一つの方法です。

終了ステータス:
最後に実行したコマンドのステータスを返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1700
534.
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.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
ジョブをフォアグラウンドで再開します。

`fg' コマンドの引数として与える JOB_SPEC と等価です。停止または
バックグラウンドのジョブを再開します。JOB_SPEC はジョブ名または
ジョブ番号で指定します。JOB_SPEC の後に `&' を続けると、`bg' の
引数として与えられたようにジョブをバックグラウンドにします。

終了ステータス:
再開されたジョブの終了ステータスを返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1712
535.
Evaluate 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.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
算術式を評価します。

算術式の規定に基づいて EXPRESSION を評価します。"let EXPRESSION"
と等価です。

終了ステータス:
EXPRESSION の評価値が 0 の場合は 1、それ以外は 0 を返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1708
536.
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 )[tab]Returns the value of EXPRESSION
! EXPRESSION[tab][tab]True if EXPRESSION is false; else false
EXPR1 && EXPR2[tab]True if both EXPR1 and EXPR2 are true; else false
EXPR1 || EXPR2[tab]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.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
条件式のコマンドを実行します。

条件式 EXPRESSION の評価結果に基づいて 0 または 1 を返します。
条件式は test 組み込み関数と同じ優先順位で組み合わされます。また、
次の演算子とも組み合わされます。

( EXPRESSION )[tab]EXPRESSION の値を返します
! EXPRESSION[tab][tab]EXPRESSION が true の時 false を返します。それ
[tab][tab]以外は false を返します
EXPR1 && EXPR2[tab]EXPR1 および EXPR2 の両方が true の時 true を返します。
[tab]それ以外は false を返します。
EXPR1 || EXPR2[tab]EXPR1 および EXPR2 のいずれかが true の時 true を返し
[tab]ます。それ以外は false を返します。

`==' および `!=' 演算子が使用された場合、演算子の右側の文字列をパターンと
した左側の文字列に対するパターン一致処理が行われます。
`=~' 演算子が使用された場合、演算子の右側の文字列が正規表現として扱われま
す。

&& および || 演算子は EXPR1 で式の値を決定するのに十分な場合は EXPR2 を
評価しません。

終了ステータス:
EXPRESSION の値に基づいて 0 または 1 を返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1739
537.
Common shell variable names and usage.

BASH_VERSION[tab]Version information for this Bash.
CDPATH[tab]A colon-separated list of directories to search
[tab][tab]for directories given as arguments to `cd'.
GLOBIGNORE[tab]A colon-separated list of patterns describing filenames to
[tab][tab]be ignored by pathname expansion.
HISTFILE[tab]The name of the file where your command history is stored.
HISTFILESIZE[tab]The maximum number of lines this file can contain.
HISTSIZE[tab]The maximum number of history lines that a running
[tab][tab]shell can access.
HOME[tab]The complete pathname to your login directory.
HOSTNAME[tab]The name of the current host.
HOSTTYPE[tab]The type of CPU this version of Bash is running under.
IGNOREEOF[tab]Controls the action of the shell on receipt of an EOF
[tab][tab]character as the sole input. If set, then the value
[tab][tab]of it is the number of EOF characters that can be seen
[tab][tab]in a row on an empty line before the shell will exit
[tab][tab](default 10). When unset, EOF signifies the end of input.
MACHTYPE[tab]A string describing the current system Bash is running on.
MAILCHECK[tab]How often, in seconds, Bash checks for new mail.
MAILPATH[tab]A colon-separated list of filenames which Bash checks
[tab][tab]for new mail.
OSTYPE[tab]The version of Unix this version of Bash is running on.
PATH[tab]A colon-separated list of directories to search when
[tab][tab]looking for commands.
PROMPT_COMMAND[tab]A command to be executed before the printing of each
[tab][tab]primary prompt.
PS1[tab][tab]The primary prompt string.
PS2[tab][tab]The secondary prompt string.
PWD[tab][tab]The full pathname of the current directory.
SHELLOPTS[tab]A colon-separated list of enabled shell options.
TERM[tab]The name of the current terminal type.
TIMEFORMAT[tab]The output format for timing statistics displayed by the
[tab][tab]`time' reserved word.
auto_resume[tab]Non-null means a command word appearing on a line by
[tab][tab]itself is first looked for in the list of currently
[tab][tab]stopped jobs. If found there, that job is foregrounded.
[tab][tab]A value of `exact' means that the command word must
[tab][tab]exactly match a command in the list of stopped jobs. A
[tab][tab]value of `substring' means that the command word must
[tab][tab]match a substring of the job. Any other value means that
[tab][tab]the command must be a prefix of a stopped job.
histchars[tab]Characters controlling history expansion and quick
[tab][tab]substitution. The first character is the history
[tab][tab]substitution character, usually `!'. The second is
[tab][tab]the `quick substitution' character, usually `^'. The
[tab][tab]third is the `history comment' character, usually `#'.
HISTIGNORE[tab]A colon-separated list of patterns used to decide which
[tab][tab]commands should be saved on the history list.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
通常の変数名とその使用法。

BASH_VERSION[tab]Bashのバージョン情報。
CDPATH[tab]`cd`の引数として与えられたディレクトリを検索する際に
[tab][tab]使用されるコロン (:) で区切られたディレクトリの一覧。
GLOBIGNORE[tab]パス名を展開する時に無視されるコロン (:) で区切られた
[tab][tab]ファイル名パターンの一覧。
HISTFILE[tab]コマンドヒストリが保存されるファイル名。
HISTFILESIZE[tab]ヒストリファイルに保存することができる最大行数。
HISTSIZE[tab]実行中のシェルがアクセスできる最大ヒストリ行数。
HOME[tab]ログインディレクトリの完全パス名。
HOSTNAME[tab]現在のホスト名。
HOSTTYPE[tab]このバージョンの Bash を実行している CPU の種類。
IGNOREEOF[tab]シェルがファイル終了 (EOF) 文字を単一の入力として受け
[tab][tab]取った時の動作を制御します。設定されている場合、空白行
[tab][tab]で EOF 文字をその数連続して受け取った時にシェルを終了
[tab][tab]します (デフォルト 10)。設定が解除された場合、EOF で
[tab][tab]入力が終了することを意味します。
MACHTYPE[tab]Bash が実行されている現在のシステムを表す文字列。
MAILCHECK[tab]Bash がメールを確認する頻度 (秒単位)。
MAILPATH[tab]Bash が新規メールを確認するコロン (:) で区切られた
[tab][tab]ファイル名の一覧。
OSTYPE[tab]このバージョンの Bash を実行している OS のバージョン。
PATH[tab]コマンドを検索する際に使用されるコロン (:) で区切ら
[tab][tab]れたディレクトリの一覧。
PROMPT_COMMAND[tab]プライマリプロンプトが表示される前に毎回実行
[tab][tab]されるコマンド。
PS1[tab][tab]プライマリプロンプト文字列。
PS2[tab][tab]セカンダリプロンプト文字列。
PWD[tab][tab]現在のディレクトリの完全パス名。
SHELLOPTS[tab]コロン (:) で区切られた有効なシェルオプション一覧。
TERM[tab]現在の端末種類名。
TIMEFORMAT[tab]`time' 予約語による時間統計情報の表示書式。
auto_resume[tab]null で無い場合、その行に現れたコマンドは、まず現在停止
[tab][tab]されているジョブから検索されます。それで見つかった場合、
[tab][tab]ジョブがフォアグランドになります。値が `exact' の場合、
[tab][tab]コマンドが停止しているジョブの一覧と厳密に一致していなけ
[tab][tab]ればなりません。値が `substring' の場合、コマンドがジョ
[tab][tab]ブの部分文字列に一致しなければなりません。その他の値の
[tab][tab]場合はコマンドが停止しているジョブの先頭部分に一致しな
[tab][tab]ければなりません。
histchars[tab]ヒストリ展開とクイック置換を制御する文字。最初の文字が
[tab][tab]ヒストリ展開の文字で通常は `!' です。二番目がクイック
[tab][tab]置換で通常は `^' です。三番目がヒストリのコメントで
[tab][tab]通常は `#' です。
HISTIGNORE[tab]ヒストリ一覧に保存されるコマンドを決める時に使用される
[tab][tab]コロン (:) で区切られたパターンの一覧。
Translated by Yasuaki Taniguchi
Located in builtins.c:1765
538.
Add directories to stack.

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[tab]Suppresses the normal change of directory when adding
[tab]directories to the stack, so only the stack is manipulated.

Arguments:
+N[tab]Rotates the stack so that the Nth directory (counting
[tab]from the left of the list shown by `dirs', starting with
[tab]zero) is at the top.

-N[tab]Rotates the stack so that the Nth directory (counting
[tab]from the right of the list shown by `dirs', starting with
[tab]zero) is at the top.

dir[tab]Adds DIR to the directory stack at the top, making it the
[tab]new current working directory.

The `dirs' builtin displays the directory stack.

Exit Status:
Returns success unless an invalid argument is supplied or the directory
change fails.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
ディレクトリをディレクトリスタックに加えます。

ディレクトリをディレクトリスタックの先頭に加える、またはディレ
クトリを回転してカレントディレクトリがスタックの先頭になるよう
にします。引数がない場合、先頭の二つのディレクトリを入れ替えま
す。

オプション:
-n[tab]スタックに加えた時、通常のディレクトリ変更を抑止し
[tab]ます。よってスタックのみ操作されます。

引数:
+N[tab]N 番目のディレクトリが先頭になるようスタックを回転
[tab]します (`dirs' で表示される一覧の左から数えます。開始番号
[tab]は 0 です)。

-N[tab]N 番目のディレクトリが先頭になるようスタックを回転
[tab]します (`dirs' で表示される一覧の右から数えます。開始番号
[tab]は 0 です)。

dir[tab]DIR をディレクトリスタックの先頭に加え、カレント
[tab]ディレクトリにします。

`dirs' 組み込み関数でディレクトリスタックを表示します。

終了ステータス:
無効な引数が与えられるかディレクトリ変更が失敗しない限り成功を
返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1770
539.
Remove directories from stack.

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[tab]Suppresses the normal change of directory when removing
[tab]directories from the stack, so only the stack is manipulated.

Arguments:
+N[tab]Removes the Nth entry counting from the left of the list
[tab]shown by `dirs', starting with zero. For example: `popd +0'
[tab]removes the first directory, `popd +1' the second.

-N[tab]Removes the Nth entry counting from the right of the list
[tab]shown by `dirs', starting with zero. For example: `popd -0'
[tab]removes the last directory, `popd -1' the next to last.

The `dirs' builtin displays the directory stack.

Exit Status:
Returns success unless an invalid argument is supplied or the directory
change fails.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
ディレクトリスタックからディレクトリを削除します。

ディレクトリスタックから要素を削除します。引数がない場合、ディレクトリ
スタックの先頭から削除し、新しいスタック先頭のディレクトリに移動します。

オプション:
-n[tab]スタックからディレクトリを削除した時、通常のディレクトリ変
[tab]更を抑止します。よってスタックのみ操作されます。

引数:
+N[tab]`dirs' で表示される一覧の左から数えて N 番目の要素を削除し
[tab]ます。開始番号は 0 です。例えば、`popd +0' は先頭のディレクトリを
[tab]削除します。`popd +1' は二番目です。

-N[tab]`dirs' で表示される一覧の右から数えて N 番目の要素を削除し
[tab]ます。開始番号は 0 です。例えば、`popd -0' は最後のディレクトリを
[tab]削除します。`popd -1' は最後から二番目です。

`dirs' 組み込み関数でディレクトリスタックを表示します。

終了ステータス:
無効な引数が与えられるかディレクトリ変更が失敗しない限り成功を
返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1804
540.
Display directory stack.

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[tab]clear the directory stack by deleting all of the elements
-l[tab]do not print tilde-prefixed versions of directories relative
[tab]to your home directory
-p[tab]print the directory stack with one entry per line
-v[tab]print the directory stack with one entry per line prefixed
[tab]with its position in the stack

Arguments:
+N[tab]Displays the Nth entry counting from the left of the list shown by
[tab]dirs when invoked without options, starting with zero.

-N[tab]Displays the Nth entry counting from the right of the list shown by
[tab]dirs when invoked without options, starting with zero.

Exit Status:
Returns success unless an invalid option is supplied or an error occurs.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
ディレクトリスタックを表示します。

現在記憶されているディレクトリ一覧を表示します。ディレクトリは `pushd'
コマンドを使用して一覧に追加され、`popd' コマンドを通して一覧から取り
戻されます。

オプション:
-c[tab]全ての要素を削除してディレクトリスタックを空にします
-l[tab]ホームディレクトリからの相対パスを ~ を先頭にした形式で
[tab]表示しません
-p[tab]一行に一つのディレクトリスタック要素を表示します
-v[tab]一行に一つのディレクトリスタック要素を位置に関する番号
[tab]をつけて表示します

引数:
+N[tab]dirs を引数無しで実行した時の一覧で左から数えて N 番目の
[tab]要素のみを表示します。開始番号は 0 です。

-N[tab]dirs を引数無しで実行した時の一覧で右から数えて N 番目の
[tab]要素のみを表示します。開始番号は 0 です。

終了ステータス:
無効なオプションが与えられるかエラーが発生しない限り成功を返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1834
541.
Set and unset shell options.

Change the setting of each shell option OPTNAME. Without any option
arguments, list all shell options with an indication of whether or not each
is set.

Options:
-o[tab]restrict OPTNAMEs to those defined for use with `set -o'
-p[tab]print each shell option with an indication of its status
-q[tab]suppress output
-s[tab]enable (set) each OPTNAME
-u[tab]disable (unset) each OPTNAME

Exit Status:
Returns success if OPTNAME is enabled; fails if an invalid option is
given or OPTNAME is disabled.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
シェルオプションを設定、および設定解除します。

各シェルオプション OPTNAME の設定を変更します。引数がない場合、シェル
オプション全てを、それぞれ設定されているか否かを含めて表示します。

オプション:
-o[tab]restrict OPTNAMEs to those defined for use with `set -o'
-p[tab]それぞれのシェルオプションを、状態を含めて表示します
-q[tab]出力を抑止します
-s[tab]OPTNAME をそれぞれ有効 (設定) にします
-u[tab]OPTNAME をそれぞれ無効 (非設定) にします

終了ステータス:
OPTNAME が有効な場合は成功を返します。無効なオプションが与えられた場合
または OPTNAME が無効な場合は失敗を返します。
Translated by Yasuaki Taniguchi
Located in builtins.c:1898
532541 of 547 results

This translation is managed by Ubuntu Japanese Translators, assigned by Ubuntu Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: Jo Ogawa, Kyoichi Ozaki, Mitsuya Shibata, Shushi Kurose, Takeshi Hamasaki, Yasuaki Taniguchi.