Browsing Serbian translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions.
528537 of 547 results
528.
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 Мирослав Николић
Located in builtins.c:1631
529.
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“ НАРЕДБАМА
има излазно стање нуле.

Излазно стање:
Исписује стање последње извршене наредбе.
Translated by Мирослав Николић
Located in builtins.c:1647
530.
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“ НАРЕДБАМА
има излазно стање које није нула.

Излазно стање:
Исписује стање последње извршене наредбе.
Translated by Мирослав Николић
Located in builtins.c:1659
531.
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:
Returns the exit status of COMMAND.
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.
Ствара копроцес под називом НАЗИВ.

Извршава наредбу несагласно, са стандардним излазом и стандардним
улазом наредбе повезане путем спојке са описницима датотека додељених
да назначе 0 и 1 НАЗИВА променљиве низа у шкољци извршавања.
Основни НАЗИВ је „COPROC“.

Излазно стање:
Даје излазно стање НАРЕДБЕ.
Translated by Мирослав Николић
Located in builtins.c:1620
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.
Одређује функцију шкољке.

Ствара функцију шкољке под називом НАЗИВ. Када се призове као једна наредба,
НАЗИВ покреће НАРЕДБЕ у контексту шкољке позивања. Када се призове НАЗИВ,
аргументи се прослеђују функцији као $1...$n, а назив функције се налази у
$НАЗИВУ_ФУНКЦИЈЕ.

Излазно стање:
Даје позитиван резултат осим ако је НАЗИВ само за читање.
Translated by Мирослав Николић
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.
Групише наредбе као јединицу.

Покреће скуп наредби у групи. Ово је један од начина за преусмеравање
читавог скупа наредби.

Излазно стање:
Исписује стање последње извршене наредбе.
Translated by Мирослав Николић
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“. Наставља заустављени
или посао у позадини. ОДРЕДБА_ПОСЛА може да наведе назив посла или број
посла. Пропративши ОДРЕДБУ_ПОСЛА са & поставља посао у позадину, као
да је одредба посла достављена као аргумент уз „bg“.

Излазно стање:
Даје стање настављеног посла.
Translated by Мирослав Николић
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.
Процењује аритметички израз.

ИЗРАЗ се процењује у складу са правилима за аритметичко процењивање.
Исто што и „let ИЗРАЗ“.

Излазно стање:
Даје 1 ако се ИЗРАЗ процени на 0; у супротном даје 0.
Translated by Мирослав Николић
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.
Извршава условну наредбу.

Даје стање 0 или 1 у зависности од процене условног израз ИЗРАЗ.
Изрази су састављени од истих примарних које користи уграђеност
„test“, и може бити комбиновано употребом следећих оператора:

( ИЗРАЗ )[tab] Даје вредност ИЗРАЗА
! ИЗРАЗ[tab][tab]Тачно ако је ИЗРАЗ нетачан; у супротном нетачно
ИЗРАЗ1 && ИЗРАЗ2[tab]Тачно ако су и ИЗРАЗ1 и ИЗРАЗ2 тачни; у супротном нетачно
ИЗРАЗ1 || ИЗРАЗ2[tab]Тачно ако је или ИЗРАЗ1 или ИЗРАЗ2 тачан; у супротном нетачно

КАда се користе оператори „==“ и „!=“, ниска са десне стране оператора
се користи као шаблон а поређење са шаблоном се обавља. Када се користи
оператор „=~“, ниска са десне стране оператора се поклапа као регуларни
израз.

Оператори && и || не процењују ИЗРАЗ2 ако је ИЗРАЗ1 довољан за одређивање
вредности израза.

Излазно стање:
0 или 1 у зависности од вредност ИЗРАЗА.
Translated by Мирослав Николић
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.
Општи називи променљивих шкољке и употреба.

ИЗДАЊЕ_БАША Подаци о издању за овај Баш.
ЦДПУТАЊА Списак директоријума раздвојен двотачком за тражење
директоријума који су дати као аргументи за „cd“.
ОПШТЕЗАНЕМАРИ Списак шаблона раздвојен двотачком који описује називе
датотека који ће бити занемарени ширењем назива путање.
ИСТОРИОТЕКА Назив датотеке у којој је смештен историјат наредби.
ВЕЛИЧИНАИСТОРИОТЕКЕ Највећи број редова које може да садржи ова датотека.
ВЕЛИЧИНАИСТОРИЈАТА Највећи број редова историјата којима покренута
шкољка може да приступи.
ЛИЧНО Потпуна путања до вашег директоријума пријављивања.
НАЗИВДОМАЋИНА Назив текућег домаћина.
ВРСТАДОМАЋИНА Врста процесора под којим ради ово издање Баша.
ЗАНЕМАРИКРД Управља радњом шкољке при пријему знака за крај датотеке
само као улаза. Ако је подешено, онда је његова вредност
број знакова КРД-а који могу бити виђени у реду празног
реда пре него ли шкољка изађе (основно је 10). Када
није подешено, КРД значи крај улаза.
ВРСТАМАШИНЕ Ниска која описује текући систем на коме је Баш покренут.
ПРОВЕРАПОШТЕ Колико често, у секундама, Баш првоерава нову пошту.
ПУТАЊАПОШТЕ Списак датотека раздвојен двотачком које Баш проверава
за новом поштом.
ВРСТАОСА Издање Јуникса на коме је покренуто ово издање Баша.
ПУТАЊА Списак директоријума раздвојен двотачком за претрагу
приликом тражења наредби.
НАРЕДБА_УПИТА Наредба која ће бити извршена пре исписивања сваког
главног упита.
НГУ1 Ниска главног упита.
НСУ2 Ниска споредног упита.
ШРД Пуна путања текућег директоријума.
ОПЦИЈЕШКОЉКЕ Списак раздвојен двотачком укључених опција шкољке.
ТЕРМИНАЛ Назив врсте текућег терминала.
ЗАПИСВРЕМЕНА Излазни запис за статистике времена које приказује
резервисана реч „time“.
сам_настави Не-ништа значи да је реч наредбе која се појављује на реду
сама по себи прва тражена на списку тренутно заустављених
послова. Ако се ту пронађе, тај посао се поставља у први
план. Вредност „exact“ значи да реч наредбе мора тачно да
одговара наредби на списку заустављених послова. Вредност
„substring“ значи да реч наредбе мора да одговара поднисци
посла. Свака друга вредност значи да наредба мора бити
префикс заустављеног посла.
знакисторијата Знаци који управљају ширењем историјата и брзом заменом.
Први знак јесте знак замене историјата, обично је то „!“.
Други јесте знак „брзе замене“, обично је то „^“. Трећи
јесте знак „напомене историјата“, обично је то „#“.
ЗАНЕМАРИИСТОРИЈАТ Списак шаблона раздвојен двотачком коришћених за одлучивање
о наредбама које требају бити сачуване на списку историјата.
Translated by Мирослав Николић
Located in builtins.c:1765
528537 of 547 results

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

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

Contributors to this translation: Sandra Gucul-Milojevic, Мирослав Николић.