Browsing Chinese (Traditional) translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Chinese (Traditional) guidelines.
566575 of 586 results
566.
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.
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.
基於模式符合來執行指令。

基於 PATTERN 模式符合的字詞 WORD,有選擇的執行 <指令>。
「|」用於分隔多個模式。

結束狀態:
回傳最後一個執行指令的狀態。
Translated by pan93412
Located in builtins.c:1619
567.
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.
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.
根據條件執行指令。

「if <指令>」列表被執行。如果結束狀態為零,則執行「then <指令>」
列表。否則按順序執行每個「elif <指令>」列表,並且如果它的結束狀態為
零,則執行對應的「then <指令>」列表並且 if 指令終止。否則如果存在的
情況下,執行「else <指令>」列表。整個結構的結束狀態是最後一個執行
指令的狀態,或者如果沒有條件測試為真的話,則為零。

結束狀態:
回傳最後一個執行指令的狀態。
Translated by pan93412
Located in builtins.c:1631
568.
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.
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.
只要測試成功即執行指令。

只要在「while」<指令> 中的最終指令回傳結果為 0,則
展開並執行 <指令>。

退出狀態:
回傳最後一個執行指令的狀態。
Translated by pan93412
Located in builtins.c:1647
569.
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.
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.
當測試不同過時執行指令。

「until」<指令> 的最終指令回傳狀態不為 0 時,
展開並執行 <指令>。

退出狀態:
回傳最後一個執行指令的狀態。
Translated by pan93412
Located in builtins.c:1659
570.
Create a coprocess named NAME.

Execute COMMAND asynchronously, with the standard output and standard
input of the command connected via a pipe to file descriptors assigned
to indices 0 and 1 of an array variable NAME in the executing shell.
The default NAME is "COPROC".

Exit Status:
The coproc command returns an exit status of 0.
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.
建立一個以 <名稱> 為名的副行程。

非同步執行 <指令>,在執行 shell 中的陣列變數 <名稱>
的 0 號和 1 號元素做為檔案描述符,以一個管道連接指令
分別做為指令的標準輸出和輸入裝置。
預設的 <名稱> 是「COPROC」。

結束狀態:
coprc 指令回傳離開代碼 0。
Translated by pan93412
Located in builtins.c:1672
571.
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.
定義 shell 函數。

建立一個以 <名稱> 為名的 shell 函數。當做為一個簡單的指令啟用時,
<名稱> 函數執行呼叫 shell 語境中的 COMMANDs 指令。當 <名稱>
被啟用時,參數做為 $1…$n 被傳遞給函數,函數的名字儲存在變數
$FUNCNAME 中。

結束狀態:
回傳成功除非 <名稱> 為唯讀。
Translated by pan93412
Located in builtins.c:1686
572.
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.
將指令組合為一個單元。

執行群組中的指令集合。這是對整個指令集合
做重定向的方法之一。

結束狀態:
回傳最後一個執行指令的狀態。
Translated by pan93412
Located in builtins.c:1700
573.
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.
在前臺繼續工作

對於 JOB_SPEC 參數來說和「fg」指令等同。繼續一個
停止的或者後臺工作。JOB_SPEC 可以指定一個工作
名字或工作號。在 JOB_SPEC 後加上一個「&」將會把
工作放至後臺,就像工作規格被做為「bg」指令的參數
執行一樣。

結束狀態:
回傳被繼續的工作狀態。
Translated by pan93412
Located in builtins.c:1712
574.
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.
求值算術表示式。

表示式按照算術法則進行求值。
等價於「let 表示式」。

退出狀態:
如果表示式求值為 0 則回傳 1;否則回傳 0。
Translated by 趙惟倫
Located in builtins.c:1708
575.
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 表示式為假則為真,否則為假
EXPR1 && EXPR2[tab]如果 EXPR1 和 EXPR2 表示式均為真則為真,否則為假
EXPR1 || EXPR2[tab]如果 EXPR1 和 EXPR2 表示式中有一個為真則為真,否則為假

當使用「==」和「!=」運算子時,運算子右邊的字串被用作模式並且執行一個
符合。當使用「=~」運算子時,運算子右邊的字串被當做正規表示式來進行
符合。

運算子 && 和 || 將不對 EXPR2 表示式進行求值,如果 EXPR1 表示式足夠確定
整個表示式的值。

結束狀態:
根據 EXPRESSION 的值為 0 或 1。
Translated by pan93412
Located in builtins.c:1739
566575 of 586 results

This translation is managed by Ubuntu Traditional Chinese (Taiwan) Translators, assigned by Ubuntu Translators.

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

Contributors to this translation: Chris, Jiazheng Shen, Po-Hsu Lin, coldnew, pan93412, yugu, 趙惟倫.