Browsing German translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and German guidelines.
531540 of 547 results
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.
Erzeugt einen Unterprozess mit dem Namen NAME.

Führt KOMMANDO asynchron aus, mit der Standardeingabe und -ausgabe des
Kommandos, welches über eine Weiterleitung (Pipe) mit den Datei-
Deskriptoren verbunden ist, die den Indices 0 und 1 der Feldvariable NAME
in der ausführenden Shell zugewiesen sind. Der Standardname ist »COPROC«.

Rückgabewert:
Gibt den Rückgabewert von KOMMANDO zurück.
Translated by Carsten Gerlach
Reviewed by Phillip Sz
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.
Definiert Shell-Funktionen.

Definiert eine Shell-Funktion mit dem Namen NAME. Wenn sie als einfaches
Kommando aufgerufen wird, führt NAME die KOMMANDOS im Kontext der
aufrufenden Shell aus. Wenn NAME aufgerufen wird, werden die Argumente
der Funktion als $1...$n überreicht und der Name der Funktion in $FUNCNAME
gespeichert.

Rückgabewert:
Gibt »Erfolg« zurück, außer NAME ist schreibgeschützt.
Translated by Carsten Gerlach
Reviewed by Phillip Sz
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.
Gruppiert Kommandos als Einheit.

Führt einen Satz von Kommandos in einer Gruppe aus. Dies ist ein Weg,
einen ganzen Satz von Kommandos umzuleiten.

Rückgabewert:
Gibt den Status des zuletzt ausgeführten Kommandos zurück.
Translated by Carsten Gerlach
Reviewed by Phillip Sz
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.
(no translation yet)
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.
Wertet arithmetische Ausdrücke aus.

Der Ausdruck wird nach den Regeln für arithmetische
Berechnungen ausgewertet. Diese Schreibweise entspricht "let
Ausdruck".

Rückgabewert:
Gibt »1« zurück, wenn die Auswertung des letzten Arguments Null
ergibt, sonst »0«.
Translated by Nils Naumann
(( ))
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.
(no translation yet)
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]Versionsnummer der Bash.
CDPATH[tab]Eine durch Doppelpunkte getrennte Liste von
Verzeichnissen, die durchsucht werden, wenn das
Argument von `cd' nicht im aktuellen Verzeichnis
gefunden wird.
GLOBIGNORE Eine durch Doppelpunkte getrennte Liste von
Dateinamenmustern, die für die Dateinamensergänzung
ignoriert werden.
HISTFILE[tab]Datei, die den Kommandozeilenspeicher enthält.
HISTFILESIZE[tab]Maximale Zeilenanzahl, dieser Datei.
HISTSIZE[tab]Maximale Anzahl von Zeilen, auf die der
Historymechanismus der Shell zurückgreifen kann.
HOME[tab]Heimatverzeichnis des aktuellen Benutzers.
HOSTNAME Der aktuelle Rechnername.
HOSTTYPE[tab]CPU-Typ des aktuellen Rechners.
IGNOREEOF[tab]Legt die Reaktion der Shell auf ein EOF-Zeichen fest.
Wenn die Variable eine ganze Zahl enthält, wird diese
Anzahl EOF Zeichen (Ctrl-D) abgewartet, bis die Shell
verlassen wird. Der Vorgabewert ist 10. Ist IGNOREEOF
nicht gesetzt, signalisiert EOF das Ende der Eingabe.
MACHTYPE Eine Zeichenkette die das aktuell laufende System beschreibt.
MAILCHECK[tab]Zeit in s, nach der nach E-Mail gesehen wird.
MAILPATH[tab]Eine durch Doppelpunkt getrennte Liste von Dateinamen,
die nach E-Mail durchsucht werden.
OSTYPE[tab]Unix Version, auf der die Bash gegenwärtig läuft.
PATH[tab]Durch Doppelpunkt getrennte Liste von Verzeichnissen,
die nach Kommandos durchsucht werden.
PROMPT_COMMAND[tab]Kommando, das vor der Anzeige einer primären
Eingabeaufforderung (PS1) ausgeführt wird.
PS1 Zeichenkette, die die primäre
Eingabeaufforderung enthält.
PS2 Zeichenkette, die die sekundäre
Eingabeaufforderung enthält.
PWD Der vollständige aktuelle Verzeichnisname.
SHELLOPTS Durch Doppelpunkt getrennte Liste der aktiven
Shell Optionen.
TERM[tab]Name des aktuellen Terminaltyps.
auto_resume Ein Wert ungleich Null bewirkt, dass ein einzelnes
Kommando auf einer Zeile zunächst in der Liste
gegenwärtig gestoppter Jobs gesucht und dieser in den
Vordergrund geholt wird. `exact' bewirkt, dass das
Kommando genau dem Kommando in der Liste der
gestoppten Jobs entsprechen muss. Wenn die Variable den
Wert `substring' enthält, muss das Kommando einem
Substring der Jobbezeichnung entsprechen. Bei einem
anderen Wert müssen die ersten Zeichen übereinstimmen.
histchars Zeichen, die die Befehlswiederholung und die
Schnellersetzung steuern. An erster Stelle steht
das Befehlswiederholungszeichen (normalerweise
`!'); an zweiter das `Schnell-Ersetzen-Zeichen'
(normalerweise `^'). Das dritte Zeichen ist das
`Kommentarzeichen' (normalerweise `#').
HISTIGNORE Eine durch Doppelpunkt getrennte Liste von
Mustern, welche die in der
Befehlswiederholungsliste zu speichernden
Kommandos angibt.
Translated by Nils Naumann
Reviewed by Torsten Franz
In upstream:
BASH_VERSION[tab]Versionsnummer der Bash.
CDPATH[tab]Eine durch Doppelpunkte getrennte Liste von
Verzeichnissen, die durchsucht werden, wenn das
Argument von `cd' nicht im aktuellen Verzeichnis
gefunden wird.
GLOBIGNORE Eine durch Doppelpunkte getrennte Liste von
Dateinamenmustern, die für die Dateinamensergänzung
ignoriert werden.
HISTFILE[tab]Datei, die den Kommandozeilenspeicher enthält.
HISTFILESIZE[tab]Maximale Zeilenanzahl, dieser Datei.
HISTSIZE[tab]Maximale Anzahl von Zeilen, auf die der
Historymechanismus der Shell zurückgreifen kann.
HOME[tab]Heimatverzeichnis des aktuellen Benutzers.
HOSTNAME Der aktuelle Rechnername.
HOSTTYPE[tab]CPU-Typ des aktuellen Rechners.
IGNOREEOF[tab]Legt die Reaktion der Shell auf ein EOF-Zeichen fest.
Wenn die Variable eine ganze Zahl enthält, wird diese
Anzahl EOF Zeichen (Ctrl-D) abgewartet, bis die Shell
verlassen wird. Der Vorgabewert ist 10. Ist IGNOREEOF
nicht gesetzt, signalisiert EOF das Ende der Eingabe.
MACHTYPE Eine Zeichenkette die das aktuell laufende System beschreibt.
MAILCHECK[tab]Zeit in s, nach der nach E-Mail gesehen wird.
MAILPATH[tab]Eine durch Doppelpunkt getrennte Liste von Dateinamen,
die nach E-Mail durchsucht werden.
OSTYPE[tab]Unix Version, auf der die Bash gegenwärtig läuft.
PATH[tab]Durch Doppelpunkt getrennte Liste von Verzeichnissen,
die nach Kommandos durchsucht werden.
PROMPT_COMMAND[tab]Kommando, das vor der Anzeige einer primären
Eingabeaufforderung (PS1) ausgeführt wird.
PS1 Zeichenkette, die die primäre
Eingabeaufforderung enthält.
PS2 Zeichenkette, die die sekundäre
Eingabeaufforderung enthält.
PWD Der vollständige aktuelle Verzeichnisname.
SHELLOPTS Durch Doppelpunkt getrennte Liste der aktiven
Shell Optionen.
TERM[tab]Name des aktuellen Terminaltyps.
auto_resume Ein Wert ungleich Null bewirkt, daß ein einzelnes
Kommando auf einer Zeile zunächst in der Liste
gegenwärtig gestoppter Jobs gesucht und dieser in den
Vordergrund geholt wird. `exact' bewirkt, daß das
Kommando genau dem Kommando in der Liste der
gestoppten Jobs entsprechen muß. Wenn die Variable den
Wert `substring' enthält, muß das Kommando einem
Substring der Jobbezeichnung entsprechen. Bei einem
anderen Wert müssen die ersten Zeichen übereinstimmen.
histchars Zeichen, die die Befehlswiederholung und die
Schnellersetzung steuern. An erster Stelle steht
das Befehlswiederholungszeichen (normalerweise
`!'); an zweiter das `Schnell-Ersetzen-Zeichen'
(normalerweise `^'). Das dritte Zeichen ist das
`Kommentarzeichen' (normalerweise `#').
HISTIGNORE Eine durch Doppelpunkt getrennte Liste von
Mustern, welche die in der
Befehlswiederholungsliste zu speichernden
Kommandos angibt.
Suggested by Nils Naumann
variable_help
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.
Fügt ein Verzeichnis dem Stapel hinzu.

Legt ein Verzeichnisnamen auf den Verzeichnisstapel oder rotiert
diesen so,daß das Arbeitsverzeichnis auf der Spitze des Stapels
liegt. Ohne angegebene Argumente werden die obersten zwei
Verzeichnisse auf dem Stapel getauscht.

Optionen:
-n[tab]unterdrückt das Wechseln in das Verzeichnis beim Hinzufügen
zum Stapel, so daß nur der Stapel verändert wird.

Argumente:
+N[tab]Rotiert den Stapel so, daß das N'te Verzeichnis
(angezeigt von `dirs',gezählt von links) sich an der Spitze des
Stapels befindet.

-N[tab]Rotiert den Stapel so, daß das N'te Verzeichnis (angezeigt von
-`dirs',gezählt von rechts) sich an der Spitze des Stapels
-befindet.


DIR[tab]Legt DIR auf die Spitze des Verzeichnisstapels und wechselt dorthin.

Der Verzeichnisstapel kann mit dem Kommando `dirs' angezeigt
werden.

Rückgabewert:
Gibt Erfolg zurück, außer wenn ein ungültiges Argument angegeben
wurde oder der Verzeichniswechsel nicht erfolgreich war.
Translated by Nils Naumann
pushd
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.
Entfernt Einträge vom Verzeichnisstapel.

Entfernt Einträge vom Verzeichnisstapel. Ohne Argumente wird die
Spitze des Stapels entfernt und in das Verzeichnis gewechselt, das
dann an der Spitze steht.

Optionen:
-n[tab]Entfernt nur den Verzeichniseintrag und wechselt nicht
[tab][tab][tab]das Verzeichnis.

Argumente:
+N[tab]Entfernt den N-ten Eintrag von links, gezählt von Null, aus der
[tab][tab][tab]von »dirs« anzeigten Liste. Beispielsweise entfernen »popd +0«
[tab][tab][tab]den ersten und »popd +1« den zweiten Verzeichniseintrag.

-N[tab]Entfernt den N-ten Eintrag von rechts, gezählt von Null,
[tab][tab][tab]aus der von »dirs« angezeigten Liste. Beispielsweise entfernen
[tab][tab][tab]»popd -0« den letzten und »popd -1« den vorletzten
[tab][tab][tab]Verzeichniseintrag.

Mit »dirs« kann der Verzeichnisstapel angezeigt werden.

Rückgabewert:
Gibt 0 zurück, außer wenn ein ungültiges Argument angegeben
wurde oder der Verzeichniswechsel nicht erfolgreich war.
Translated by Carsten Gerlach
Reviewed by Phillip Sz
In upstream:
Entfernt Einträge vom Verzeichnisstapel.

Entfernt Einträge vom Verzeichnisstapel. Ohne Argumente wird die
Spitze des Stapels entfernt und in das Verzeichnis gewechselt, das
dann an der Spitze steht.

Optionen:
-n[tab]Entfernt nur den Verzeichniseintrag und wechselt nicht
[tab]das Verzeichnis.

Argumente:
+N[tab]Entfernt den N-ten Eintrag von links, gezählt von [tab]
Null, aus der von »dirs« anzeigten Liste. Beispielsweise
entfernen »popd +0« den ersten und »popd +1« den zweiten
Verzeichniseintrag.

-N[tab]Entfernt den N-ten Eintrag von rechts, gezählt von Null,
[tab]aus der von »dirs« angeigten Liste. Beispielsweise entfernen
»popd -0« den letzten und »popd -1« den vorletzten
Verzeichniseintrag.

Mit »dirs« kann der Verzeichnisstapel angezeigt werden.

Rückgabewert:
Gibt 0 zurück, außer wenn ein ungültiges Argument angegeben
wurde oder der Verzeichniswechsel nicht erfolgreich war.
Suggested by Hendrik Schrieber
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.
Zeigt den Verzeichnisstapel an.

Zeigt die Liste der gegenwärtig gespeicherten Verzeichnisse.
Diese werden mit dem `pushd' Kommando eingetragen und mit dem
`popd' Kommando ausgelesen.

Optionen:
-c Löscht den Verzeichnisstapel.
-l Keine Abkürzung für das Heimatverzeichnis durch die
Tilde (~).
-p Ausgabe von einem Eintrag pro Zeile.
-v Ausgabe von einem Eintrag pro Zeile mit Angabe der
Position im Stapel<

Argumente:
+N Gibt das N'te Element von links der Liste aus, die
ohne Argumente ausgegeben wird. Die Zählung beginnt
bei 0.
-N Gibt das N'te Element von rechts der Liste aus, die
ohne Argumente ausgegeben wird. Die Zählung beginnt
bei 0.

Rückgabewert:
Gibt Erfolg zurück, außer bei einer ungültigen Option oder wenn
ein Fehler auftritt.
Translated by Nils Naumann
dirs
Located in builtins.c:1834
531540 of 547 results

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

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

Contributors to this translation: Carsten Gerlach, Christoph Gerlach, Daniel Winzen, Dennis Baudys, Dr. Peter Netz, E. Frank Sandig, Eduard Gotwig, Gregor Santner, Hendrik Schrieber, Henning Eggers, Heyko O., Holger Arnold, Jonathan Kolberg, Julian Schnidder, Julius Bloch, Keksdosenmann, Marcel Schmücker, Maximilian Müller, Nils Naumann, Phillip Sz, Ralph Janke, Robin, Samuel, Sven Seelbach, Till Freier, Tim Schulze-Hartung, Tobias Bannert, Wolfgang Pilz, dessert, dynaMIX, mnemnonic, mrtonik, shark.