Browsing Hungarian translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Hungarian guidelines.
504513 of 547 results
504.
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.

[tab]id++, id--[tab]variable post-increment, post-decrement
[tab]++id, --id[tab]variable pre-increment, pre-decrement
[tab]-, +[tab][tab]unary minus, plus
[tab]!, ~[tab][tab]logical and bitwise negation
[tab]**[tab][tab]exponentiation
[tab]*, /, %[tab][tab]multiplication, division, remainder
[tab]+, -[tab][tab]addition, subtraction
[tab]<<, >>[tab][tab]left and right bitwise shifts
[tab]<=, >=, <, >[tab]comparison
[tab]==, !=[tab][tab]equality, inequality
[tab]&[tab][tab]bitwise AND
[tab]^[tab][tab]bitwise XOR
[tab]|[tab][tab]bitwise OR
[tab]&&[tab][tab]logical AND
[tab]||[tab][tab]logical OR
[tab]expr ? expr : expr
[tab][tab][tab]conditional operator
[tab]=, *=, /=, %=,
[tab]+=, -=, <<=, >>=,
[tab]&=, ^=, |=[tab]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.
[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.
Aritmetikai kifejezés kiértékelése.

Minden ARGUMENTUM kiértékelése aritmetikai kifejezésként. A kiértékelés
fix szélességű egészek esetén túlcsordulás-ellenőrzés nélkül történik,
de a nullával való osztás hibát okoz. Az alábbi operátorok soronként
azonos precedenciaszinten vannak. A precedencia az alábbi sorrendben
csökken:

[tab]id++, id--[tab]változó postfix-növelése, -csökkentése
[tab]++id, --id[tab]változó prefix-növelése, -csökkentése
[tab]-, +[tab][tab]mínusz, plusz előjel
[tab]!, ~[tab][tab]logikai és bitenkénti negált
[tab]**[tab][tab]hatványozás
[tab]*, /, %[tab][tab]szorzás, osztás, maradék
[tab]+, -[tab][tab]összeadás, kivonás
[tab]<<, >>[tab][tab]bitenkénti eltolás balra, jobb
[tab]<=, >=, <, >[tab]összehasonlítás
[tab]==, !=[tab][tab]egyenlőség, egyenlőtlenség
[tab]&[tab][tab]bitenkénti ÉS
[tab]^[tab][tab]bitenkénti kizáró vagy (XOR)
[tab]|[tab][tab]bitenkénti VAGY
[tab]&&[tab][tab]logikai ÉS
[tab]||[tab][tab]logikai VAGY
[tab]kif ? kif : kif
[tab][tab][tab]feltételes operátor
[tab]=, *=, /=, %=,
[tab]+=, -=, <<=, >>=,
[tab]&=, ^=, |= értékadás

Parancsértelmező-változók is lehetnek operandusok. A változók nevének
helyére értékük kerül (fix szélességű egészként) a kifejezésben. Nem
kell a változók „integer” jellemzőjét beállítani a használathoz.

Az operátorok a fenti precedencia szerint hajtódnak végre. A zárójeles
kifejezések precedenciája a legmagasabb – ez felülírja a szabályokat.

Kilépési kód:
Ha az utolsó argumentum 0, a let 1-gyel tér vissza, különben 0-val.
Translated by Gabor Kelemen
| msgid "" | "Evaluate arithmetic expressions.\n" | " \n" | " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" | " fixed-width integers with no check for overflow, though division by 0\n" | " is trapped and flagged as an error. The following list of operators is\n" | " grouped into levels of equal-precedence operators. The levels are listed\n" | " in order of decreasing precedence.\n" | " \n" | " \tid++, id--\tvariable post-increment, post-decrement\n" | " \t++id, --id\tvariable pre-increment, pre-decrement\n" | " \t-, +\t\tunary minus, plus\n" | " \t!, ~\t\tlogical and bitwise negation\n" | " \t**\t\texponentiation\n" | " \t*, /, %\t\tmultiplication, division, remainder\n" | " \t+, -\t\taddition, subtraction\n" | " \t<<, >>\t\tleft and right bitwise shifts\n" | " \t<=, >=, <, >\tcomparison\n" | " \t==, !=\t\tequality, inequality\n" | " \t&\t\tbitwise AND\n" | " \t^\t\tbitwise XOR\n" | " \t|\t\tbitwise OR\n" | " \t&&\t\tlogical AND\n" | " \t||\t\tlogical OR\n" | " \texpr ? expr : expr\n" | " \t\t\tconditional operator\n" | " \t=, *=, /=, %=,\n" | " \t+=, -=, <<=, >>=,\n" | " \t&=, ^=, |=\tassignment\n" | " \n" | " Shell variables are allowed as operands. The name of the variable\n" | " is replaced by its value (coerced to a fixed-width integer) within\n" | " an expression. The variable need not have its integer attribute\n" | " turned on to be used in an expression.\n" | " \n" | " Operators are evaluated in order of precedence. Sub-expressions in\n" | " parentheses are evaluated first and may override the precedence\n" | " rules above.\n" | " \n" | " Exit Status:\n" | " If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
Located in builtins.c:949
505.
Read a line from the standard input and split it into fields.

Reads a single line from the standard input, or from file descriptor FD
if the -u option is supplied. The line is split into fields as with word
splitting, and the first word is assigned to the first NAME, the second
word to the second NAME, and so on, with any leftover words assigned to
the last NAME. Only the characters found in $IFS are recognized as word
delimiters.

If no NAMEs are supplied, the line read is stored in the REPLY variable.

Options:
-a array[tab]assign the words read to sequential indices of the array
[tab][tab]variable ARRAY, starting at zero
-d delim[tab]continue until the first character of DELIM is read, rather
[tab][tab]than newline
-e[tab][tab]use Readline to obtain the line in an interactive shell
-i text[tab]Use TEXT as the initial text for Readline
-n nchars[tab]return after reading NCHARS characters rather than waiting
[tab][tab]for a newline, but honor a delimiter if fewer than NCHARS
[tab][tab]characters are read before the delimiter
-N nchars[tab]return only after reading exactly NCHARS characters, unless
[tab][tab]EOF is encountered or read times out, ignoring any delimiter
-p prompt[tab]output the string PROMPT without a trailing newline before
[tab][tab]attempting to read
-r[tab][tab]do not allow backslashes to escape any characters
-s[tab][tab]do not echo input coming from a terminal
-t timeout[tab]time out and return failure if a complete line of input is
[tab][tab]not read withint TIMEOUT seconds. The value of the TMOUT
[tab][tab]variable is the default timeout. TIMEOUT may be a
[tab][tab]fractional number. If TIMEOUT is 0, read returns success only
[tab][tab]if input is available on the specified file descriptor. The
[tab][tab]exit status is greater than 128 if the timeout is exceeded
-u fd[tab][tab]read from file descriptor FD instead of the standard input

Exit Status:
The return code is zero, unless end-of-file is encountered, read times out,
or an invalid file descriptor is supplied as the argument to -u.
[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.
Beolvas egy sort a szabványos bemenetről és mezőkre osztja.

Egy sort olvas be a szabványos bemenetről, vagy az FD fájlleíróból, ha
meg van adva a -u kapcsoló. A sor mezőkre lesz osztva a szódarabolás
szabályai szerint. Az első szó az elős NÉV nevű változó értéke lesz, a
második a másodiké stb. A szóelválasztó karaktereket az $IFS adja.

Ha nincs NÉV megadva, a beolvasott sor a $REPLY változóba kerül.

Kapcsolók:
-a tömb a beolvasott szavak TÖMB tömb 0-tól kezdve egymást követő
indexű elemeibe kerülnek
-d elvál ELVÁL első karakteréig olvasson az újsor helyett
-e a sor beolvasása Readline használatával interaktívan
-i szöveg SZÖVEG használata kezdeti szövegként (Readlinehoz)
-n szám SZÁM karakter beolvasása után térjen vissza, ne várjon egy
újsorra, de vegye figyelembe az elválasztót, ha kevesebb
mint SZÁM karaktert olvasott be az elválasztóig
-N szám pontosan akkor térjen vissza, ha SZÁM karaktert olva-
sott be, kivéve az EOF elérését és az időtúllépést, az el-
választó figyelmen kívül hagyva
-p prompt írja ki a PROMPT értékét olvasás előtt a sor elejére
-r tiltsa le a „\” kezdetű escape-ek használatát
-s terminálról érkező bemenet ne visszhangozzon
-t idő IDŐ leteltével jelezzen hibát, ha nem tudott egy teljes
sort beolvasni. A $TMOUT változó értéke az alapértelmezett
időkorlát. IDŐ lehet tizedestört is. Ha idő 0, csak akkor
lesz sikeres a beolvasás, ha az adott fájlleírón már ol-
vasható a bemenet. Időtúllépés esetén a kilépési kód >128
-u fd fájl beolvasása FD. fájlleíróból a szabványos bemenet he-
lyett

Kilépési kód:
A kilépési kód nulla, kivéve ha EOF-ot ér a beolvasás, időtúllépéskor
vagy érvénytelen fájlleíró megadásakor.
Translated by Mate Ory
Located in builtins.c:971
506.
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.
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.
Visszatér egy függvényből.

Egy függvény vagy egy „source”-olt parancsfájl adott N kilépési kóddal
való visszatérését okozza. Ha N nincs megadva, az utolsó parancs kilépési
kódjával tér vissza.

Kilépési kód:
N-nel tér vissza, kivéve ha nem függvényből vagy parancsfájlból akar
visszatérni – ekkor sikertelenséget jelez.
Translated by Gabor Kelemen
In upstream:
Visszatér egy függvényből.

Egy függvény vagy egy „source”-olt parancsfájl adott N kilépési kóddal
való visszatérését okozza. Ha N nincs megadva, az utolsó parancs kilé-
pési kódjával tér vissza.

Kilépési kód:
N-nel tér vissza, kivéve ha nem függvényből vagy parancsfájlból akar
visszatérni – ekkor sikertelenséget jelez.
Suggested by Mate Ory
Located in builtins.c:1042
507.
Set or unset values of shell options and positional parameters.

Change the value of shell attributes and positional parameters, or
display the names and values of shell variables.

Options:
-a Mark variables which are modified or created for export.
-b Notify of job termination immediately.
-e Exit immediately if a command exits with a non-zero status.
-f Disable file name generation (globbing).
-h Remember the location of commands as they are looked up.
-k All assignment arguments are placed in the environment for a
command, not just those that precede the command name.
-m Job control is enabled.
-n Read commands but do not execute them.
-o option-name
Set the variable corresponding to option-name:
allexport same as -a
braceexpand same as -B
emacs use an emacs-style line editing interface
errexit same as -e
errtrace same as -E
functrace same as -T
hashall same as -h
histexpand same as -H
history enable command history
ignoreeof the shell will not exit upon reading EOF
interactive-comments
allow comments to appear in interactive commands
keyword same as -k
monitor same as -m
noclobber same as -C
noexec same as -n
noglob same as -f
nolog currently accepted but ignored
notify same as -b
nounset same as -u
onecmd same as -t
physical same as -P
pipefail the return value of a pipeline is the status of
the last command to exit with a non-zero status,
or zero if no command exited with a non-zero status
posix change the behavior of bash where the default
operation differs from the Posix standard to
match the standard
privileged same as -p
verbose same as -v
vi use a vi-style line editing interface
xtrace same as -x
-p Turned on whenever the real and effective user ids do not match.
Disables processing of the $ENV file and importing of shell
functions. Turning this option off causes the effective uid and
gid to be set to the real uid and gid.
-t Exit after reading and executing one command.
-u Treat unset variables as an error when substituting.
-v Print shell input lines as they are read.
-x Print commands and their arguments as they are executed.
-B the shell will perform brace expansion
-C If set, disallow existing regular files to be overwritten
by redirection of output.
-E If set, the ERR trap is inherited by shell functions.
-H Enable ! style history substitution. This flag is on
by default when the shell is interactive.
-P If set, do not follow symbolic links when executing commands
such as cd which change the current directory.
-T If set, the DEBUG trap is inherited by shell functions.
-- Assign any remaining arguments to the positional parameters.
If there are no remaining arguments, the positional parameters
are unset.
- Assign any remaining arguments to the positional parameters.
The -x and -v options are turned off.

Using + rather than - causes these flags to be turned off. The
flags can also be used upon invocation of the shell. The current
set of flags may be found in $-. The remaining n ARGs are positional
parameters and are assigned, in order, to $1, $2, .. $n. If no
ARGs are given, all shell variables are printed.

Exit Status:
Returns success unless an invalid option is given.
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.
(no translation yet)
Located in builtins.c:1027
508.
Unset values and attributes of shell variables and functions.

For each NAME, remove the corresponding variable or function.

Options:
-f[tab]treat each NAME as a shell function
-v[tab]treat each NAME as a shell variable

Without options, unset first tries to unset a variable, and if that fails,
tries to unset a function.

Some variables cannot be unset; also see `readonly'.

Exit Status:
Returns success unless an invalid option is given or a NAME is read-only.
[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.
Parancsértelmező-változók, -függvények és -jellemzők törlése.

Minden NÉV nevű függvény vagy változó törlése.

Kapcsolók:
-f minden NÉV függvény
-v minden NÉV változó

Kapcsolók nélkül az unset először változót, sikertelenség esetén függ-
vényt próbál törölni.

Néhány változót nem lehet törölni, lásd „readonly”.

Kilépési kód:
Sikerrel tér vissza, kivéve ha hibás kapcsolót kap, vagy egy NÉV csak
olvasható.
Translated by Mate Ory
Located in builtins.c:1112
509.
Set export attribute for shell variables.

Marks each NAME for automatic export to the environment of subsequently
executed commands. If VALUE is supplied, assign VALUE before exporting.

Options:
-f[tab]refer to shell functions
-n[tab]remove the export property from each NAME
-p[tab]display a list of all exported variables and functions

An argument of `--' disables further option processing.

Exit Status:
Returns success unless an invalid option is given or NAME is invalid.
[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.
Parancsértelmező-változók exportálás attribútumának beállítása.

Minden NÉV automatikus környezeti változóvá exportálásra jelölése. Így
minden ezután kiadott parancs környezetében megjelenik. Ha az ÉRTÉK is
meg van adva, értékadás is történik.

Kapcsolók:
-f[tab]parancsértelmező-függvényekre vonatkozzon
-n[tab]export attribútum eltávolítása minden NÉVRŐL
-p[tab]összes exportált változó és függvény listázása

Egy „--” argumentum letiltja a további kapcsolóértelmezést.

Kilépési kód:
Sikerrel tér vissza, kivéve ha érvénytelen kapcsolót vagy NEVET kap.
Translated by Gabor Kelemen
In upstream:
Exportálásra jelöl egy parancsértelmező-változót.

Minden NÉV automatikus környezeti változóvá exportálásra jelölése. Így
minden ezután kiadott parancs környezetében megjelenik. Ha ÉRTÉK is
meg van adva, értékadás is történik.

Kapcsolók:
-f parancsértelmező-függvényekre vonatkozzon
-n export-jellemző eltávolítása minden NÉV-ről
-p összes exportált változó és függvény listázása

Egy „--” argumentum letiltja a további kapcsolóértelmezést.

Kilépési kód:
Sikerrel tér vissza, kivéve ha érvénytelen kapcsolót vagy NEV-et kap.
Suggested by Mate Ory
Located in builtins.c:1162
510.
Mark shell variables as unchangeable.

Mark each NAME as read-only; the values of these NAMEs may not be
changed by subsequent assignment. If VALUE is supplied, assign VALUE
before marking as read-only.

Options:
-a[tab]refer to indexed array variables
-A[tab]refer to associative array variables
-f[tab]refer to shell functions
-p[tab]display a list of all readonly variables and functions

An argument of `--' disables further option processing.

Exit Status:
Returns success unless an invalid option is given or NAME is invalid.
[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.
Parancsértelmező-változó változtathatatlannak jelölése.

Minden NÉV csak olvashatóvá állítása. A továbbiakban a NEV-ek értéke
értékadással nem változtatható. Ha ÉRTÉK is van megadva, az írásvéde-
lem bekapcsolása előtt értékadás is történik.

Kapcsolók:
-a indexelt tömbváltozókra vonatkozik
-A asszociatív tömbváltozókra vonatkozik
-f függvényekre vonatkozik
-p az összes csak olvasható változó és függvény listázása

Egy „--” argumentum letiltja a további kapcsolóértelmezést.

Kilépési kód:
Sikerrel tér vissza, kivéve ha érvénytelen kapcsolót vagy NEV-et kap.
Translated by Mate Ory
Located in builtins.c:1151
511.
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 $#.
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.
Pozicionális paraméterek eltolása.

Az $N+1, $N+2... pozicionális paraméterek átnevezése $1, $2... névre.
Ha nincs N megadva, értéke 1 lesz.

Kilépési kód:
Sikerrel tér vissza, kivéve ha N negatív vagy nagyobb mint $#.
Translated by Mate Ory
Located in builtins.c:1203
512.
Execute commands from a file in the current shell.

Read and execute commands from FILENAME in the current shell. The
entries in $PATH are used to find the directory containing FILENAME.
If any ARGUMENTS are supplied, they become the positional parameters
when FILENAME is executed.

Exit Status:
Returns the status of the last command executed in FILENAME; fails if
FILENAME cannot be read.
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.
Parancsok végrehajtása fájlból a futó parancsértelmezőben.

A FÁJLNÉV fájlból a parancsok beolvasása és végrehajtása. A fájlnév
megtalálásához a $PATH által felsorolt könyvtárakban keres. Az ARGUMENTUMOK
pozicionális paraméterek lesznek a FÁJLNÉV végrehajtásakor.

Kilépési kód:
A FÁJLNÉV utolsó parancsának kilépési kódjával tér vissza; sikertelenül,
ha a FÁJLNÉV nem olvasható.
Translated by Gabor Kelemen
In upstream:
Parancsok végrehajtása fájlból a futó parancsértelmezőben.

FÁJLNÉV fájlból a parancsok beolvasása és végrehajtása. A fájlnév meg-
találásához a $PATH által felsorolt könyvtárakban keres. Az ARGumentu-
mok pozicionális paraméterek lesznek FÁJLNÉV végrehajtásakor.

Kilépési kód:
Az utolsó FÁJLNÉV-beli parancs kilépési kódjával tér vissza; sikerte-
lenül, ha FÁJLNÉV nem olvasható.
Suggested by Mate Ory
Located in builtins.c:1215 builtins.c:1230
513.
Suspend shell execution.

Suspend the execution of this shell until it receives a SIGCONT signal.
Unless forced, login shells cannot be suspended.

Options:
-f[tab]force the suspend, even if the shell is a login shell

Exit Status:
Returns success unless job control is not enabled or an error occurs.
[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.
Parancsvégrehajtás felfüggesztése.

A futó parancsértelmező végrehajtásának felfüggesztése SIGCONT szignál
érkezéséig. Ha nincs erőltetve, bejelentkezési parancsértelmező nem
függeszthető fel.

Kapcsolók:
-f[tab]felfüggesztés erőltetése bejelentkezési parancsértelmezőn is

Kilépési kód:
Sikerrel tér vissza, kivéve ha a munkakezelés nem támogatott vagy hiba
történt.
Translated by Gabor Kelemen
In upstream:
Parancsvégrehajtás felfüggesztése.

A futó parancsértelmező végrehajtásának felfüggesztése SIGCONT szignál
érkezéséig. Ha nincs erőltetve, bejelentkező parancsértelmezőt nem
függeszthető fel.

Kapcsolók:
-f felfüggesztés erőltetése bejelentkező parancsértelmezőn is

Kilépési kód:
Sikerrel tér vissza, kivéve ha a munkakezelés nem támogatott vagy hiba
történt.
Suggested by Mate Ory
Located in builtins.c:1246
504513 of 547 results

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

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

Contributors to this translation: Balázs Úr, Gabor Kelemen, Gabor Kelemen, Gábor István, Karoly Gossler, Mate Ory, Molditz György, Robert Roth.