Browsing Catalan translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Catalan guidelines.
17 of 7 results
25.
Returns the context of the current subroutine call.

Without EXPR, returns
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/caller.def:136
518.
Set variable values and attributes.

Declare variables and give them attributes. If no NAMEs are given,
display the attributes and values of all variables.

Options:
-f[tab]restrict action or display to function names and definitions
-F[tab]restrict display to function names only (plus line number and
[tab][tab]source file when debugging)
-g[tab]create global variables when used in a shell function; otherwise
[tab][tab]ignored
-p[tab]display the attributes and value of each NAME

Options which set attributes:
-a[tab]to make NAMEs indexed arrays (if supported)
-A[tab]to make NAMEs associative arrays (if supported)
-i[tab]to make NAMEs have the `integer' attribute
-l[tab]to convert NAMEs to lower case on assignment
-n[tab]make NAME a reference to the variable named by its value
-r[tab]to make NAMEs readonly
-t[tab]to make NAMEs have the `trace' attribute
-u[tab]to convert NAMEs to upper case on assignment
-x[tab]to make NAMEs export

Using `+' instead of `-' turns off the given attribute.

Variables with the integer attribute have arithmetic evaluation (see
the `let' command) performed when the variable is assigned a value.

When used in a function, `declare' makes NAMEs local, as with the `local'
command. The `-g' option suppresses this behavior.

Exit Status:
Returns success unless an invalid option is supplied or a variable
assignment 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.
(no translation yet)
Located in builtins.c:490
521.
Write arguments to the standard output.

Display the ARGs, separated by a single space character and followed by a
newline, on the standard output.

Options:
-n[tab]do not append a newline
-e[tab]enable interpretation of the following backslash escapes
-E[tab]explicitly suppress interpretation of backslash escapes

`echo' interprets the following backslash-escaped characters:
\a[tab]alert (bell)
\b[tab]backspace
\c[tab]suppress further output
\e[tab]escape character
\E[tab]escape character
\f[tab]form feed
\n[tab]new line
\r[tab]carriage return
\t[tab]horizontal tab
\v[tab]vertical tab
\\[tab]backslash
\0nnn[tab]the character whose ASCII code is NNN (octal). NNN can be
[tab][tab]0 to 3 octal digits
\xHH[tab]the eight-bit character whose value is HH (hexadecimal). HH
[tab][tab]can be one or two hex digits

Exit Status:
Returns success unless a write 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.
(no translation yet)
Located in builtins.c:555
533.
Display information about builtin commands.

Displays brief summaries of builtin commands. If PATTERN is
specified, gives detailed help on all commands matching PATTERN,
otherwise the list of help topics is printed.

Options:
-d[tab]output short description for each topic
-m[tab]display usage in pseudo-manpage format
-s[tab]output only a short usage synopsis for each topic matching
[tab][tab]PATTERN

Arguments:
PATTERN[tab]Pattern specifiying a help topic

Exit Status:
Returns success unless PATTERN is not found or an invalid option is given.
[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:812
534.
Display or manipulate the history list.

Display the history list with line numbers, prefixing each modified
entry with a `*'. An argument of N lists only the last N entries.

Options:
-c[tab]clear the history list by deleting all of the entries
-d offset[tab]delete the history entry at position OFFSET.

-a[tab]append history lines from this session to the history file
-n[tab]read all history lines not already read from the history file
[tab][tab]and append them to the history list
-r[tab]read the history file and append the contents to the history
[tab][tab]list
-w[tab]write the current history to the history file

-p[tab]perform history expansion on each ARG and display the result
[tab][tab]without storing it in the history list
-s[tab]append the ARGs to the history list as a single entry

If FILENAME is given, it is used as the history file. Otherwise,
if HISTFILE has a value, that is used, else ~/.bash_history.

If the HISTTIMEFORMAT variable is set and not null, its value is used
as a format string for strftime(3) to print the time stamp associated
with each displayed history entry. No time stamps are printed otherwise.

Exit Status:
Returns success unless an invalid option is given 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.
(no translation yet)
Located in builtins.c:836
539.
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]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
[tab][tab]NCHARS 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
[tab][tab]delimiter
-p prompt[tab]output the string PROMPT without a trailing newline before
[tab][tab]attempting to read
-r[tab]do not allow backslashes to escape any characters
-s[tab]do not echo input coming from a terminal
-t timeout[tab]time out and return failure if a complete line of
[tab][tab]input is not read within TIMEOUT seconds. The value of the
[tab][tab]TMOUT variable is the default timeout. TIMEOUT may be a
[tab][tab]fractional number. If TIMEOUT is 0, read returns
[tab][tab]immediately, without trying to read any data, returning
[tab][tab]success only if input is available on the specified
[tab][tab]file descriptor. The exit status is greater than 128
[tab][tab]if the timeout is exceeded
-u fd[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
(in which case it's greater than 128), a variable assignment error occurs,
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.
(no translation yet)
Located in builtins.c:987
577.
Specify how arguments are to be completed by Readline.

For each NAME, specify how arguments are to be completed. If no options
are supplied, existing completion specifications are printed in a way that
allows them to be reused as input.

Options:
-p[tab]print existing completion specifications in a reusable format
-r[tab]remove a completion specification for each NAME, or, if no
[tab][tab]NAMEs are supplied, all completion specifications
-D[tab]apply the completions and actions as the default for commands
[tab][tab]without any specific completion defined
-E[tab]apply the completions and actions to "empty" commands --
[tab][tab]completion attempted on a blank line

When completion is attempted, the actions are applied in the order the
uppercase-letter options are listed above. The -D option takes
precedence over -E.

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.
(no translation yet)
Located in builtins.c:1953
17 of 7 results

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

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

Contributors to this translation: Ernest Adrogué Calveras, J., JoanColl, Montxo Vicente i Sempere, Santiago Lizardo.