From b35866a2891a9b069e37ca5684d4309c0391e261 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Fri, 27 Jun 2025 14:07:28 -0400 Subject: [PATCH] updated translations; documentation updates; update copyright dates --- CWRU/CWRU.chlog | 4 +- README | 12 +- bashline.c | 2 +- builtins/command.def | 2 +- builtins/evalstring.c | 2 +- builtins/kill.def | 2 +- builtins/mkbuiltins.c | 2 +- builtins/read.def | 2 +- builtins/setattr.def | 2 +- builtins/umask.def | 2 +- general.c | 2 +- general.h | 2 +- include/posixtime.h | 2 +- lib/readline/vi_mode.c | 1 + pathexp.c | 12 ++ po/et.gmo | Bin 25593 -> 27510 bytes po/et.po | 440 ++++++++++++++--------------------------- po/it.gmo | Bin 190493 -> 190431 bytes po/it.po | 144 +++++++------- support/bashversion.c | 2 +- support/printenv.c | 2 +- support/recho.c | 2 +- variables.c | 2 +- variables.h | 2 +- 24 files changed, 266 insertions(+), 379 deletions(-) diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index 6cc91c89..a868dc5c 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -11285,4 +11285,6 @@ general.c Inspired by discussion with Robert Elz and Koichi Murase - +parse.y + - read_token_word: set dollar_present if we see <( or >), backing + out change from 2/4/2023 diff --git a/README b/README index 9bcf5705..b2371539 100644 --- a/README +++ b/README @@ -16,7 +16,7 @@ from the POSIX spec and a description of the Bash `posix mode'. There are some user-visible incompatibilities between this version of Bash and previous widely-distributed versions, bash-5.0, bash-5.1, -and bash-5.2. The COMPAT file has the details. The NEWS file tersely +and bash-5.2. The COMPAT file has the details. The NEWS file tersely lists features that are new in this release. Bash is free software, distributed under the terms of the [GNU] General @@ -62,7 +62,10 @@ time as bash. The discussion list `bug-bash@gnu.org' often contains information about new ports of Bash, or discussions of new features or behavior changes that people would like. This mailing list is also available -as a usenet newsgroup: gnu.bash.bug. +as a usenet newsgroup: gnu.bash.bug. + +The `help-bash@gnu.org' mailing list is used for questions about +using bash. When you send a bug report, please use the `bashbug' program that is built at the same time as bash. If bash fails to build, try building @@ -102,6 +105,11 @@ https://github.com/scop/bash-completion. If it's not a package from your vendor, you may install the included version. +There are a number of example dynamically loadable builtin commands in the +examples/loadables subdirectory. These are built and installed when bash is +installed. If you want to test or experiment with these builtins before +installing bash, you can run `make loadables' to build them. + Enjoy! Chet Ramey diff --git a/bashline.c b/bashline.c index fb8aeea2..2b4da758 100644 --- a/bashline.c +++ b/bashline.c @@ -1,6 +1,6 @@ /* bashline.c -- Bash's interface to the readline library. */ -/* Copyright (C) 1987-2024 Free Software Foundation, Inc. +/* Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/command.def b/builtins/command.def index e365fb80..21cc982b 100644 --- a/builtins/command.def +++ b/builtins/command.def @@ -1,7 +1,7 @@ This file is command.def, from which is created command.c. It implements the builtin "command" in Bash. -Copyright (C) 1987-2023 Free Software Foundation, Inc. +Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/evalstring.c b/builtins/evalstring.c index d962f825..2b15b9dd 100644 --- a/builtins/evalstring.c +++ b/builtins/evalstring.c @@ -1,6 +1,6 @@ /* evalstring.c - evaluate a string as one or more shell commands. */ -/* Copyright (C) 1996-2024 Free Software Foundation, Inc. +/* Copyright (C) 1996-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/kill.def b/builtins/kill.def index 7b16cf49..66ed752e 100644 --- a/builtins/kill.def +++ b/builtins/kill.def @@ -1,7 +1,7 @@ This file is kill.def, from which is created kill.c. It implements the builtin "kill" in Bash. -Copyright (C) 1987-2023 Free Software Foundation, Inc. +Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/mkbuiltins.c b/builtins/mkbuiltins.c index efa6314d..c4cacdfc 100644 --- a/builtins/mkbuiltins.c +++ b/builtins/mkbuiltins.c @@ -1,7 +1,7 @@ /* mkbuiltins.c - Create builtins.c, builtext.h, and builtdoc.c from a single source file called builtins.def. */ -/* Copyright (C) 1987-2023 Free Software Foundation, Inc. +/* Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/read.def b/builtins/read.def index 3b13385f..5135e2b1 100644 --- a/builtins/read.def +++ b/builtins/read.def @@ -1,7 +1,7 @@ This file is read.def, from which is created read.c. It implements the builtin "read" in Bash. -Copyright (C) 1987-2024 Free Software Foundation, Inc. +Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/setattr.def b/builtins/setattr.def index f4c36203..b4313197 100644 --- a/builtins/setattr.def +++ b/builtins/setattr.def @@ -1,7 +1,7 @@ This file is setattr.def, from which is created setattr.c. It implements the builtins "export" and "readonly", in Bash. -Copyright (C) 1987-2023 Free Software Foundation, Inc. +Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/umask.def b/builtins/umask.def index 2172d5a8..67d1c105 100644 --- a/builtins/umask.def +++ b/builtins/umask.def @@ -1,7 +1,7 @@ This file is umask.def, from which is created umask.c. It implements the builtin "umask" in Bash. -Copyright (C) 1987-2022 Free Software Foundation, Inc. +Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/general.c b/general.c index f8469c5d..aeffda5c 100644 --- a/general.c +++ b/general.c @@ -1,6 +1,6 @@ /* general.c -- Stuff that is used by all files. */ -/* Copyright (C) 1987-2024 Free Software Foundation, Inc. +/* Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/general.h b/general.h index c73758c2..5b1eac08 100644 --- a/general.h +++ b/general.h @@ -1,6 +1,6 @@ /* general.h -- defines that everybody likes to use. */ -/* Copyright (C) 1993-2024 Free Software Foundation, Inc. +/* Copyright (C) 1993-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/include/posixtime.h b/include/posixtime.h index 692f6ea4..883fba7c 100644 --- a/include/posixtime.h +++ b/include/posixtime.h @@ -1,6 +1,6 @@ /* posixtime.h -- wrapper for time.h, sys/times.h mess. */ -/* Copyright (C) 1999-2022 Free Software Foundation, Inc. +/* Copyright (C) 1999-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/lib/readline/vi_mode.c b/lib/readline/vi_mode.c index 762a214e..4028c08e 100644 --- a/lib/readline/vi_mode.c +++ b/lib/readline/vi_mode.c @@ -1833,6 +1833,7 @@ _rl_vi_callback_char_search (_rl_callback_generic_arg *data) if (c <= 0) { + /* XXX - unset _rl_callback_func here? */ RL_UNSETSTATE (RL_STATE_CHARSEARCH); return -1; } diff --git a/pathexp.c b/pathexp.c index 01f47a28..80d7bbae 100644 --- a/pathexp.c +++ b/pathexp.c @@ -391,6 +391,18 @@ convert_to_backslash: } else if (pathname[i] == '\\' && (qflags & QGLOB_REGEXP)) last_was_backslash = 1; +#if 0 + /* TAG:bash-5.4 Takaaki Konno 6/23/2025 */ + else if (pathname[i] == CTLNUL && (qflags & QGLOB_CVTNULL) + && (qflags & QGLOB_CTLESC)) + /* If we have an unescaped CTLNUL in the string, and QFLAGS says + we want to remove those (QGLOB_CVTNULL) but the string is quoted + (QGLOB_CVTNULL and QGLOB_CTLESC), we need to remove it. This can + happen when the pattern contains a quoted null string adjacent + to non-null characters, and it is not removed by quote removal. */ + continue; +#endif + temp[j++] = pathname[i]; } endpat: diff --git a/po/et.gmo b/po/et.gmo index efeaaaf64854afbf17841a82a4deec8ab5cf89f9..cf2bdebb3db2ed8331f4476b46f29a92ce290015 100644 GIT binary patch delta 8998 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 a*!3Ah&YT{zh5qFP{i)Zbwlm%6+4&y|x-t3y delta 7248 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 Ap8x;= diff --git a/po/et.po b/po/et.po index 7a82c7b2..35f3f729 100644 --- a/po/et.po +++ b/po/et.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: bash 5.3-rc1\n" +"Project-Id-Version: bash 5.3-rc2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-04-22 09:37-0400\n" -"PO-Revision-Date: 2025-04-09 01:11+0300\n" +"PO-Revision-Date: 2025-06-24 12:49+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" "Language: et\n" @@ -31,8 +31,7 @@ msgstr "%s: eemaldan nameref atribuudi" #: arrayfunc.c:493 builtins/declare.def:920 #, c-format msgid "%s: cannot convert indexed to associative array" -msgstr "" -"%s: indekseeritud massiivi ei saa teisendada assotsiatiivseks massiiviks" +msgstr "%s: indekseeritud massiivi ei saa teisendada assotsiatiivseks massiiviks" #: arrayfunc.c:789 #, c-format @@ -42,8 +41,7 @@ msgstr "%s: mitte-numbrilisele indeksile ei saa omistada" #: arrayfunc.c:841 #, c-format msgid "%s: %s: must use subscript when assigning associative array" -msgstr "" -"%s: %s: assotsatsiivse massiivi omistamisel tuleb kasutada massiivi indeksit" +msgstr "%s: %s: assotsatsiivse massiivi omistamisel tuleb kasutada massiivi indeksit" #: bashhist.c:464 msgid "cannot create" @@ -374,7 +372,7 @@ msgstr "%s: funktsioon ei ole muudetav" #: builtins/declare.def:556 builtins/declare.def:843 #, c-format msgid "%s: reference variable cannot be an array" -msgstr "" +msgstr "%s: viidatav muutuja ei saa olla masiiv" #: builtins/declare.def:567 variables.c:3346 #, c-format @@ -389,7 +387,7 @@ msgstr "%s: tsükliline nime viide" #: builtins/declare.def:576 builtins/declare.def:850 builtins/declare.def:859 #, c-format msgid "`%s': invalid variable name for name reference" -msgstr "" +msgstr "`%s': vigane muutuja nimi nime viitele" #: builtins/declare.def:908 #, c-format @@ -399,8 +397,7 @@ msgstr "%s: masiivi muutujaid ei saa nii kustutada" #: builtins/declare.def:914 #, c-format msgid "%s: cannot convert associative to indexed array" -msgstr "" -"%s: assotsiatiivset massiivi ei saa teisendada indekseeritud massiiviks" +msgstr "%s: assotsiatiivset massiivi ei saa teisendada indekseeritud massiiviks" #: builtins/declare.def:943 #, c-format @@ -419,7 +416,7 @@ msgstr "jagatud objekti %s ei saa avada: %s" #: builtins/enable.def:408 #, c-format msgid "%s: builtin names may not contain slashes" -msgstr "" +msgstr "%s: sisseehitatud nimed ei saa sisaldada kaldkriipse" #: builtins/enable.def:423 #, c-format @@ -469,7 +466,7 @@ msgstr "kahendfaili ei õnnestu käivitada" #: builtins/evalstring.c:478 #, c-format msgid "%s: ignoring function definition attempt" -msgstr "" +msgstr "%s: ignoreerin katset defineerida funktsioon" #: builtins/exec.def:158 builtins/exec.def:160 builtins/exec.def:249 msgid "cannot execute" @@ -556,11 +553,8 @@ msgstr "" #: builtins/help.def:185 #, c-format -msgid "" -"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "" -"`%s' sobiv abiinfo teema puudub. Proovige `help help' või `man -k %s' või " -"`info %s'." +msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "`%s' sobiv abiinfo teema puudub. Proovige `help help' või `man -k %s' või `info %s'." #: builtins/help.def:214 msgid "cannot open" @@ -729,12 +723,10 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown " -"by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown " -"by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown by\n" "\tdirs when invoked without options, starting with zero." msgstr "" @@ -969,12 +961,12 @@ msgstr "\ataimout sisendi ootamisel: auto-logout\n" #: execute_cmd.c:606 msgid "cannot redirect standard input from /dev/null" -msgstr "" +msgstr "/dev/null ei saa standard sisendiks seada" #: execute_cmd.c:1412 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" -msgstr "" +msgstr "TIMEFORMAT: `%c': vigane vormingu sümbol" #: execute_cmd.c:2493 #, c-format @@ -1087,7 +1079,7 @@ msgstr "" #: expr.c:1470 expr.c:1491 msgid "++: assignment requires lvalue" -msgstr "" +msgstr "++: omistamine nõuab vasakväärtust" #: expr.c:1509 msgid "arithmetic syntax error: invalid arithmetic operator" @@ -1096,7 +1088,7 @@ msgstr "aritmeetika süntaksi viga: vigane aritmeetiline operaator" #: expr.c:1532 #, c-format msgid "%s%s%s: %s (error token is \"%s\")" -msgstr "" +msgstr "%s%s%s: %s (vigane märk on \"%s\")" #: expr.c:1595 msgid "invalid arithmetic base" @@ -1439,9 +1431,7 @@ msgstr "" #: parse.y:2572 #, c-format -msgid "" -"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " -"truncated" +msgid "shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncated" msgstr "" #: parse.y:2864 @@ -2001,9 +1991,7 @@ msgid "$%s: cannot assign in this way" msgstr "$%s: sedasi ei saa omistada" #: subst.c:10855 -msgid "" -"future versions of the shell will force evaluation as an arithmetic " -"substitution" +msgid "future versions of the shell will force evaluation as an arithmetic substitution" msgstr "" #: subst.c:11563 @@ -2065,10 +2053,8 @@ msgstr "run_pending_traps: halb väärtus muutujas trap_list[%d]: %p" #: trap.c:459 #, c-format -msgid "" -"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "" -"run_pending_traps: signaali käsitleja on SIG_DFL, saadan %d (%s) iseendale" +msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "run_pending_traps: signaali käsitleja on SIG_DFL, saadan %d (%s) iseendale" #: trap.c:592 #, c-format @@ -2163,17 +2149,12 @@ msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: ühilduv väärtus on piiridest väljas" #: version.c:50 -#, fuzzy msgid "Copyright (C) 2025 Free Software Foundation, Inc." -msgstr "Autoriõigus © 2024 Free Software Foundation, Inc." +msgstr "Autoriõigus © 2025 Free Software Foundation, Inc." #: version.c:51 -msgid "" -"License GPLv3+: GNU GPL version 3 or later \n" -msgstr "" -"Litsents GPLv3+: GNU GPL versioon 3 või uuem \n" +msgid "License GPLv3+: GNU GPL version 3 or later \n" +msgstr "Litsents GPLv3+: GNU GPL versioon 3 või uuem \n" #: version.c:90 #, c-format @@ -2217,9 +2198,7 @@ msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] nimi [nimi ...]" #: builtins.c:53 -msgid "" -"bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" -"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgid "bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" msgstr "" #: builtins.c:56 @@ -2251,18 +2230,12 @@ msgid "command [-pVv] command [arg ...]" msgstr "" #: builtins.c:78 -msgid "" -"declare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] " -"[name ...]" +msgid "declare [-aAfFgiIlnrtux] [name[=value] ...] or declare -p [-aAfFilnrtux] [name ...]" msgstr "" #: builtins.c:80 -msgid "" -"typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] " -"[name ...]" -msgstr "" -"typeset [-aAfFgiIlnrtux] nimi[=väärtus] ... või typeset -p [-aAfFilnrtux] " -"[nimi ...]" +msgid "typeset [-aAfFgiIlnrtux] name[=value] ... or typeset -p [-aAfFilnrtux] [name ...]" +msgstr "typeset [-aAfFgiIlnrtux] nimi[=väärtus] ... või typeset -p [-aAfFilnrtux] [nimi ...]" #: builtins.c:82 msgid "local [option] name[=value] ..." @@ -2321,9 +2294,7 @@ msgid "help [-dms] [pattern ...]" msgstr "help [-dms] [muster ...]" #: builtins.c:123 -msgid "" -"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " -"[arg...]" +msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" msgstr "" #: builtins.c:127 @@ -2335,9 +2306,7 @@ msgid "disown [-h] [-ar] [jobspec ... | pid ...]" msgstr "" #: builtins.c:134 -msgid "" -"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " -"[sigspec]" +msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" msgstr "" #: builtins.c:136 @@ -2345,14 +2314,12 @@ msgid "let arg [arg ...]" msgstr "" #: builtins.c:138 -msgid "" -"read [-Eers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p " -"prompt] [-t timeout] [-u fd] [name ...]" +msgid "read [-Eers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" msgstr "" #: builtins.c:140 msgid "return [n]" -msgstr "" +msgstr "return [n]" #: builtins.c:142 msgid "set [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]" @@ -2360,16 +2327,15 @@ msgstr "" #: builtins.c:144 msgid "unset [-f] [-v] [-n] [name ...]" -msgstr "" +msgstr "unset [-f] [-v] [-n] [nimi ...]" #: builtins.c:146 -#, fuzzy msgid "export [-fn] [name[=value] ...] or export -p [-f]" -msgstr "alias [-p] [nimi[=väärtus] ... ]" +msgstr "export [-fn] [nimi[=väärtus] ...] või export -p [-f]" #: builtins.c:148 msgid "readonly [-aAf] [name[=value] ...] or readonly -p" -msgstr "" +msgstr "readonly [-aAf] [nimi[=väärtus] ...] või readonly -p" #: builtins.c:150 msgid "shift [n]" @@ -2397,7 +2363,7 @@ msgstr "[ argument... ]" #: builtins.c:166 msgid "trap [-Plp] [[action] signal_spec ...]" -msgstr "" +msgstr "trap [-Plp] [[tegevus] signaali_kirjeldus ...]" #: builtins.c:168 msgid "type [-afptP] name [name ...]" @@ -2413,7 +2379,7 @@ msgstr "umask [-p] [-S] [mood]" #: builtins.c:177 msgid "wait [-fn] [-p var] [id ...]" -msgstr "" +msgstr "wait [-fn] [-p muutuja] [id ...]" #: builtins.c:181 msgid "wait [pid ...]" @@ -2421,15 +2387,15 @@ msgstr "wait [pid ...]" #: builtins.c:184 msgid "! PIPELINE" -msgstr "" +msgstr "! TORULIIN" #: builtins.c:186 msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" -msgstr "" +msgstr "for NIMI [in SÕNAD ... ] ; do KÄSUD; done" #: builtins.c:188 msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" -msgstr "" +msgstr "for (( avaldis1; avaldis2; avaldis3 )); do KÄSUD; done" #: builtins.c:190 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" @@ -2437,16 +2403,14 @@ msgstr "" #: builtins.c:192 msgid "time [-p] pipeline" -msgstr "" +msgstr "time [-p] toruliin" #: builtins.c:194 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "" #: builtins.c:196 -msgid "" -"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " -"COMMANDS; ] fi" +msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" msgstr "" #: builtins.c:198 @@ -2467,7 +2431,7 @@ msgstr "" #: builtins.c:206 msgid "{ COMMANDS ; }" -msgstr "" +msgstr "{ KÄSUD ; }" #: builtins.c:208 msgid "job_spec [&]" @@ -2506,17 +2470,11 @@ msgid "printf [-v var] format [arguments]" msgstr "" #: builtins.c:233 -msgid "" -"complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-" -"W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S " -"suffix] [name ...]" +msgid "complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" msgstr "" #: builtins.c:237 -msgid "" -"compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-" -"W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S " -"suffix] [word]" +msgid "compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" msgstr "" #: builtins.c:241 @@ -2524,15 +2482,11 @@ msgid "compopt [-o|+o option] [-DEI] [name ...]" msgstr "" #: builtins.c:244 -msgid "" -"mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " -"callback] [-c quantum] [array]" +msgid "mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" msgstr "" #: builtins.c:246 -msgid "" -"readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " -"callback] [-c quantum] [array]" +msgid "readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" msgstr "" #: builtins.c:258 @@ -2550,8 +2504,7 @@ msgid "" " -p\tprint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has " -"been\n" +" alias returns true unless a NAME is supplied for which no alias has been\n" " defined." msgstr "" @@ -2577,34 +2530,28 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" -"move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their " -"values\n" -" -s List key sequences that invoke macros and their " -"values\n" +" -S List key sequences that invoke macros and their values\n" +" -s List key sequences that invoke macros and their values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named " -"function.\n" +" -u function-name Unbind all keys which are bound to the named function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" " \t\t\t\tKEYSEQ is entered.\n" -" -X List key sequences bound with -x and associated " -"commands\n" +" -X List key sequences bound with -x and associated commands\n" " in a form that can be reused as input.\n" " \n" -" If arguments remain after option processing, the -p and -P options " -"treat\n" +" If arguments remain after option processing, the -p and -P options treat\n" " them as readline command names and restrict output to those names.\n" " \n" " Exit Status:\n" @@ -2639,8 +2586,7 @@ msgid "" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the " -"function.\n" +" as a shell function, but need to execute the builtin within the function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2667,22 +2613,16 @@ msgstr "" msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of " -"the\n" +" Change the current directory to DIR. The default DIR is the value of the\n" " HOME shell variable. If DIR is \"-\", it is converted to $OLDPWD.\n" " \n" -" The variable CDPATH defines the search path for the directory " -"containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon " -"(:).\n" -" A null directory name is the same as the current directory. If DIR " -"begins\n" +" The variable CDPATH defines the search path for the directory containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" +" A null directory name is the same as the current directory. If DIR begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is " -"set,\n" -" the word is assumed to be a variable name. If that variable has a " -"value,\n" +" If the directory is not found, and the shell option `cdable_vars' is set,\n" +" the word is assumed to be a variable name. If that variable has a value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2698,13 +2638,11 @@ msgid "" " \t\tattributes as a directory containing the file attributes\n" " \n" " The default is to follow symbolic links, as if `-L' were specified.\n" -" `..' is processed by removing the immediately previous pathname " -"component\n" +" `..' is processed by removing the immediately previous pathname component\n" " back to a slash or the beginning of DIR.\n" " \n" " Exit Status:\n" -" Returns 0 if the directory is changed, and if $PWD is set successfully " -"when\n" +" Returns 0 if the directory is changed, and if $PWD is set successfully when\n" " -P is used; non-zero otherwise." msgstr "" @@ -2755,8 +2693,7 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke " -"commands\n" +" information about the specified COMMANDs. Can be used to invoke commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2804,8 +2741,7 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the " -"`local'\n" +" When used in a function, `declare' makes NAMEs local, as with the `local'\n" " command. The `-g' option suppresses this behavior.\n" " \n" " Exit Status:\n" @@ -2842,8 +2778,7 @@ msgstr "" msgid "" "Write arguments to the standard output.\n" " \n" -" Display the ARGs, separated by a single space character and followed by " -"a\n" +" Display the ARGs, separated by a single space character and followed by a\n" " newline, on the standard output.\n" " \n" " Options:\n" @@ -2867,11 +2802,9 @@ msgid "" " \t\t0 to 3 octal digits\n" " \\xHH\tthe eight-bit character whose value is HH (hexadecimal). HH\n" " \t\tcan be one or two hex digits\n" -" \\uHHHH\tthe Unicode character whose value is the hexadecimal value " -"HHHH.\n" +" \\uHHHH\tthe Unicode character whose value is the hexadecimal value HHHH.\n" " \t\tHHHH can be one to four hex digits.\n" -" \\UHHHHHHHH the Unicode character whose value is the hexadecimal " -"value\n" +" \\UHHHHHHHH the Unicode character whose value is the hexadecimal value\n" " \t\tHHHHHHHH. HHHHHHHH can be one to eight hex digits.\n" " \n" " Exit Status:\n" @@ -2913,8 +2846,7 @@ msgid "" " \n" " On systems with dynamic loading, the shell variable BASH_LOADABLES_PATH\n" " defines a search path for the directory containing FILENAMEs that do\n" -" not contain a slash. It may include \".\" to force a search of the " -"current\n" +" not contain a slash. It may include \".\" to force a search of the current\n" " directory.\n" " \n" " To use the `test' found in $PATH instead of the shell builtin\n" @@ -2928,8 +2860,7 @@ msgstr "" msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the " -"shell,\n" +" Combine ARGs into a single string, use the result as input to the shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -2982,8 +2913,7 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " -"specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -2991,13 +2921,11 @@ msgid "" " -c\texecute COMMAND with an empty environment\n" " -l\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, " -"unless\n" +" If the command cannot be executed, a non-interactive shell exits, unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error " -"occurs." +" Returns success unless COMMAND is not found or a redirection error occurs." msgstr "" #: builtins.c:730 @@ -3012,8 +2940,7 @@ msgstr "" msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not " -"executed\n" +" Exits a login shell with exit status N. Returns an error if not executed\n" " in a login shell." msgstr "" @@ -3021,15 +2948,13 @@ msgstr "" msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history " -"list.\n" +" fc is used to list or edit and re-execute commands from the history list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then " -"EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -3045,8 +2970,7 @@ msgid "" " The history builtin also operates on the history list.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error " -"occurs." +" Returns success or status of executed command; non-zero if an error occurs." msgstr "" #: builtins.c:781 @@ -3065,10 +2989,8 @@ msgstr "" msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if " -"they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's " -"notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" @@ -3080,8 +3002,7 @@ msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is " -"displayed.\n" +" no arguments are given, information about remembered commands is displayed.\n" " \n" " Options:\n" " -d\tforget the remembered location of each NAME\n" @@ -3117,8 +3038,7 @@ msgid "" " PATTERN\tPattern specifying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is " -"given." +" Returns success unless PATTERN is not found or an invalid option is given." msgstr "" #: builtins.c:859 @@ -3155,8 +3075,7 @@ msgid "" " \n" " If the HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed " -"otherwise.\n" +" with each displayed history entry. No time stamps are printed otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." @@ -3233,8 +3152,7 @@ msgid "" " 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" +" 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" @@ -3276,18 +3194,14 @@ msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with " -"word\n" +" if the -u option is supplied. The line is split into fields as with word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as " -"word\n" -" delimiters. By default, the backslash character escapes delimiter " -"characters\n" +" the last NAME. Only the characters found in $IFS are recognized as word\n" +" delimiters. By default, the backslash character escapes delimiter characters\n" " and newline.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY " -"variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -3301,8 +3215,7 @@ msgid "" " -n nchars\treturn after reading NCHARS characters rather than waiting\n" " \t\tfor a newline, but honor a delimiter if fewer than\n" " \t\tNCHARS characters are read before the delimiter\n" -" -N nchars\treturn only after reading exactly NCHARS characters, " -"unless\n" +" -N nchars\treturn only after reading exactly NCHARS characters, unless\n" " \t\tEOF is encountered or read times out, ignoring any\n" " \t\tdelimiter\n" " -p prompt\toutput the string PROMPT without a trailing newline before\n" @@ -3320,10 +3233,8 @@ msgid "" " -u fd\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times " -"out\n" -" (in which case it's greater than 128), a variable assignment error " -"occurs,\n" +" The return code is zero, unless end-of-file is encountered, read times out\n" +" (in which case it's greater than 128), a variable assignment error occurs,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" @@ -3382,8 +3293,7 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero " -"status\n" +" or zero if no command exited with a non-zero status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -3407,8 +3317,7 @@ msgid "" " by default when the shell is interactive.\n" " -P If set, do not resolve symbolic links when executing commands\n" " such as cd which change the current directory.\n" -" -T If set, the DEBUG and RETURN traps are inherited by shell " -"functions.\n" +" -T If set, the DEBUG and RETURN traps are inherited by shell functions.\n" " -- Assign any remaining arguments to the positional parameters.\n" " If there are no remaining arguments, the positional parameters\n" " are unset.\n" @@ -3441,8 +3350,7 @@ msgid "" " -n\ttreat each NAME as a name reference and unset the variable itself\n" " \t\trather than the variable it references\n" " \n" -" Without options, unset first tries to unset a variable, and if that " -"fails,\n" +" Without options, unset first tries to unset a variable, and if that fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -3456,8 +3364,7 @@ msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before " -"exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -3510,8 +3417,7 @@ msgid "" " -p option is supplied, the PATH argument is treated as a colon-\n" " separated list of directories to search for FILENAME. If -p is not\n" " supplied, $PATH is searched to find FILENAME. If any ARGUMENTS are\n" -" supplied, they become the positional parameters when FILENAME is " -"executed.\n" +" supplied, they become the positional parameters when FILENAME is executed.\n" " \n" " Exit Status:\n" " Returns the status of the last command executed in FILENAME; fails if\n" @@ -3568,8 +3474,7 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last " -"read.\n" +" -N FILE True if the file has been modified since it was last read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -3590,8 +3495,7 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 " -"lexicographically.\n" +" True if STRING1 sorts before STRING2 lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -3629,8 +3533,7 @@ msgstr "" msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of " -"its\n" +" Prints the accumulated user and system times for the shell and all of its\n" " child processes.\n" " \n" " Exit Status:\n" @@ -3641,8 +3544,7 @@ msgstr "" msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives " -"signals\n" +" Defines and activates handlers to be run when the shell receives signals\n" " or other conditions.\n" " \n" " ACTION is a command to be read and executed when the shell receives the\n" @@ -3652,17 +3554,14 @@ msgid "" " shell and by the commands it invokes.\n" " \n" " If a SIGNAL_SPEC is EXIT (0) ACTION is executed on exit from the shell.\n" -" If a SIGNAL_SPEC is DEBUG, ACTION is executed before every simple " -"command\n" +" If a SIGNAL_SPEC is DEBUG, ACTION is executed before every simple command\n" " and selected other commands. If a SIGNAL_SPEC is RETURN, ACTION is\n" " executed each time a shell function or a script run by the . or source\n" -" builtins finishes executing. A SIGNAL_SPEC of ERR means to execute " -"ACTION\n" +" builtins finishes executing. A SIGNAL_SPEC of ERR means to execute ACTION\n" " each time a command's failure would cause the shell to exit when the -e\n" " option is enabled.\n" " \n" -" If no arguments are supplied, trap prints the list of commands " -"associated\n" +" If no arguments are supplied, trap prints the list of commands associated\n" " with each trapped signal in a form that may be reused as shell input to\n" " restore the same signal dispositions.\n" " \n" @@ -3671,19 +3570,16 @@ msgid "" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC in a\n" " \t\tform that may be reused as shell input; or for all trapped\n" " \t\tsignals if no arguments are supplied\n" -" -P\tdisplay the trap commands associated with each SIGNAL_SPEC. At " -"least\n" +" -P\tdisplay the trap commands associated with each SIGNAL_SPEC. At least\n" " \t\tone SIGNAL_SPEC must be supplied. -P and -p cannot be used\n" " \t\ttogether.\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal " -"number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is " -"given." +" Returns success unless a SIGSPEC is invalid or an invalid option is given." msgstr "" #: builtins.c:1441 @@ -3712,16 +3608,14 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not " -"found." +" Returns success if all of the NAMEs are found; fails if any are not found." msgstr "" #: builtins.c:1472 msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and " -"processes\n" +" Provides control over the resources available to the shell and processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -3792,23 +3686,19 @@ msgstr "" msgid "" "Wait for job completion and return exit status.\n" " \n" -" Waits for each process identified by an ID, which may be a process ID or " -"a\n" +" Waits for each process identified by an ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" " status is zero. If ID is a job specification, waits for all processes\n" " in that job's pipeline.\n" " \n" -" If the -n option is supplied, waits for a single job from the list of " -"IDs,\n" -" or, if no IDs are supplied, for the next job to complete and returns " -"its\n" +" If the -n option is supplied, waits for a single job from the list of IDs,\n" +" or, if no IDs are supplied, for the next job to complete and returns its\n" " exit status.\n" " \n" " If the -p option is supplied, the process or job identifier of the job\n" " for which the exit status is returned is assigned to the variable VAR\n" -" named by the option argument. The variable will be unset initially, " -"before\n" +" named by the option argument. The variable will be unset initially, before\n" " any assignment. This is useful only when the -n option is supplied.\n" " \n" " If the -f option is supplied, and job control is enabled, waits for the\n" @@ -3824,14 +3714,12 @@ msgstr "" msgid "" "Wait for process completion and return exit status.\n" " \n" -" Waits for each process specified by a PID and reports its termination " -"status.\n" +" Waits for each process specified by a PID and reports its termination status.\n" " If PID is not given, waits for all currently active child processes,\n" " and the return status is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of the last PID; fails if PID is invalid or an " -"invalid\n" +" Returns the status of the last PID; fails if PID is invalid or an invalid\n" " option is given." msgstr "" @@ -3925,17 +3813,12 @@ msgstr "" msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then " -"the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " -"is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. " -"Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of " -"the\n" -" entire construct is the exit status of the last command executed, or " -"zero\n" +" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of the\n" +" entire construct is the exit status of the last command executed, or zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" @@ -3946,8 +3829,7 @@ msgstr "" msgid "" "Execute commands as long as a test succeeds.\n" " \n" -" Expand and execute COMMANDS-2 as long as the final command in COMMANDS " -"has\n" +" Expand and execute COMMANDS-2 as long as the final command in COMMANDS has\n" " an exit status of zero.\n" " \n" " Exit Status:\n" @@ -3958,8 +3840,7 @@ msgstr "" msgid "" "Execute commands as long as a test does not succeed.\n" " \n" -" Expand and execute COMMANDS-2 as long as the final command in COMMANDS " -"has\n" +" Expand and execute COMMANDS-2 as long as the final command in COMMANDS has\n" " an exit status which is not zero.\n" " \n" " Exit Status:\n" @@ -3984,8 +3865,7 @@ msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is " -"invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -4033,12 +3913,9 @@ msgstr "" msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the " -"conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries " -"used\n" -" by the `test' builtin, and may be combined using the following " -"operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries used\n" +" by the `test' builtin, and may be combined using the following operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -4226,36 +4103,29 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: " -"plain\n" -" characters, which are simply copied to standard output; character " -"escape\n" +" FORMAT is a character string which contains three types of objects: plain\n" +" characters, which are simply copied to standard output; character escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next " -"successive\n" +" format specifications, each of which causes printing of the next successive\n" " argument.\n" " \n" -" In addition to the standard format characters csndiouxXeEfFgGaA " -"described\n" +" In addition to the standard format characters csndiouxXeEfFgGaA described\n" " in printf(3), printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" " %Q\tlike %q, but apply any precision to the unquoted argument before\n" " \t\tquoting\n" -" %(fmt)T\toutput the date-time string resulting from using FMT as a " -"format\n" +" %(fmt)T\toutput the date-time string resulting from using FMT as a format\n" " \t string for strftime(3)\n" " \n" " The format is re-used as necessary to consume all of the arguments. If\n" " there are fewer arguments than the format requires, extra format\n" -" specifications behave as if a zero value or null string, as " -"appropriate,\n" +" specifications behave as if a zero value or null string, as appropriate,\n" " had been supplied.\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or " -"assignment\n" +" Returns success unless an invalid option is given or a write or assignment\n" " error occurs." msgstr "" @@ -4263,10 +4133,8 @@ msgstr "" msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no " -"options\n" -" or NAMEs are supplied, display existing completion specifications in a " -"way\n" +" For each NAME, specify how arguments are to be completed. If no options\n" +" or NAMEs are supplied, display existing completion specifications in a way\n" " that allows them to be reused as input.\n" " \n" " Options:\n" @@ -4281,10 +4149,8 @@ msgid "" " \t\tcommand) word\n" " \n" " When completion is attempted, the actions are applied in the order the\n" -" uppercase-letter options are listed above. If multiple options are " -"supplied,\n" -" the -D option takes precedence over -E, and both take precedence over -" -"I.\n" +" uppercase-letter options are listed above. If multiple options are supplied,\n" +" the -D option takes precedence over -E, and both take precedence over -I.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." @@ -4295,12 +4161,10 @@ msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is present, generate " -"matches\n" +" completions. If the optional WORD argument is present, generate matches\n" " against WORD.\n" " \n" -" If the -V option is supplied, store the possible completions in the " -"indexed\n" +" If the -V option is supplied, store the possible completions in the indexed\n" " array VARNAME instead of printing them to the standard output.\n" " \n" " Exit Status:\n" @@ -4311,12 +4175,9 @@ msgstr "" msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are " -"supplied,\n" -" the completion currently being executed. If no OPTIONs are given, " -"print\n" -" the completion options for each NAME or the current completion " -"specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" +" the completion currently being executed. If no OPTIONs are given, print\n" +" the completion options for each NAME or the current completion specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -4343,22 +4204,17 @@ msgstr "" msgid "" "Read lines from the standard input into an indexed array variable.\n" " \n" -" Read lines from the standard input into the indexed array variable " -"ARRAY, or\n" -" from file descriptor FD if the -u option is supplied. The variable " -"MAPFILE\n" +" Read lines from the standard input into the indexed array variable ARRAY, or\n" +" from file descriptor FD if the -u option is supplied. The variable MAPFILE\n" " is the default ARRAY.\n" " \n" " Options:\n" " -d delim\tUse DELIM to terminate lines, instead of newline\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " -"copied\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " -"index is 0\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0\n" " -s count\tDiscard the first COUNT lines read\n" " -t\tRemove a trailing DELIM from each line read (default newline)\n" -" -u fd\tRead lines from file descriptor FD instead of the standard " -"input\n" +" -u fd\tRead lines from file descriptor FD instead of the standard input\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read\n" " -c quantum\tSpecify the number of lines read between each call to\n" " \t\t\tCALLBACK\n" @@ -4371,13 +4227,11 @@ msgid "" " element to be assigned and the line to be assigned to that element\n" " as additional arguments.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY " -"before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" " assigning to it.\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or ARRAY is readonly " -"or\n" +" Returns success unless an invalid option is given or ARRAY is readonly or\n" " not an indexed array." msgstr "" diff --git a/po/it.gmo b/po/it.gmo index 37cca5fa1c9b8883ae0cf9f2b6ce941e648cf516..67d0617f96286313539650e0c77e77ff828e7dd8 100644 GIT binary patch delta 13448 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%0A%K zQI9iE`AEG1u{KEB)FUq?pJX<0vEgIAJG@d46bVo&b) z1E-K58|>LKKG2$yUF6=N^j%JUr&+>Tjq-Aw`hvwUk<X{bj|^!yK=)eOvSd8>Da@0gHzvA zW>VIeYu!k{8BA_fzwWzUEecF`t~B)WbxHpa^tT%9d>nkQRcmKN@aI-F>NcSCAJq6a z=V9*XL4G*qa_*Veuywd$Yv=d)_=!3BzELT|eA6-u^D`&qj3JYml|4RZ!o=JMil$Br zbs6l;C^fyHaQv81-cC0q+UuIEJ z&cyu8Vt-i*L$9uN(kuCLigL22&h!`L=QLMo_MIWs)}v~wUjG^MIjGxWek=cbbrT6M{Z zjZMk-4IVP6Z~xw1)uPA|o^{E2sYK190$w>Sr!dEtmqW`Z7v>Zd(R6=!?0=n#rK1z4 z<`?_(5<`=&JAXzePQTxumlMg<4A1+;d8bOrmdU=H;K?3ya*9KN^6otq zNYG7RcEO~~{PF%!6+XQaClnUF=2|`cqtmJbaa=ZB{oP;3{@ZH{@~mbc1OE$C9|hyXVVwvX3EqY8#9v&3$iss1XGSLGb_uVNy7^> zCr`&06AcwEW^raHx+?=KEd$#Mfxp^sdrTBuvJlN$czez$I^zvd{+9Mv!1ZDO9^ z=O6EzTFl7jFb71VFTWt404OZ<7fmk6AFnve{J-e)sY`iO%9$`Br?}WZ%^#jK(_L8B z=^idK-|g=>gF+(~xb0z?=oQ+w(5)M~u)wY2bPs*E&}|f|x6o}8`ZU4m=JX8(7rIHd zPKv!ekixXb+%-{tnp0R1y7-uz5aVk+Ek~mnX+)^%B6nG7+Ly0v=+#B;tWbVABJGde zEVM6QcH+aCi`^\n" "Language-Team: Italian \n" "Language: it\n" @@ -2533,7 +2533,7 @@ msgstr "coproc [NOME] comando [redirezioni]" #: builtins.c:204 msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" -msgstr "function name { COMANDI ; } oppure name () { COMANDI ; }" +msgstr "function nome { COMANDI ; } oppure nome () { COMANDI ; }" #: builtins.c:206 msgid "{ COMMANDS ; }" @@ -2580,8 +2580,10 @@ msgid "complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat msgstr "complete [-abcdefgjksuv] [-pr] [-DEI] [-o opzione] [-A azione] [-G modglob] [-W elencoparole] [-F funzione] [-C comando] [-X modfiltro] [-P prefisso] [-S suffisso] [nome ...]" #: builtins.c:237 +#, fuzzy +#| msgid "compgen [-V nomevar] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" msgid "compgen [-V varname] [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "compgen [-V varname] [-abcdefgjksuv] [-o opzione] [-A azione] [-G modglob] [-W elencoparole] [-F funzione] [-C comando] [-X modfiltro] [-P prefisso] [-S suffisso] [parola]" +msgstr "compgen [-V nomevar] [-abcdefgjksuv] [-o opzione] [-A azione] [-G modglob] [-W elencoparole] [-F funzione] [-C comando] [-X modfiltro] [-P prefisso] [-S suffisso] [parola]" #: builtins.c:241 msgid "compopt [-o|+o option] [-DEI] [name ...]" @@ -2643,7 +2645,7 @@ msgstr "" " Opzioni:\n" " -a\trimuove tutte le definizioni di alias\n" " \n" -" Restituisce successo a meno che NOME non sia un alias esistente." +" Restituisce successo a meno che un NOME non sia un alias esistente." #: builtins.c:293 msgid "" @@ -2689,7 +2691,7 @@ msgstr "" " Associa una sequenza di tasti a una funzione o a una macro Readline, oppure imposta una\n" " variabile di Readline. La sintassi di argomento senza opzione è equivalente a quella\n" " trovata in ~/.inputrc, ma deve essere passata come singolo argomento:\n" -" es., bind '\"\\C-x\\C-r\": ri-leggi-file-init'.\n" +" es., bind '\"\\C-x\\C-r\": re-read-init-file'.\n" " \n" " Opzioni:\n" " -m mappatura Usa MAPPATURA per le combinazioni di tasti per la\n" @@ -2715,7 +2717,6 @@ msgstr "" " -X Elenca le sequenze di tasti associate a -x e i\n" " comandi associati, in una forma che può essere\n" " riutilizzata come input.\n" -" in a form that can be reused as input.\n" " \n" " Se rimangono degli argomenti dopo l'elaborazione dell'opzione, le opzioni\n" " -p e -P li trattano come nomi di comandi readline e limitano l'output\n" @@ -2754,8 +2755,8 @@ msgid "" msgstr "" "Riprende cicli for, while o until.\n" " \n" -" Riprende l'iterazione successiva del ciclo chiuso FOR, WHILE o UNTIL.\n" -" Se è specificato N, riprende l'N-simo ciclo chiuso.\n" +" Riprende l'iterazione successiva del ciclo FOR, WHILE o UNTIL.\n" +" Se è specificato N, riprende l'N-simo ciclo contenente il comando.\n" " \n" " Stato di uscita:\n" " Lo stato di uscita è 0 a meno che N non sia maggiore o uguale a 1." @@ -2873,7 +2874,7 @@ msgstr "" " \t\testesi come una directory contenente gli attributi del file\n" " \n" " Il valore predefinito è seguire i collegamenti simbolici, come se fosse specificato \"-L\".\n" -" \"..\" viene processato rimuovendo la componente del percorso immediatamente precedente, fino a uno slash o all'inizio di DIR.\n" +" \"..\" viene processato rimuovendo la componente del percorso immediatamente precedente, fino a uno slash o all'inizio di DIR.\n" " \n" " Stato di uscita:\n" " Restituisce 0 se viene cambiata la directory o se $PWD è impostata con successo quando\n" @@ -3032,34 +3033,35 @@ msgstr "" " -f\tlimita l'azione o la visualizzazione ai nomi e alle definizioni di funzione\n" " -F\tlimita la visualizzazione ai soli nomi di funzione (più numero di riga e\n" " \t\tfile sorgente durante il debug)\n" -" -g\tCrea variabili globali quando usato in una funzione di shell; altrimenti\n" +" -g\tcrea variabili globali quando usato in una funzione di shell; altrimenti\n" " \t\tè ignorato\n" " -I\tcreando una variabile locale, eredita attributi e valore\n" " \t\tdi una variable con stesso nome in uno scope precedente\n" " -p\tvisualizza gli attributi e i valori di ciascun NOME\n" " \n" " Opzioni che impostano gli attributi:\n" -" -a\tRende i NOMI array indicizzati (se supportata)\n" -" -A\tRende i NOMI array associativi (se supportata)\n" -" -i\tFornisce ai NOMI l'attributo \"integer\"\n" -" -l\tConverte i valori dei NOMI in lettere minuscole in fase di assegnazione\n" -" -n\tmake NAME a reference to the variable named by its value\n" -" -r\tImposta i NOMI in sola lettura\n" -" -t\tFornisce ai NOMI l'attributo \"trace\"\n" -" -u\tConverte i valori dei NOMI in lettere maiuscole in fase di assegnazione\n" -" -x\tImposta i NOMI come esportabili\n" +" -a\trende i NOMI array indicizzati (se supportata)\n" +" -A\trende i NOMI array associativi (se supportata)\n" +" -i\tfornisce ai NOMI l'attributo \"integer\"\n" +" -l\tconverte i valori dei NOMI in lettere minuscole in fase di assegnazione\n" +" -n\trende NOME un riferimento alla variabile indicata dal suo valore\n" +" -r\timposta i NOMI in sola lettura\n" +" -t\tfornisce ai NOMI l'attributo \"trace\"\n" +" -u\tconverte i valori dei NOMI in lettere maiuscole in fase di assegnazione\n" +" -x\timposta i NOMI come esportabili\n" " \n" " Usando \"+\" al posto di \"-\" disattiva l'attributo fornito, ad\n" " eccezione di a, A e r.\n" " \n" -" Le variabili con attributo intero vengono valutate aritmeticamente (vedere\n" -" il comando \"let\") quando alla variabile è assegnato un valore.\n" +" Le variabili con attributo \"integer\" vengono valutate aritmeticamente\n" +" (vedereil comando \"let\") quando alla variabile è assegnato un valore.\n" " \n" -" Quando viene usato in una funzione, \"declare\" rende locali i NOMI, come con\n" -" il comando \"local\".\n" +" Quando viene usato in una funzione, \"declare\" rende locali i NOMI, come\n" +" con il comando \"local\".\n" " \n" " Stato di uscita:\n" -" Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore nell'assegnazione di variabili." +" Restituisce successo a meno che non sia fornita una opzione non valida o\n" +" si riscontri un errore nell'assegnazione di variabili." #: builtins.c:539 msgid "" @@ -3166,6 +3168,7 @@ msgstr "" " \t\tda 0 a 3 cifre ottali\n" " \\xHH\til carattere otto bit il cui valore è HH (esadecimale). HH può\n" " \t\tavere una o due cifre esadecimali\n" +" \\uHHHH\til carattere Unicode il cui valore è il valore esadecimale HHHH.\n" " \t\tHHHH può avere da una a quattro cifre esadecimali.\n" " \\UHHHHHHHH il carattere Unicode il cui valore è HHHH (esadecimale).\n" " \t\tHHHHHHHH. HHHHHHHH può avere da una a otto cifre esadecimali.\n" @@ -3385,7 +3388,8 @@ msgstr "" " non venga impostata l'opzione di shell \"execfail\".\n" " \n" " Stato di uscita:\n" -" Restituisce successo a meno che non sia trovato il COMANDO o si riscontri un errore di ridirezione." +" Restituisce successo a meno che non sia trovato il COMANDO o si\n" +" riscontri un errore di redirezione." #: builtins.c:730 msgid "" @@ -3476,7 +3480,7 @@ msgid "" " Exit Status:\n" " Status of command placed in foreground, or failure if an error occurs." msgstr "" -"Sposta i job in primo piano.\n" +"Sposta un job in primo piano.\n" " \n" " Mette il job identificato da SPEC_JOB in primo piano, rendendolo il\n" " job corrente. Se SPEC_JOB non è presente, viene usata la nozione di\n" @@ -3498,12 +3502,13 @@ msgid "" msgstr "" "Sposta i job in background.\n" " \n" -" Mette il jobs identificato da ogni SPEC_JOB in background, come se\n" +" Mette il job identificato da ogni SPEC_JOB in background, come se\n" " fossero stati avviati con \"&\". Se SPEC_JOB non è presente, viene\n" " usata la nozione di job corrente della shell.\n" " \n" " Stato di uscita:\n" -" Restituisce successo a meno che il controllo dei job non sia abilitato o si riscontri un errore." +" Restituisce successo a meno che il controllo dei job non sia abilitato o\n" +" si riscontri un errore." #: builtins.c:810 msgid "" @@ -3639,7 +3644,7 @@ msgstr "" " \n" " -a\taccoda righe al file della cronologia relative alla sessione attuale\n" " -n\tlegge tutte le righe non ancora lette dal file della cronologia\n" -" \t\te le accodano all'elenco della cronologia\n" +" \t\te le accoda all'elenco della cronologia\n" " -r\tlegge il file della cronologia e ne accoda il contenuto all'elenco\n" " \t\tdella cronologia\n" " -w\tscrive la cronologia corrente nel file della cronologia\n" @@ -3776,9 +3781,9 @@ msgstr "" " -L\tsinonimo di -l\n" " \n" " Kill è un comando interno di shell per due ragioni: permette di usare\n" -" gli ID dei job invece degli ID dei processi e permette di uccidere quei\n" -" processi che abbiano raggiunto un numero limite prefissato di processi\n" -" creabili.\n" +" gli ID dei job invece degli ID dei processi e permette di terminare\n" +" processi anche se è stato raggiunto il limite di processi che l'utente\n" +" può creare.\n" " \n" " Stato di uscita:\n" " Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore." @@ -3981,7 +3986,8 @@ msgstr "" " dell'ultimo comando eseguito all'interno della funzione o dello script.\n" " \n" " Stato di uscita:\n" -" Restituisce N, oppure insuccesso se la shell non sta eseguendo una funzione o uno script." +" Restituisce N, oppure insuccesso se la shell non sta eseguendo una funzione\n" +" o uno script." #: builtins.c:1080 msgid "" @@ -4125,8 +4131,8 @@ msgstr "" " verbose Uguale a -v\n" " vi Usa un'editor di riga stile vi\n" " xtrace Uguale a -x\n" -" -p Abilitato ogni qualvolta gli id utente reali non corrispondono a\n" -" quelli effettivi. Disabilita l'analisi del file $ENV e l'importazione\n" +" -p Abilitato ogni qualvolta l'id utente reale non corrisponda a\n" +" quello effettivo. Disabilita l'analisi del file $ENV e l'importazione\n" " delle funzioni di shell. Disabilitare questa opzione comporta\n" " l'impostazione degli uid e gid effettivi a uid e gid reali.\n" " -t Esce dopo la lettura e l'esecuzione di un comando.\n" @@ -4227,7 +4233,7 @@ msgstr "" " dell'esportazione.\n" " \n" " Opzioni:\n" -" -f\trimanda alle funzioni di shell\n" +" -f\tfa riferimento alle funzioni di shell\n" " -n\trimuove la proprietà di esportazione da ciascun NOME\n" " -p\tvisualizza un elenco di tutte le variabili o funzioni esportate\n" " \n" @@ -4264,9 +4270,9 @@ msgstr "" " VALORE, lo assegna prima di marcarlo in sola lettura.\n" " \n" " Opzioni:\n" -" -a\trimanda alle variabili degli array indicizzati\n" -" -A\trimanda alle variabili degli array associativi\n" -" -f\trimanda alle funzioni di shell\n" +" -a\tfa riferimento alle variabili degli array indicizzati\n" +" -A\tfa riferimento alle variabili degli array associativi\n" +" -f\tfa riferimento alle funzioni di shell\n" " -p\tvisualizza un elenco di tutte le variabili oppure funzioni in sola\n" " \t\tlettura, a seconda che venga passata o meno l'opzione -f\n" " \n" @@ -4431,7 +4437,7 @@ msgid "" " Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n" " false or an invalid argument is given." msgstr "" -"Analizza espressioni condizionali.\n" +"Valuta espressioni condizionali.\n" " \n" " Esce con stato 0 (vero) o 1 (falso) in base all'analisi\n" " dell'ESPR. Le espressioni possono essere unarie o binarie. Le\n" @@ -4468,7 +4474,8 @@ msgstr "" " -N FILE Vero se il file è stato modificato dall'ultima volta\n" " che è stato letto.\n" " \n" -" FILE1 -nt FILE2 Vero se il file1 è più recente del file2 (in accordo con la data di modifica).\n" +" FILE1 -nt FILE2 Vero se il file1 è più recente del file2 (in accordo\n" +" con la data di modifica).\n" " \n" " FILE1 -ot FILE2 Vero se il file1 è più vecchio del file2.\n" " \n" @@ -4476,10 +4483,9 @@ msgstr "" " \n" " Operatori di stringa:\n" " \n" -" -z STRINGA Vero se la stringa e vuota.\n" +" -z STRINGA Vero se la stringa è vuota.\n" " \n" -" -n STRINGA\n" -" STRINGA Vero se la stringa non è vuota.\n" +" -n STRINGA Vero se la stringa non è vuota.\n" " \n" " STRINGA1 = STRINGA2\n" " Vero se le stringhe sono uguali.\n" @@ -4500,7 +4506,8 @@ msgstr "" " ed è un riferimento a nome.\n" " ! ESPR Vero se l'ESPR è falsa.\n" " ESPR1 -a ESPR2 Vero se entrambe le espressioni espr1 E espr2 sono vere.\n" -" ESPR1 -o ESPR2 Vero se sono vere le espressioni espr1 O espr2.\n" +" ESPR1 -o ESPR2 Vero se è vera almeno una delle due espressioni\n" +" espr1 O espr2.\n" " \n" " arg1 OP arg2 Test aritmetici. OP è uno tra -eq, -ne,\n" " -lt, -le, -gt oppure -ge.\n" @@ -4592,7 +4599,7 @@ msgstr "" " AZIONE è un comando da leggere ed eseguire quando la shell riceve il o i\n" " segnali SPEC_SEGNALE. Se AZIONE o \"-\" non sono presenti (e viene fornito\n" " un singolo SPEC_SEGNALE), ciascun segnale specificato è riportato\n" -" al suo valore originario. Se AZIONE è pari a null, ogni SPEC_SEGNALE è\n" +" al suo valore originario. Se AZIONE è la stringa null, ogni SPEC_SEGNALE è\n" " ignorato dalla shell e dai comandi che invoca.\n" " \n" " Se uno SPEC_SEGNALE è EXIT (0) AZIONE viene eseguita all'uscita dalla shell.\n" @@ -4661,7 +4668,7 @@ msgstr "" " un nome di comando.\n" " \n" " Opzioni:\n" -" -a\tVisualizza tutte le posizioni contenenti un eseguibile chiamato NOME,\n" +" -a\tvisualizza tutte le posizioni contenenti un eseguibile chiamato NOME,\n" " \t\tincludendo alias, comandi interni e funzioni se e solo se\n" " \t\tnon viene usata anche l'opzione \"-p\"\n" " -f\tnon esegue la ricerca delle funzioni di shell\n" @@ -4750,8 +4757,9 @@ msgstr "" " -e\tla priorità massima di scheduling (\"nice\")\n" " -f\tla dimensione massima dei file scritti dalla shell e dai suoi figli\n" " -i\til numero massimo di segnali pendenti\n" -" -l\tla dimensione massima di memoria che un processo può impegnare\n" -" -m\til numero massimo di set residenti\n" +" -k\til numero massimo di k-code allocate per questo processo\n" +" -l\tla dimensione massima di memoria che un processo può bloccare\n" +" -m\tla dimensione massima di memoria utilizzabile (RSS)\n" " -n\til numero massimo di descrittori di file aperti\n" " -p\tla dimensione del buffer della pipe\n" " -q\til numero massimo di byte nelle code messaggi POSIX\n" @@ -4873,8 +4881,7 @@ msgstr "" " Stato di uscita:\n" " Restituisce lo stato dell'ultimo ID; fallisce se ID non è valido o se\n" " viene passata un'opzione non valida, o se viene passato -n e la shell\n" -" non ha figli da attendere.\n" -" " +" non ha figli da attendere." #: builtins.c:1578 msgid "" @@ -4989,10 +4996,10 @@ msgstr "" " Le PAROLE vengono estese, generando un elenco di parole. L'insieme\n" " di parole estese viene stampato sullo standard error, ognuna delle\n" " quali preceduta da un numero. Se non è presente \"in PAROLE\", viene\n" -" assunto `in \"$@\". Viene poi visualizzato il prompt PS3 e viene letta\n" +" assunto «in \"$@\"». Viene poi visualizzato il prompt PS3 e viene letta\n" " una riga dallo standard input. Se la riga è composta dal numero che\n" " corrisponde a una delle parole visualizzate, NOME è impostato a quella\n" -" parola. Se la riga è vuota, Le PAROLE e il prompt vengono\n" +" parola. Se la riga è vuota, le PAROLE e il prompt vengono\n" " rivisualizzati. Se viene letto EOF, il comando termina. Se vengono\n" " letti altri valori NOME viene impostato a null. La riga letta viene\n" " salvata nella variabile REPLY. I COMANDI vengono eseguiti dopo ogni\n" @@ -5022,7 +5029,7 @@ msgstr "" " e tempo di sistema della CPU dedicato all'esecuzione della PIPELINE.\n" " \n" " Opzioni:\n" -" -p\tStampa il riepilogo dei tempi nel formato portabile Posix format\n" +" -p\tstampa il riepilogo dei tempi nel formato portabile Posix\n" " \n" " Il valore della variabile TIMEFORMAT è usato come formato di output.\n" " \n" @@ -5089,7 +5096,7 @@ msgstr "" "Esegue i comandi finché un test ha successo.\n" " \n" " Espande ed esegue i COMANDI-2 fino a quando il comando finale nei\n" -" COMANDI \"while\" ha uno stato di uscita pari a zero.\n" +" COMANDI ha uno stato di uscita pari a zero.\n" " \n" " Stato di uscita:\n" " Restituisce lo stato dell'ultimo comando eseguito." @@ -5107,7 +5114,7 @@ msgstr "" "Esegue i comandi finché un test non ha successo.\n" " \n" " Espande ed esegue i COMANDI-2 fino a quando il comando finale nei\n" -" COMANDI \"until\" ha uno stato di uscita diverso da zero.\n" +" COMANDI ha uno stato di uscita diverso da zero.\n" " \n" " Stato di uscita:\n" " Restituisce lo stato dell'ultimo comando eseguito." @@ -5127,9 +5134,9 @@ msgstr "" "Crea un coprocesso chiamato NOME.\n" " \n" " Esegue il COMANDO in modo asincrono, con lo standard output e lo standard\n" -" input del comando connessi attraverso una pipe ai descrittori di file assegnati\n" -" agli indici 0 e 1 di una variabile di array NOME nella shell in esecuzione.\n" -" Il NOME predefinito è \"COPROC\".\n" +" input del comando connessi attraverso una pipe ai descrittori di file\n" +" assegnati agli indici 0 e 1 di una variabile di array NOME nella shell in\n" +" esecuzione. Il NOME predefinito è \"COPROC\".\n" " \n" " Stato di uscita:\n" " Il comando coproc restituisce stato di uscita 0." @@ -5149,8 +5156,8 @@ msgstr "" "Definisce una funzione di shell.\n" " \n" " Crea una funzione di shell chiamata NOME. Quando invocato come un\n" -" semplice comando, NOME esegue i COMANDI nel contesto delle chiamate di\n" -" shell. Quando viene invocato NOME, gli argomenti sono passati alla\n" +" semplice comando, NOME esegue i COMANDI nel contesto della shell\n" +" chiamante. Quando viene invocato NOME, gli argomenti sono passati alla\n" " funzione come $1...$n e il nome della funzione si trova in $FUNCNAME.\n" " \n" " Stato di uscita:\n" @@ -5168,8 +5175,8 @@ msgid "" msgstr "" "Raggruppa i comandi come un'unità.\n" " \n" -" Esegue un set di comandi in un gruppo. Questo è un modo per\n" -" reindirizzare un intero set di comandi.\n" +" Esegue un insieme di comandi in un gruppo. Questo è un modo per\n" +" reindirizzare un intero insieme di comandi.\n" " \n" " Stato di uscita:\n" " Restituisce lo stato dell'ultimo comando eseguito." @@ -5458,7 +5465,7 @@ msgstr "" "Rimuove directory dallo stack.\n" " \n" " Rimuove voci dallo stack delle directory. Senza argomenti, rimuove\n" -" la directory in cima allo stack e cambia alla nuova prima directory.\n" +" la directory in cima allo stack e si sposta alla nuova prima directory.\n" " \n" " Opzioni:\n" " -n\tEvita il normale cambio di directory quando vengono rimosse\n" @@ -5615,7 +5622,7 @@ msgstr "" " consecutivo.\n" " \n" " In aggiunta alle specifiche di formato standard csndiouxXeEfFgGaA\n" -" descritte in printf(1) e printf(3), printf interpreta:\n" +" descritte in printf(3), printf interpreta:\n" " \n" " %b\tEspande le sequenze di escape di backslash nell'argomento corrispondente\n" " %q\tQuota l'argomento in modo che possa essere riusato come input per la shell\n" @@ -5706,6 +5713,9 @@ msgstr "" " generare dei possibili completamenti. Se è presente l'argomento\n" " opzionale PAROLA, genera le corrispondenze relative a PAROLA.\n" " \n" +" Se viene fornita l'opzione -V, salva i possibili completamenti\n" +" nell'array VARNAME invece che stamparli sullo standard output.\n" +" \n" " Stato di uscita:\n" " Restituisce successo a meno che non sia fornita una opzione non valida o\n" " si riscontri un errore." @@ -5813,11 +5823,11 @@ msgstr "" " -O origine\tInizia assegnando all'ARRAY all'indice ORIGINE. L'indice\n" " \t\tpredefinito è 0\n" " -s numero \tScarta le prime NUMERO righe lette\n" -" -t\t\tRimuove un ritorno a capo finale da ciascuna riga letta\n" +" -t\t\tRimuove un DELIMITATORE finale da ciascuna riga letta\n" " -u fd\t\tLegge le righe da un descrittore di file FD invece che dallo\n" " \t\tstandard input\n" " -C callback\tEsamina CALLBACK ogni volta che vengono lette un numero\n" -" \t\tQUANTO di righe\n" +" \t\tQUANTITÀ di righe\n" " -c quantità\tSpecifica il numero di righe lette tra ciascuna chiamata\n" " \t\ta CALLBACK\n" " \n" diff --git a/support/bashversion.c b/support/bashversion.c index 5c2d8019..ea66eae5 100644 --- a/support/bashversion.c +++ b/support/bashversion.c @@ -1,6 +1,6 @@ /* bashversion.c -- Display bash version information. */ -/* Copyright (C) 2001-2024 Free Software Foundation, Inc. +/* Copyright (C) 2001-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/support/printenv.c b/support/printenv.c index b257e760..5b331cbd 100644 --- a/support/printenv.c +++ b/support/printenv.c @@ -6,7 +6,7 @@ chet@po.cwru.edu */ -/* Copyright (C) 1997-2002,2023-2024 Free Software Foundation, Inc. +/* Copyright (C) 1997-2002,2023-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/support/recho.c b/support/recho.c index 6d71155d..f44c4097 100644 --- a/support/recho.c +++ b/support/recho.c @@ -6,7 +6,7 @@ chet@po.cwru.edu */ -/* Copyright (C) 2002-2005,2023-2024 Free Software Foundation, Inc. +/* Copyright (C) 2002-2005,2023-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/variables.c b/variables.c index 37624e46..4e6f93bf 100644 --- a/variables.c +++ b/variables.c @@ -1,6 +1,6 @@ /* variables.c -- Functions for hacking shell variables. */ -/* Copyright (C) 1987-2024 Free Software Foundation, Inc. +/* Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/variables.h b/variables.h index 201db365..e939e596 100644 --- a/variables.h +++ b/variables.h @@ -1,6 +1,6 @@ /* variables.h -- data structures for shell variables. */ -/* Copyright (C) 1987-2024 Free Software Foundation, Inc. +/* Copyright (C) 1987-2025 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell.