+This document details the changes between this version, bash-4.0-release,
+and the previous version, bash-4.0-rc1.
+
This document details the changes between this version, bash-4.0-rc1,
and the previous version, bash-4.0-beta2.
1. Changes to Bash
+a. Changed the message printed when setlocale(3) fails to only include the
+ strerror error text if the call changes errno.
+
+b. Changed trap command execution to reset the line number before running a
+ trap (except DEBUG and RETURN traps).
+
+c. Fixed behavior of case-modifiying word expansions to not work on
+ individual words within a variable's value.
+
+d. Fixed a bug that caused mapfile to not be interruptible when run in an
+ interactive shell.
+
+e. Fixed a bug that caused mapfile to not run callbacks for the first line
+ read.
+
+f. Fixed a bug that caused mapfile to not honor EOF typed in an interactive
+ shell.
+
+g. Fixed the coprocess reaping code to not run straight from a signal handler.
+
+h. Fixed a bug that caused printf -b to ignore the first % conversion specifier
+ in the format string on 64-bit systems.
+
+i. Fixed a bug that caused incorrect word splitting when `:', `=', or `~'
+ appeared in $IFS.
+
+j. Fixed a bug that caused data corruption in the programmable completion code
+ when a shell function called from a completion aborted execution.
+
+k. Fixed a bug that caused the CPU usage reported by the `time' builtin to be
+ capped at 100%.
+
+l. Changed behavior of shell when -e option is in effect to reflect consensus
+ of Posix shell standardization working group.
+
+2. Changes to Readline
+
+a. Fixed a bug that caused !(...) extended glob patterns to inhibit later
+ history expansion.
+
+b. Reworked the signal handling to avoid calling disallowed functions from a
+ signal handler.
+
+3. New Features in Bash
+
+a. `readarray' is now a synonym for `mapfile'.
+------------------------------------------------------------------------------
+1. Changes to Bash
+
a. Fixed a bug that caused parsing errors when a $()-style command
substitution was follwed immediately by a quoted newline.
+This document details the changes between this version, bash-4.0-release,
+and the previous version, bash-4.0-rc1.
+
+This document details the changes between this version, bash-4.0-rc1,
+and the previous version, bash-4.0-beta2.
+
+1. Changes to Bash
+
+a. Changed the message printed when setlocale(3) fails to only include the
+ strerror error text if the call changes errno.
+
+b. Changed trap command execution to reset the line number before running a
+ trap (except DEBUG and RETURN traps).
+
+c. Fixed behavior of case-modifiying word expansions to not work on
+ individual words within a variable's value.
+
+d. Fixed a bug that caused mapfile to not be interruptible when run in an
+ interactive shell.
+
+e. Fixed a bug that caused mapfile to not run callbacks for the first line
+ read.
+
+f. Fixed a bug that caused mapfile to not honor EOF typed in an interactive
+ shell.
+
+g. Fixed the coprocess reaping code to not run straight from a signal handler.
+
+h. Fixed a bug that caused printf -b to ignore the first % conversion specifier
+ in the format string on 64-bit systems.
+
+i. Fixed a bug that caused incorrect word splitting when `:', `=', or `~'
+ appeared in $IFS.
+
+j. Fixed a bug that caused data corruption in the programmable completion code
+ when a shell function called from a completion aborted execution.
+
+k. Fixed a bug that caused the CPU usage reported by the `time' builtin to be
+ capped at 100%.
+
+2. Changes to Readline
+
+a. Fixed a bug that caused !(...) extended glob patterns to inhibit later
+ history expansion.
+
+b. Reworked the signal handling to avoid calling disallowed functions from a
+ signal handler.
+
+3. New Features in Bash
+
+a. `readarray' is now a synonym for `mapfile'.
+------------------------------------------------------------------------------
+1. Changes to Bash
+
+a. Fixed a bug that caused parsing errors when a $()-style command
+ substitution was follwed immediately by a quoted newline.
+
+b. Fixed a bug that caused extended shell globbing patterns beginning with
+ `*(' to not work when used with pattern substitution word expansions.
+
+------------------------------------------------------------------------------
+This document details the changes between this version, bash-4.0-beta2,
+and the previous version, bash-4.0-beta.
+
+1. Changes to Bash
+
+a. Fixed a bug that caused failed word expansions to set $? but not
+ PIPESTATUS.
+
+b. Changed filename completion to quote the tilde in a filename with a
+ leading tilde that exists in the current directory.
+
+c. Fixed a bug that caused a file descriptor leak when performing
+ redirections attached to a compound command.
+
+d. Fixed a bug that caused expansions of $@ and $* to not exit the shell if
+ the -u option was enabled and there were no posititional parameters.
+
+e. Fixed a bug that resulted in bash not terminating immediately if a
+ terminating signal was received while performing output.
+
+f. Fixed a bug that caused the shell to crash after creating 256 process
+ substitutions during word completion.
+
+2. Changes to Readline
+
+a. Fixed a bug that caused redisplay errors when using prompts with invisible
+ characters and numeric arguments to a command in a multibyte locale.
+
+b. Fixed a bug that caused redisplay errors when using prompts with invisible
+ characters spanning more than two physical screen lines.
+
+------------------------------------------------------------------------------
This document details the changes between this version, bash-4.0-beta,
and the previous version, bash-4.0-alpha.
41. Beginning with bash-4.0, when one of the commands in a pipeline is killed
by a SIGINT while executing a command list, the shell acts as if it
received the interrupt.
+
+42. Bash-4.0 changes the handling of the set -e option so that the shell exits
+ if a pipeline fails (and not just if the last command in the failing
+ pipeline is a simple command). This is not as Posix specifies. There is
+ work underway to update this portion of the standard; the bash-4.0
+ behavior attempts to capture the consensus at the time of release.
to LDFLAGS) due to solaris updates to fix a linker problem.
Updatted by Serge Dussud <Serge.Dussud@Sun.COM>
-[bash-4.0-release frozen]
+ 2/12
+ ----
+execute_cmd.c
+ - change execute_connection so failure of a pipeline will cause the
+ shell to exit if -e is on. From discussion on austin-group
+ mailing list
+ - change execute_command_internal so failure of a user-specified
+ subshell will cause the shell to exit if -e is on. From discussion
+ on austin-group mailing list
+
+ 2/13
+ ----
+doc/{bash.1,bashref.texi}
+ - clarified description of set -e option to accurately reflect current
+ implementation
- in set_locale_var, set errno to 0 before calling setlocale(), and
print strerror (errno) if setlocale fails and errno ends up non-zero
-[bash-4.0-release frozen]
+ 2/6
+ ---
+configure.in
+ - backed out of solaris change from 10/23/2008 (adding `-z interpose'
+ to LDFLAGS) due to solaris updates to fix a linker problem.
+ Updatted by Serge Dussud <Serge.Dussud@Sun.COM>
+
+ 2/12
+ ----
+execute_cmd.c
+ - change execute_connection so failure of a pipeline will cause the
+ shell to exit if -e is on. From discussion on austin-group
+ mailing list
+ - change execute_command_internal so failure of a user-specified
+ subshell will cause the shell to exit if -e is on. From discussion
+ on austin-group mailing list
tests/run-trap f
tests/run-type f
tests/run-varenv f
-tests/set-e-test f
+tests/set-e.tests f
+tests/set-e1.sub f
+tests/set-e2.sub f
tests/set-e.right f
tests/set-x.tests f
tests/set-x.right f
and a -m option, to print help information in a man page-like format.
u. There is a new `mapfile' builtin to populate an array with lines from a
- given file.
+ given file. The name `readarray' is a synonym.
v. If a command is not found, the shell attempts to execute a shell function
named `command_not_found_handle', supplying the command words as the
and cursor position by modifying READLINE_LINE_BUFFER and READLINE_POINT,
respectively.
-cc. There is a new >>& redirection operator, which appends the standard output
+cc. There is a new &>> redirection operator, which appends the standard output
and standard error to the named file.
dd. The parser now understands `|&' as a synonym for `2>&1 |', which redirects
@%:@! /bin/sh
@%:@ From configure.in for Bash 4.0, version 4.013.
@%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.62 for bash 4.0-release.
+@%:@ Generated by GNU Autoconf 2.63 for bash 4.0-release.
@%:@
@%:@ Report bugs to <bug-bash@gnu.org>.
@%:@
ac_header_list=
ac_func_list=
-ac_subst_vars='SHELL
-PATH_SEPARATOR
-PACKAGE_NAME
-PACKAGE_TARNAME
-PACKAGE_VERSION
-PACKAGE_STRING
-PACKAGE_BUGREPORT
-exec_prefix
-prefix
-program_transform_name
-bindir
-sbindir
-libexecdir
-datarootdir
-datadir
-sysconfdir
-sharedstatedir
-localstatedir
-includedir
-oldincludedir
-docdir
-infodir
-htmldir
-dvidir
-pdfdir
-psdir
-libdir
-localedir
-mandir
-DEFS
-ECHO_C
-ECHO_N
-ECHO_T
-LIBS
-build_alias
-host_alias
-target_alias
-build
-build_cpu
-build_vendor
-build_os
-host
-host_cpu
-host_vendor
-host_os
-EMACS
-lispdir
-DEBUGGER_START_FILE
-TESTSCRIPT
-PURIFY
-MALLOC_TARGET
-MALLOC_SRC
-MALLOC_LIB
-MALLOC_LIBRARY
-MALLOC_LDFLAGS
-MALLOC_DEP
-HELPDIR
-HELPDIRDEFINE
-HELPINSTALL
-HELPSTRINGS
-CC
-CFLAGS
-LDFLAGS
-CPPFLAGS
-ac_ct_CC
-EXEEXT
-OBJEXT
-CPP
-GREP
-EGREP
-CROSS_COMPILE
-SIGNAMES_H
-SIGNAMES_O
-CC_FOR_BUILD
-STATIC_LD
-CFLAGS_FOR_BUILD
-CPPFLAGS_FOR_BUILD
-LDFLAGS_FOR_BUILD
-RL_VERSION
-RL_MAJOR
-RL_MINOR
-READLINE_LIB
-READLINE_DEP
-RL_LIBDIR
-RL_INCLUDEDIR
-RL_INCLUDE
-HISTORY_LIB
-HISTORY_DEP
-HIST_LIBDIR
-TILDE_LIB
-INSTALL_PROGRAM
-INSTALL_SCRIPT
-INSTALL_DATA
-AR
-RANLIB
-YACC
-YFLAGS
-SET_MAKE
-MAKE_SHELL
-SIZE
-MKINSTALLDIRS
-USE_NLS
-MSGFMT
-GMSGFMT
-XGETTEXT
-MSGMERGE
-ALLOCA
-GLIBC21
-LIBICONV
-LTLIBICONV
-INTLBISON
-BUILD_INCLUDED_LIBINTL
-USE_INCLUDED_LIBINTL
-CATOBJEXT
-DATADIRNAME
-INSTOBJEXT
-GENCAT
-INTLOBJS
-INTL_LIBTOOL_SUFFIX_PREFIX
-INTLLIBS
-LIBINTL
-LTLIBINTL
-POSUB
-LIB@&t@OBJS
-INTL_DEP
-INTL_INC
-LIBINTL_H
-SIGLIST_O
-TERMCAP_LIB
-TERMCAP_DEP
-JOBS_O
-SHOBJ_CC
-SHOBJ_CFLAGS
-SHOBJ_LD
-SHOBJ_LDFLAGS
-SHOBJ_XLDFLAGS
-SHOBJ_LIBS
-SHOBJ_STATUS
-PROFILE_FLAGS
-incdir
-BUILD_DIR
-ARFLAGS
-BASHVERS
-RELSTATUS
-DEBUG
-MALLOC_DEBUG
-LOCAL_LIBS
-LOCAL_CFLAGS
-LOCAL_LDFLAGS
+ac_subst_vars='LTLIBOBJS
LOCAL_DEFS
-LTLIBOBJS'
+LOCAL_LDFLAGS
+LOCAL_CFLAGS
+LOCAL_LIBS
+MALLOC_DEBUG
+DEBUG
+RELSTATUS
+BASHVERS
+ARFLAGS
+BUILD_DIR
+incdir
+PROFILE_FLAGS
+SHOBJ_STATUS
+SHOBJ_LIBS
+SHOBJ_XLDFLAGS
+SHOBJ_LDFLAGS
+SHOBJ_LD
+SHOBJ_CFLAGS
+SHOBJ_CC
+JOBS_O
+TERMCAP_DEP
+TERMCAP_LIB
+SIGLIST_O
+LIBINTL_H
+INTL_INC
+INTL_DEP
+LIB@&t@OBJS
+POSUB
+LTLIBINTL
+LIBINTL
+INTLLIBS
+INTL_LIBTOOL_SUFFIX_PREFIX
+INTLOBJS
+GENCAT
+INSTOBJEXT
+DATADIRNAME
+CATOBJEXT
+USE_INCLUDED_LIBINTL
+BUILD_INCLUDED_LIBINTL
+INTLBISON
+LTLIBICONV
+LIBICONV
+GLIBC21
+ALLOCA
+MSGMERGE
+XGETTEXT
+GMSGFMT
+MSGFMT
+USE_NLS
+MKINSTALLDIRS
+SIZE
+MAKE_SHELL
+SET_MAKE
+YFLAGS
+YACC
+RANLIB
+AR
+INSTALL_DATA
+INSTALL_SCRIPT
+INSTALL_PROGRAM
+TILDE_LIB
+HIST_LIBDIR
+HISTORY_DEP
+HISTORY_LIB
+RL_INCLUDE
+RL_INCLUDEDIR
+RL_LIBDIR
+READLINE_DEP
+READLINE_LIB
+RL_MINOR
+RL_MAJOR
+RL_VERSION
+LDFLAGS_FOR_BUILD
+CPPFLAGS_FOR_BUILD
+CFLAGS_FOR_BUILD
+STATIC_LD
+CC_FOR_BUILD
+SIGNAMES_O
+SIGNAMES_H
+CROSS_COMPILE
+EGREP
+GREP
+CPP
+OBJEXT
+EXEEXT
+ac_ct_CC
+CPPFLAGS
+LDFLAGS
+CFLAGS
+CC
+HELPSTRINGS
+HELPINSTALL
+HELPDIRDEFINE
+HELPDIR
+MALLOC_DEP
+MALLOC_LDFLAGS
+MALLOC_LIBRARY
+MALLOC_LIB
+MALLOC_SRC
+MALLOC_TARGET
+PURIFY
+TESTSCRIPT
+DEBUGGER_START_FILE
+lispdir
+EMACS
+host_os
+host_vendor
+host_cpu
+host
+build_os
+build_vendor
+build_cpu
+build
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
ac_subst_files=''
ac_user_opts='
enable_option_checking
if test -n "$ac_unrecognized_opts"; then
case $enable_option_checking in
no) ;;
- fatal) { $as_echo "$as_me: error: Unrecognized options: $ac_unrecognized_opts" >&2
+ fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2
{ (exit 1); exit 1; }; } ;;
- *) $as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2 ;;
+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
esac
fi
ac_pwd=`pwd` && test -n "$ac_pwd" &&
ac_ls_di=`ls -di .` &&
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
- { $as_echo "$as_me: error: Working directory cannot be determined" >&2
+ { $as_echo "$as_me: error: working directory cannot be determined" >&2
{ (exit 1); exit 1; }; }
test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
{ $as_echo "$as_me: error: pwd does not report name of working directory" >&2
if $ac_init_version; then
cat <<\_ACEOF
bash configure 4.0-release
-generated by GNU Autoconf 2.62
+generated by GNU Autoconf 2.63
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
running configure, to aid debugging if configure makes a mistake.
It was created by bash $as_me 4.0-release, which was
-generated by GNU Autoconf 2.62. Invocation command line was
+generated by GNU Autoconf 2.63. Invocation command line was
$ $0 $@
case $ac_val in #(
*${as_nl}*)
case $ac_var in #(
- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-$as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
+ *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
esac
case $ac_var in #(
_ | IFS | as_nl) ;; #(
fi
done
if $ac_cache_corrupted; then
+ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
{ { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&5
-$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&5
-$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
fi
-test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
+test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
See \`config.log' for more details." >&5
$as_echo "$as_me: error: no acceptable C compiler found in \$PATH
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
# Provide some information about the compiler.
$as_echo "$as_me:$LINENO: checking for C compiler version" >&5
$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
+{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables
See \`config.log' for more details." >&5
$as_echo "$as_me: error: C compiler cannot create executables
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
fi
ac_exeext=$ac_cv_exeext
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
- { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
If you meant to cross compile, use \`--host'.
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot run C compiled programs.
If you meant to cross compile, use \`--host'.
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
fi
fi
esac
done
else
- { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
rm -f conftest$ac_cv_exeext
$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
+{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
rm -f conftest.$ac_cv_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5
$as_echo "$ac_cv_lib_cposix_strerror" >&6; }
-if test $ac_cv_lib_cposix_strerror = yes; then
+if test "x$ac_cv_lib_cposix_strerror" = x""yes; then
LIBS="$LIBS -lcposix"
fi
if $ac_preproc_ok; then
:
else
- { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
See \`config.log' for more details." >&5
$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
ac_ext=c
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_cv_header_minix_config_h" >&6; }
fi
-if test $ac_cv_header_minix_config_h = yes; then
+if test "x$ac_cv_header_minix_config_h" = x""yes; then
MINIX=yes
else
MINIX=
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_tgetent" >&5
$as_echo "$ac_cv_func_tgetent" >&6; }
-if test $ac_cv_func_tgetent = yes; then
+if test "x$ac_cv_func_tgetent" = x""yes; then
bash_cv_termcap_lib=libc
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltermcap" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_tgetent" >&5
$as_echo "$ac_cv_lib_termcap_tgetent" >&6; }
-if test $ac_cv_lib_termcap_tgetent = yes; then
+if test "x$ac_cv_lib_termcap_tgetent" = x""yes; then
bash_cv_termcap_lib=libtermcap
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltinfo" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tinfo_tgetent" >&5
$as_echo "$ac_cv_lib_tinfo_tgetent" >&6; }
-if test $ac_cv_lib_tinfo_tgetent = yes; then
+if test "x$ac_cv_lib_tinfo_tgetent" = x""yes; then
bash_cv_termcap_lib=libtinfo
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lcurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_curses_tgetent" >&5
$as_echo "$ac_cv_lib_curses_tgetent" >&6; }
-if test $ac_cv_lib_curses_tgetent = yes; then
+if test "x$ac_cv_lib_curses_tgetent" = x""yes; then
bash_cv_termcap_lib=libcurses
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lncurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_tgetent" >&5
$as_echo "$ac_cv_lib_ncurses_tgetent" >&6; }
-if test $ac_cv_lib_ncurses_tgetent = yes; then
+if test "x$ac_cv_lib_ncurses_tgetent" = x""yes; then
bash_cv_termcap_lib=libncurses
else
bash_cv_termcap_lib=gnutermcap
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&5
-$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
RANLIB=$ac_ct_RANLIB
$as_echo_n "(cached) " >&6
else
ac_cv_c_bigendian=unknown
- # See if __BIG_ENDIAN__ or __LITTLE_ENDIAN__ is defined.
- cat >conftest.$ac_ext <<_ACEOF
+ # See if we're dealing with a universal compiler.
+ cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
-#if ! (defined __BIG_ENDIAN__ || defined __LITTLE_ENDIAN__)
- neither is defined;
+#ifndef __APPLE_CC__
+ not a universal capable compiler
#endif
typedef int dummy;
test -z "$ac_c_werror_flag" ||
test ! -s conftest.err
} && test -s conftest.$ac_objext; then
- ac_cv_c_bigendian=universal
+
+ # Check for potential -arch flags. It is not universal unless
+ # there are some -arch flags. Note that *ppc* also matches
+ # ppc64. This check is also rather less than ideal.
+ case "${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" in #(
+ *-arch*ppc*|*-arch*i386*|*-arch*x86_64*) ac_cv_c_bigendian=universal;;
+ esac
else
$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
no)
;; #(
universal)
- ;; #(
+
+cat >>confdefs.h <<\_ACEOF
+@%:@define AC_APPLE_UNIVERSAL_BUILD 1
+_ACEOF
+
+ ;; #(
*)
{ { $as_echo "$as_me:$LINENO: error: unknown endianness
presetting ac_cv_c_bigendian=no (or yes) will help" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
$as_echo "$ac_cv_type_off_t" >&6; }
-if test $ac_cv_type_off_t = yes; then
+if test "x$ac_cv_type_off_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
$as_echo "$ac_cv_type_size_t" >&6; }
-if test $ac_cv_type_size_t = yes; then
+if test "x$ac_cv_type_size_t" = x""yes; then
:
else
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define CRAY_STACKSEG_END $ac_func
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define CRAY_STACKSEG_END $ac_func
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5
$as_echo "$ac_cv_func__doprnt" >&6; }
-if test $ac_cv_func__doprnt = yes; then
+if test "x$ac_cv_func__doprnt" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_DOPRNT 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func___setostype" >&5
$as_echo "$ac_cv_func___setostype" >&6; }
-if test $ac_cv_func___setostype = yes; then
+if test "x$ac_cv_func___setostype" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_SETOSTYPE 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wait3" >&5
$as_echo "$ac_cv_func_wait3" >&6; }
-if test $ac_cv_func_wait3 = yes; then
+if test "x$ac_cv_func_wait3" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WAIT3 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_isinf" >&5
$as_echo "$ac_cv_func_isinf" >&6; }
-if test $ac_cv_func_isinf = yes; then
+if test "x$ac_cv_func_isinf" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_ISINF_IN_LIBC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_isnan" >&5
$as_echo "$ac_cv_func_isnan" >&6; }
-if test $ac_cv_func_isnan = yes; then
+if test "x$ac_cv_func_isnan" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_ISNAN_IN_LIBC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mkfifo" >&5
$as_echo "$ac_cv_func_mkfifo" >&6; }
-if test $ac_cv_func_mkfifo = yes; then
+if test "x$ac_cv_func_mkfifo" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_MKFIFO 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_confstr" >&5
$as_echo "$ac_cv_have_decl_confstr" >&6; }
-if test $ac_cv_have_decl_confstr = yes; then
+if test "x$ac_cv_have_decl_confstr" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_CONFSTR 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_printf" >&5
$as_echo "$ac_cv_have_decl_printf" >&6; }
-if test $ac_cv_have_decl_printf = yes; then
+if test "x$ac_cv_have_decl_printf" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_PRINTF 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_sbrk" >&5
$as_echo "$ac_cv_have_decl_sbrk" >&6; }
-if test $ac_cv_have_decl_sbrk = yes; then
+if test "x$ac_cv_have_decl_sbrk" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_SBRK 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_setregid" >&5
$as_echo "$ac_cv_have_decl_setregid" >&6; }
-if test $ac_cv_have_decl_setregid = yes; then
+if test "x$ac_cv_have_decl_setregid" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_SETREGID 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_strcpy" >&5
$as_echo "$ac_cv_have_decl_strcpy" >&6; }
-if test $ac_cv_have_decl_strcpy = yes; then
+if test "x$ac_cv_have_decl_strcpy" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_STRCPY 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_strsignal" >&5
$as_echo "$ac_cv_have_decl_strsignal" >&6; }
-if test $ac_cv_have_decl_strsignal = yes; then
+if test "x$ac_cv_have_decl_strsignal" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_STRSIGNAL 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_strtold" >&5
$as_echo "$ac_cv_have_decl_strtold" >&6; }
-if test $ac_cv_have_decl_strtold = yes; then
+if test "x$ac_cv_have_decl_strtold" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_STRTOLD 1
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mbrlen" >&5
$as_echo "$ac_cv_func_mbrlen" >&6; }
-if test $ac_cv_func_mbrlen = yes; then
+if test "x$ac_cv_func_mbrlen" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_MBRLEN 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mbscmp" >&5
$as_echo "$ac_cv_func_mbscmp" >&6; }
-if test $ac_cv_func_mbscmp = yes; then
+if test "x$ac_cv_func_mbscmp" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_MBSCMP 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mbsrtowcs" >&5
$as_echo "$ac_cv_func_mbsrtowcs" >&6; }
-if test $ac_cv_func_mbsrtowcs = yes; then
+if test "x$ac_cv_func_mbsrtowcs" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_MBSRTOWCS 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcrtomb" >&5
$as_echo "$ac_cv_func_wcrtomb" >&6; }
-if test $ac_cv_func_wcrtomb = yes; then
+if test "x$ac_cv_func_wcrtomb" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WCRTOMB 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcscoll" >&5
$as_echo "$ac_cv_func_wcscoll" >&6; }
-if test $ac_cv_func_wcscoll = yes; then
+if test "x$ac_cv_func_wcscoll" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WCSCOLL 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcsdup" >&5
$as_echo "$ac_cv_func_wcsdup" >&6; }
-if test $ac_cv_func_wcsdup = yes; then
+if test "x$ac_cv_func_wcsdup" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WCSDUP 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcwidth" >&5
$as_echo "$ac_cv_func_wcwidth" >&6; }
-if test $ac_cv_func_wcwidth = yes; then
+if test "x$ac_cv_func_wcwidth" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WCWIDTH 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wctype" >&5
$as_echo "$ac_cv_func_wctype" >&6; }
-if test $ac_cv_func_wctype = yes; then
+if test "x$ac_cv_func_wctype" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WCTYPE 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
-if test $ac_cv_lib_dl_dlopen = yes; then
+if test "x$ac_cv_lib_dl_dlopen" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_LIBDL 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_sys_siglist" >&5
$as_echo "$ac_cv_have_decl_sys_siglist" >&6; }
-if test $ac_cv_have_decl_sys_siglist = yes; then
+if test "x$ac_cv_have_decl_sys_siglist" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_SYS_SIGLIST 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sun_getpwent" >&5
$as_echo "$ac_cv_lib_sun_getpwent" >&6; }
-if test $ac_cv_lib_sun_getpwent = yes; then
+if test "x$ac_cv_lib_sun_getpwent" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_LIBSUN 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_getpeername" >&5
$as_echo "$ac_cv_lib_socket_getpeername" >&6; }
-if test $ac_cv_lib_socket_getpeername = yes; then
+if test "x$ac_cv_lib_socket_getpeername" = x""yes; then
bash_cv_have_socklib=yes
else
bash_cv_have_socklib=no
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_t_open" >&5
$as_echo "$ac_cv_lib_nsl_t_open" >&6; }
-if test $ac_cv_lib_nsl_t_open = yes; then
+if test "x$ac_cv_lib_nsl_t_open" = x""yes; then
bash_cv_have_libnsl=yes
else
bash_cv_have_libnsl=no
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
$as_echo "$ac_cv_type_off_t" >&6; }
-if test $ac_cv_type_off_t = yes; then
+if test "x$ac_cv_type_off_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5
$as_echo "$ac_cv_type_mode_t" >&6; }
-if test $ac_cv_type_mode_t = yes; then
+if test "x$ac_cv_type_mode_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5
$as_echo "$ac_cv_type_pid_t" >&6; }
-if test $ac_cv_type_pid_t = yes; then
+if test "x$ac_cv_type_pid_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
$as_echo "$ac_cv_type_size_t" >&6; }
-if test $ac_cv_type_size_t = yes; then
+if test "x$ac_cv_type_size_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5
$as_echo "$ac_cv_type_ssize_t" >&6; }
-if test $ac_cv_type_ssize_t = yes; then
+if test "x$ac_cv_type_ssize_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_time_t" >&5
$as_echo "$ac_cv_type_time_t" >&6; }
-if test $ac_cv_type_time_t = yes; then
+if test "x$ac_cv_type_time_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_sig_atomic_t" >&5
$as_echo "$ac_cv_type_sig_atomic_t" >&6; }
-if test $ac_cv_type_sig_atomic_t = yes; then
+if test "x$ac_cv_type_sig_atomic_t" = x""yes; then
:
else
case $ac_lo in
?*) ac_cv_sizeof_char=$ac_lo;;
'') if test "$ac_cv_type_char" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_char" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char=0
fi
case $ac_lo in
?*) ac_cv_sizeof_short=$ac_lo;;
'') if test "$ac_cv_type_short" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (short)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_short=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_short" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (short)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_short=0
fi
case $ac_lo in
?*) ac_cv_sizeof_int=$ac_lo;;
'') if test "$ac_cv_type_int" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (int)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_int=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_int" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (int)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_int=0
fi
case $ac_lo in
?*) ac_cv_sizeof_long=$ac_lo;;
'') if test "$ac_cv_type_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long=0
fi
case $ac_lo in
?*) ac_cv_sizeof_char_p=$ac_lo;;
'') if test "$ac_cv_type_char_p" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char_p=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_char_p" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char_p=0
fi
case $ac_lo in
?*) ac_cv_sizeof_double=$ac_lo;;
'') if test "$ac_cv_type_double" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (double)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_double=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_double" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (double)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_double=0
fi
case $ac_lo in
?*) ac_cv_sizeof_long_long=$ac_lo;;
'') if test "$ac_cv_type_long_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long_long=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_long_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long_long=0
fi
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_int" >&5
$as_echo "$ac_cv_type_u_int" >&6; }
-if test $ac_cv_type_u_int = yes; then
+if test "x$ac_cv_type_u_int" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_long" >&5
$as_echo "$ac_cv_type_u_long" >&6; }
-if test $ac_cv_type_u_long = yes; then
+if test "x$ac_cv_type_u_long" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits16_t" >&5
$as_echo "$ac_cv_type_bits16_t" >&6; }
-if test $ac_cv_type_bits16_t = yes; then
+if test "x$ac_cv_type_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits16_t" >&5
$as_echo "$ac_cv_type_bits16_t" >&6; }
-if test $ac_cv_type_bits16_t = yes; then
+if test "x$ac_cv_type_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits16_t" >&5
$as_echo "$ac_cv_type_bits16_t" >&6; }
-if test $ac_cv_type_bits16_t = yes; then
+if test "x$ac_cv_type_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits16_t" >&5
$as_echo "$ac_cv_type_u_bits16_t" >&6; }
-if test $ac_cv_type_u_bits16_t = yes; then
+if test "x$ac_cv_type_u_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits16_t" >&5
$as_echo "$ac_cv_type_u_bits16_t" >&6; }
-if test $ac_cv_type_u_bits16_t = yes; then
+if test "x$ac_cv_type_u_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits16_t" >&5
$as_echo "$ac_cv_type_u_bits16_t" >&6; }
-if test $ac_cv_type_u_bits16_t = yes; then
+if test "x$ac_cv_type_u_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits32_t" >&5
$as_echo "$ac_cv_type_bits32_t" >&6; }
-if test $ac_cv_type_bits32_t = yes; then
+if test "x$ac_cv_type_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits32_t" >&5
$as_echo "$ac_cv_type_bits32_t" >&6; }
-if test $ac_cv_type_bits32_t = yes; then
+if test "x$ac_cv_type_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits32_t" >&5
$as_echo "$ac_cv_type_bits32_t" >&6; }
-if test $ac_cv_type_bits32_t = yes; then
+if test "x$ac_cv_type_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits32_t" >&5
$as_echo "$ac_cv_type_u_bits32_t" >&6; }
-if test $ac_cv_type_u_bits32_t = yes; then
+if test "x$ac_cv_type_u_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits32_t" >&5
$as_echo "$ac_cv_type_u_bits32_t" >&6; }
-if test $ac_cv_type_u_bits32_t = yes; then
+if test "x$ac_cv_type_u_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits32_t" >&5
$as_echo "$ac_cv_type_u_bits32_t" >&6; }
-if test $ac_cv_type_u_bits32_t = yes; then
+if test "x$ac_cv_type_u_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_termios_c_line" >&5
$as_echo "$ac_cv_member_struct_termios_c_line" >&6; }
-if test $ac_cv_member_struct_termios_c_line = yes; then
+if test "x$ac_cv_member_struct_termios_c_line" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define TERMIOS_LDISC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_termio_c_line" >&5
$as_echo "$ac_cv_member_struct_termio_c_line" >&6; }
-if test $ac_cv_member_struct_termio_c_line = yes; then
+if test "x$ac_cv_member_struct_termio_c_line" = x""yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define TERMIO_LDISC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_blocks" >&5
$as_echo "$ac_cv_member_struct_stat_st_blocks" >&6; }
-if test $ac_cv_member_struct_stat_st_blocks = yes; then
+if test "x$ac_cv_member_struct_stat_st_blocks" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_STRUCT_STAT_ST_BLOCKS 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_tm_tm_zone" >&5
$as_echo "$ac_cv_member_struct_tm_tm_zone" >&6; }
-if test $ac_cv_member_struct_tm_tm_zone = yes; then
+if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_STRUCT_TM_TM_ZONE 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_tzname" >&5
$as_echo "$ac_cv_have_decl_tzname" >&6; }
-if test $ac_cv_have_decl_tzname = yes; then
+if test "x$ac_cv_have_decl_tzname" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_TZNAME 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_fpurge" >&5
$as_echo "$ac_cv_have_decl_fpurge" >&6; }
-if test $ac_cv_have_decl_fpurge = yes; then
+if test "x$ac_cv_have_decl_fpurge" = x""yes; then
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_DECL_FPURGE 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_tgetent" >&5
$as_echo "$ac_cv_func_tgetent" >&6; }
-if test $ac_cv_func_tgetent = yes; then
+if test "x$ac_cv_func_tgetent" = x""yes; then
bash_cv_termcap_lib=libc
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltermcap" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_tgetent" >&5
$as_echo "$ac_cv_lib_termcap_tgetent" >&6; }
-if test $ac_cv_lib_termcap_tgetent = yes; then
+if test "x$ac_cv_lib_termcap_tgetent" = x""yes; then
bash_cv_termcap_lib=libtermcap
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltinfo" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tinfo_tgetent" >&5
$as_echo "$ac_cv_lib_tinfo_tgetent" >&6; }
-if test $ac_cv_lib_tinfo_tgetent = yes; then
+if test "x$ac_cv_lib_tinfo_tgetent" = x""yes; then
bash_cv_termcap_lib=libtinfo
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lcurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_curses_tgetent" >&5
$as_echo "$ac_cv_lib_curses_tgetent" >&6; }
-if test $ac_cv_lib_curses_tgetent = yes; then
+if test "x$ac_cv_lib_curses_tgetent" = x""yes; then
bash_cv_termcap_lib=libcurses
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lncurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_tgetent" >&5
$as_echo "$ac_cv_lib_ncurses_tgetent" >&6; }
-if test $ac_cv_lib_ncurses_tgetent = yes; then
+if test "x$ac_cv_lib_ncurses_tgetent" = x""yes; then
bash_cv_termcap_lib=libncurses
else
bash_cv_termcap_lib=gnutermcap
case $ac_val in #(
*${as_nl}*)
case $ac_var in #(
- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-$as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
+ *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
esac
case $ac_var in #(
_ | IFS | as_nl) ;; #(
+
: ${CONFIG_STATUS=./config.status}
ac_write_fail=0
ac_clean_files_save=$ac_clean_files
# values after options handling.
ac_log="
This file was extended by bash $as_me 4.0-release, which was
-generated by GNU Autoconf 2.62. Invocation command line was
+generated by GNU Autoconf 2.63. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
_ACEOF
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+case $ac_config_headers in *"
+"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
+esac
+
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
# Files that config.status was made for.
config_files="$ac_config_files"
\`$as_me' instantiates files from templates according to the
current configuration.
-Usage: $0 [OPTIONS] [FILE]...
+Usage: $0 [OPTION]... [FILE]...
-h, --help print this help, then exit
-V, --version print version number and configuration settings, then exit
- -q, --quiet do not print progress messages
+ -q, --quiet, --silent
+ do not print progress messages
-d, --debug don't remove temporary files
--recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
+ --file=FILE[:TEMPLATE]
instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
+ --header=FILE[:TEMPLATE]
instantiate the configuration header FILE
Configuration files:
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_version="\\
bash config.status 4.0-release
-configured by $0, generated by GNU Autoconf 2.62,
+configured by $0, generated by GNU Autoconf 2.63,
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
Copyright (C) 2008 Free Software Foundation, Inc.
$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
{ (exit 1); exit 1; }; }
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` = $ac_delim_num; then
+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+ if test $ac_delim_n = $ac_delim_num; then
break
elif $ac_last_try; then
{ { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
}
split(mac1, mac2, "(") #)
macro = mac2[1]
+ prefix = substr(line, 1, index(line, defundef) - 1)
if (D_is_set[macro]) {
# Preserve the white space surrounding the "#".
- prefix = substr(line, 1, index(line, defundef) - 1)
print prefix "define", macro P[macro] D[macro]
next
} else {
# in the case of _POSIX_SOURCE, which is predefined and required
# on some systems where configure will not decide to define it.
if (defundef == "undef") {
- print "/*", line, "*/"
+ print "/*", prefix defundef, macro, "*/"
next
}
}
esac
case $ac_mode$ac_tag in
:[FHL]*:*);;
- :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
-$as_echo "$as_me: error: Invalid tag $ac_tag." >&2;}
+ :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
+$as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
{ (exit 1); exit 1; }; };;
:[FH]-) ac_tag=-:-;;
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
$ac_cs_success || { (exit 1); exit 1; }
fi
if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
- { $as_echo "$as_me:$LINENO: WARNING: Unrecognized options: $ac_unrecognized_opts" >&5
-$as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2;}
+ { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
m4trace:configure.in:380: -1- AC_SUBST_TRACE([OBJEXT])
m4trace:configure.in:380: -1- m4_pattern_allow([^OBJEXT$])
m4trace:configure.in:384: -1- _m4_warn([obsolete], [The macro `AC_MINIX' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/specific.m4:456: AC_MINIX is expanded from...
+You should run autoupdate.], [../../lib/autoconf/specific.m4:459: AC_MINIX is expanded from...
configure.in:384: the top level])
m4trace:configure.in:384: -1- AC_SUBST([CPP])
m4trace:configure.in:384: -1- AC_SUBST_TRACE([CPP])
m4trace:configure.in:384: -1- m4_pattern_allow([^_MINIX$])
m4trace:configure.in:384: -1- AH_OUTPUT([_MINIX], [/* Define to 1 if on MINIX. */
#undef _MINIX])
-m4trace:configure.in:384: -1- AH_OUTPUT([__EXTENSIONS__], [/* Enable extensions on AIX 3, Interix. */
+m4trace:configure.in:384: -1- AH_OUTPUT([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
m4trace:configure.in:484: -1- AC_SUBST_TRACE([LDFLAGS_FOR_BUILD])
m4trace:configure.in:484: -1- m4_pattern_allow([^LDFLAGS_FOR_BUILD$])
m4trace:configure.in:498: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1763: RL_LIB_READLINE_VERSION is expanded from...
configure.in:498: the top level])
m4trace:configure.in:498: -1- AC_DEFINE_TRACE_LITERAL([RL_READLINE_VERSION])
#undef inline
#endif])
m4trace:configure.in:635: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
- significant byte first (like Motorola and SPARC, unlike Intel and VAX). */
-#if defined __BIG_ENDIAN__
-# define WORDS_BIGENDIAN 1
-#elif ! defined __LITTLE_ENDIAN__
-# undef WORDS_BIGENDIAN
+ significant byte first (like Motorola and SPARC, unlike Intel). */
+#if defined AC_APPLE_UNIVERSAL_BUILD
+# if defined __BIG_ENDIAN__
+# define WORDS_BIGENDIAN 1
+# endif
+#else
+# ifndef WORDS_BIGENDIAN
+# undef WORDS_BIGENDIAN
+# endif
#endif])
m4trace:configure.in:635: -1- AC_DEFINE_TRACE_LITERAL([WORDS_BIGENDIAN])
m4trace:configure.in:635: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
+m4trace:configure.in:635: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD])
+m4trace:configure.in:635: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
+m4trace:configure.in:635: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */
+#undef AC_APPLE_UNIVERSAL_BUILD])
m4trace:configure.in:636: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRINGIZE])
m4trace:configure.in:636: -1- m4_pattern_allow([^HAVE_STRINGIZE$])
m4trace:configure.in:636: -1- AH_OUTPUT([HAVE_STRINGIZE], [/* Define to 1 if cpp supports the ANSI @%:@ stringizing operator. */
m4trace:configure.in:644: -1- AC_SUBST_TRACE([MSGMERGE])
m4trace:configure.in:644: -1- m4_pattern_allow([^MSGMERGE$])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/status.m4:1021: AC_OUTPUT_COMMANDS is expanded from...
+You should run autoupdate.], [../../lib/autoconf/status.m4:1022: AC_OUTPUT_COMMANDS is expanded from...
aclocal.m4:3664: AM_PO_SUBDIRS is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
configure.in:644: the top level])
m4trace:configure.in:644: -1- AC_SUBST_TRACE([GLIBC21])
m4trace:configure.in:644: -1- m4_pattern_allow([^GLIBC21$])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2570: gt_INTDIV0 is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
m4trace:configure.in:644: -1- AH_OUTPUT([INTDIV0_RAISES_SIGFPE], [/* Define if integer division by zero raises signal SIGFPE. */
#undef INTDIV0_RAISES_SIGFPE])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2672: jm_AC_HEADER_INTTYPES_H is expanded from...
aclocal.m4:3973: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
declares uintmax_t. */
#undef HAVE_INTTYPES_H_WITH_UINTMAX])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:3943: jm_AC_HEADER_STDINT_H is expanded from...
aclocal.m4:3973: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
uintmax_t. */
#undef HAVE_STDINT_H_WITH_UINTMAX])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:4000: jm_AC_TYPE_UNSIGNED_LONG_LONG is expanded from...
aclocal.m4:3973: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
m4trace:configure.in:644: -1- AH_OUTPUT([HAVE_UINTMAX_T], [/* Define if you have the \'uintmax_t\' type in <stdint.h> or <inttypes.h>. */
#undef HAVE_UINTMAX_T])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2645: gt_HEADER_INTTYPES_H is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
m4trace:configure.in:644: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define if <inttypes.h> exists and doesn\'t clash with <sys/types.h>. */
#undef HAVE_INTTYPES_H])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2700: gt_INTTYPES_PRI is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
m4trace:configure.in:644: -1- AH_OUTPUT([HAVE___FSETLOCKING], [/* Define to 1 if you have the `__fsetlocking\' function. */
#undef HAVE___FSETLOCKING])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2478: AM_ICONV_LINK is expanded from...
aclocal.m4:2533: AM_ICONV is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
configure.in:644: the top level])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2478: AM_ICONV_LINK is expanded from...
aclocal.m4:2533: AM_ICONV is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
m4trace:configure.in:644: -1- AC_SUBST_TRACE([LTLIBICONV])
m4trace:configure.in:644: -1- m4_pattern_allow([^LTLIBICONV$])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:2533: AM_ICONV is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
m4trace:configure.in:644: -1- AH_OUTPUT([ICONV_CONST], [/* Define as const if the declaration of iconv() needs const. */
#undef ICONV_CONST])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:1997: AM_LANGINFO_CODESET is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
m4trace:configure.in:644: -1- AH_OUTPUT([HAVE_LANGINFO_CODESET], [/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
#undef HAVE_LANGINFO_CODESET])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2767: AM_LC_MESSAGES is expanded from...
aclocal.m4:2356: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
m4trace:configure.in:644: -1- AC_SUBST_TRACE([USE_NLS])
m4trace:configure.in:644: -1- m4_pattern_allow([^USE_NLS$])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
configure.in:644: the top level])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
configure.in:644: the top level])
m4trace:configure.in:644: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:2068: AM_GNU_GETTEXT is expanded from...
configure.in:644: the top level])
m4trace:configure.in:644: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS])
m4trace:configure.in:699: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS vprint.$ac_objext"])
m4trace:configure.in:699: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.in:699: -1- m4_pattern_allow([^LIB@&t@OBJS$])
+m4trace:configure.in:703: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/types.m4:699: AC_TYPE_SIGNAL is expanded from...
+configure.in:703: the top level])
m4trace:configure.in:703: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
m4trace:configure.in:703: -1- m4_pattern_allow([^RETSIGTYPE$])
m4trace:configure.in:703: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
don\'t. */
#undef HAVE_DECL_STRTOLD])
m4trace:configure.in:743: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2643: AC_CHECK_DECL is expanded from...
-../../lib/autoconf/general.m4:2665: AC_CHECK_DECLS is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2644: AC_CHECK_DECL is expanded from...
+../../lib/autoconf/general.m4:2666: AC_CHECK_DECLS is expanded from...
configure.in:743: the top level])
m4trace:configure.in:743: -1- AC_DEFINE_TRACE_LITERAL([STRTOLD_BROKEN])
m4trace:configure.in:743: -1- m4_pattern_allow([^STRTOLD_BROKEN$])
m4trace:configure.in:743: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_STRTOLD])
m4trace:configure.in:743: -1- m4_pattern_allow([^HAVE_DECL_STRTOLD$])
m4trace:configure.in:760: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:100: BASH_CHECK_DECL is expanded from...
configure.in:760: the top level])
m4trace:configure.in:761: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:100: BASH_CHECK_DECL is expanded from...
configure.in:761: the top level])
m4trace:configure.in:762: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:100: BASH_CHECK_DECL is expanded from...
configure.in:762: the top level])
m4trace:configure.in:763: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:100: BASH_CHECK_DECL is expanded from...
configure.in:763: the top level])
m4trace:configure.in:764: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:100: BASH_CHECK_DECL is expanded from...
configure.in:764: the top level])
m4trace:configure.in:765: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:100: BASH_CHECK_DECL is expanded from...
configure.in:765: the top level])
m4trace:configure.in:767: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */
m4trace:configure.in:795: -1- AH_OUTPUT([HAVE_ISWCTYPE], [/* Define to 1 if you have the `iswctype\' function. */
#undef HAVE_ISWCTYPE])
m4trace:configure.in:795: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:1686: BASH_CHECK_MULTIBYTE is expanded from...
configure.in:795: the top level])
m4trace:configure.in:795: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LANGINFO_CODESET])
m4trace:configure.in:795: -1- m4_pattern_allow([^HAVE_LANGINFO_CODESET$])
m4trace:configure.in:795: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:1686: BASH_CHECK_MULTIBYTE is expanded from...
configure.in:795: the top level])
m4trace:configure.in:795: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCHAR_T])
m4trace:configure.in:795: -1- AH_OUTPUT([HAVE_WCHAR_T], [/* systems should define this type here */
#undef HAVE_WCHAR_T])
m4trace:configure.in:795: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:1686: BASH_CHECK_MULTIBYTE is expanded from...
configure.in:795: the top level])
m4trace:configure.in:795: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCTYPE_T])
m4trace:configure.in:795: -1- AH_OUTPUT([HAVE_WCTYPE_T], [/* systems should define this type here */
#undef HAVE_WCTYPE_T])
m4trace:configure.in:795: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:1686: BASH_CHECK_MULTIBYTE is expanded from...
configure.in:795: the top level])
m4trace:configure.in:795: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WINT_T])
m4trace:configure.in:800: -1- AH_OUTPUT([HAVE_DLSYM], [/* Define to 1 if you have the `dlsym\' function. */
#undef HAVE_DLSYM])
m4trace:configure.in:804: -1- _m4_warn([obsolete], [The macro `AC_DECL_SYS_SIGLIST' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/specific.m4:62: AC_DECL_SYS_SIGLIST is expanded from...
+You should run autoupdate.], [../../lib/autoconf/specific.m4:63: AC_DECL_SYS_SIGLIST is expanded from...
configure.in:804: the top level])
m4trace:configure.in:804: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_SIGLIST])
m4trace:configure.in:804: -1- m4_pattern_allow([^HAVE_DECL_SYS_SIGLIST$])
m4trace:configure.in:804: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_SIGLIST])
m4trace:configure.in:804: -1- m4_pattern_allow([^HAVE_DECL_SYS_SIGLIST$])
m4trace:configure.in:808: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:560: BASH_FUNC_INET_ATON is expanded from...
configure.in:808: the top level])
m4trace:configure.in:808: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INET_ATON])
m4trace:configure.in:819: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPEERNAME])
m4trace:configure.in:819: -1- m4_pattern_allow([^HAVE_GETPEERNAME$])
m4trace:configure.in:823: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:729: BASH_FUNC_GETHOSTBYNAME is expanded from...
configure.in:823: the top level])
m4trace:configure.in:823: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETHOSTBYNAME])
m4trace:configure.in:834: -1- AH_OUTPUT([time_t], [/* Define to `long\' if <sys/types.h> does not define. */
#undef time_t])
m4trace:configure.in:836: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:469: BASH_TYPE_LONG_LONG is expanded from...
configure.in:836: the top level])
m4trace:configure.in:836: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LONG_LONG])
m4trace:configure.in:836: -1- m4_pattern_allow([^HAVE_LONG_LONG$])
m4trace:configure.in:837: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:483: BASH_TYPE_UNSIGNED_LONG_LONG is expanded from...
configure.in:837: the top level])
m4trace:configure.in:837: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNSIGNED_LONG_LONG])
m4trace:configure.in:837: -1- m4_pattern_allow([^HAVE_UNSIGNED_LONG_LONG$])
+m4trace:configure.in:839: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
+You should run autoupdate.], [../../lib/autoconf/types.m4:699: AC_TYPE_SIGNAL is expanded from...
+configure.in:839: the top level])
m4trace:configure.in:839: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
m4trace:configure.in:839: -1- m4_pattern_allow([^RETSIGTYPE$])
m4trace:configure.in:839: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
#undef RETSIGTYPE])
m4trace:configure.in:840: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:534: BASH_TYPE_SIG_ATOMIC_T is expanded from...
configure.in:840: the top level])
m4trace:configure.in:840: -1- AC_DEFINE_TRACE_LITERAL([sig_atomic_t])
m4trace:configure.in:867: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HASH_BANG_EXEC])
m4trace:configure.in:867: -1- m4_pattern_allow([^HAVE_HASH_BANG_EXEC$])
m4trace:configure.in:872: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:546: BASH_FUNC_LSTAT is expanded from...
configure.in:872: the top level])
m4trace:configure.in:872: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LSTAT])
m4trace:configure.in:872: -1- m4_pattern_allow([^HAVE_LSTAT$])
m4trace:configure.in:876: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1877: BASH_FUNC_CTYPE_NONASCII is expanded from...
configure.in:876: the top level])
m4trace:configure.in:876: -1- AC_DEFINE_TRACE_LITERAL([CTYPE_NON_ASCII])
m4trace:configure.in:876: -1- m4_pattern_allow([^CTYPE_NON_ASCII$])
m4trace:configure.in:877: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:267: BASH_FUNC_DUP2_CLOEXEC_CHECK is expanded from...
configure.in:877: the top level])
m4trace:configure.in:877: -1- AC_DEFINE_TRACE_LITERAL([DUP2_BROKEN])
m4trace:configure.in:877: -1- m4_pattern_allow([^DUP2_BROKEN$])
m4trace:configure.in:878: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1232: BASH_SYS_PGRP_SYNC is expanded from...
configure.in:878: the top level])
m4trace:configure.in:878: -1- AC_DEFINE_TRACE_LITERAL([PGRP_PIPE])
m4trace:configure.in:878: -1- m4_pattern_allow([^PGRP_PIPE$])
m4trace:configure.in:879: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1192: BASH_SYS_SIGNAL_VINTAGE is expanded from...
configure.in:879: the top level])
m4trace:configure.in:879: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2517: AC_LINK_IFELSE is expanded from...
-../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2518: AC_LINK_IFELSE is expanded from...
+../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1192: BASH_SYS_SIGNAL_VINTAGE is expanded from...
configure.in:879: the top level])
m4trace:configure.in:879: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2517: AC_LINK_IFELSE is expanded from...
-../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2517: AC_LINK_IFELSE is expanded from...
-../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2518: AC_LINK_IFELSE is expanded from...
+../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2518: AC_LINK_IFELSE is expanded from...
+../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1192: BASH_SYS_SIGNAL_VINTAGE is expanded from...
configure.in:879: the top level])
m4trace:configure.in:879: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_SIGNALS])
m4trace:configure.in:879: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USG_SIGHOLD])
m4trace:configure.in:879: -1- m4_pattern_allow([^HAVE_USG_SIGHOLD$])
m4trace:configure.in:882: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:250: BASH_SYS_ERRLIST is expanded from...
configure.in:882: the top level])
m4trace:configure.in:882: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_ERRLIST])
m4trace:configure.in:882: -1- m4_pattern_allow([^HAVE_SYS_ERRLIST$])
m4trace:configure.in:883: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:208: BASH_SYS_SIGLIST is expanded from...
configure.in:883: the top level])
m4trace:configure.in:883: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_SIGLIST])
m4trace:configure.in:883: -1- m4_pattern_allow([^HAVE_SYS_SIGLIST$])
m4trace:configure.in:884: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:164: BASH_DECL_UNDER_SYS_SIGLIST is expanded from...
aclocal.m4:181: BASH_UNDER_SYS_SIGLIST is expanded from...
configure.in:884: the top level])
m4trace:configure.in:884: -1- AC_DEFINE_TRACE_LITERAL([UNDER_SYS_SIGLIST_DECLARED])
m4trace:configure.in:884: -1- m4_pattern_allow([^UNDER_SYS_SIGLIST_DECLARED$])
m4trace:configure.in:884: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:181: BASH_UNDER_SYS_SIGLIST is expanded from...
configure.in:884: the top level])
m4trace:configure.in:884: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNDER_SYS_SIGLIST])
m4trace:configure.in:884: -1- m4_pattern_allow([^HAVE_UNDER_SYS_SIGLIST$])
m4trace:configure.in:887: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:363: BASH_TYPE_SIGHANDLER is expanded from...
configure.in:887: the top level])
m4trace:configure.in:887: -1- AC_DEFINE_TRACE_LITERAL([VOID_SIGHANDLER])
m4trace:configure.in:894: -1- AC_DEFINE_TRACE_LITERAL([socklen_t])
m4trace:configure.in:894: -1- m4_pattern_allow([^socklen_t$])
m4trace:configure.in:896: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:504: BASH_TYPE_RLIMIT is expanded from...
configure.in:896: the top level])
m4trace:configure.in:896: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2461: AC_COMPILE_IFELSE is expanded from...
-../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2462: AC_COMPILE_IFELSE is expanded from...
+../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:504: BASH_TYPE_RLIMIT is expanded from...
configure.in:896: the top level])
m4trace:configure.in:896: -1- AC_DEFINE_TRACE_LITERAL([RLIMTYPE])
m4trace:configure.in:900: -2- AC_DEFINE_TRACE_LITERAL([TERMIO_LDISC])
m4trace:configure.in:900: -2- m4_pattern_allow([^TERMIO_LDISC$])
m4trace:configure.in:901: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1039: BASH_STRUCT_DIRENT_D_INO is expanded from...
configure.in:901: the top level])
m4trace:configure.in:901: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_INO])
m4trace:configure.in:901: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_INO$])
m4trace:configure.in:902: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1072: BASH_STRUCT_DIRENT_D_FILENO is expanded from...
configure.in:902: the top level])
m4trace:configure.in:902: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_FILENO])
m4trace:configure.in:902: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_FILENO$])
m4trace:configure.in:903: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1105: BASH_STRUCT_DIRENT_D_NAMLEN is expanded from...
configure.in:903: the top level])
m4trace:configure.in:903: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_NAMLEN])
m4trace:configure.in:903: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_NAMLEN$])
m4trace:configure.in:904: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1170: BASH_STRUCT_WINSIZE is expanded from...
configure.in:904: the top level])
m4trace:configure.in:904: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2461: AC_COMPILE_IFELSE is expanded from...
-../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2462: AC_COMPILE_IFELSE is expanded from...
+../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1170: BASH_STRUCT_WINSIZE is expanded from...
configure.in:904: the top level])
m4trace:configure.in:904: -1- AC_DEFINE_TRACE_LITERAL([STRUCT_WINSIZE_IN_SYS_IOCTL])
m4trace:configure.in:909: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_TIMEZONE])
m4trace:configure.in:909: -1- m4_pattern_allow([^HAVE_STRUCT_TIMEZONE$])
m4trace:configure.in:912: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:296: BASH_FUNC_STRSIGNAL is expanded from...
configure.in:912: the top level])
m4trace:configure.in:912: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRSIGNAL])
m4trace:configure.in:912: -1- m4_pattern_allow([^HAVE_STRSIGNAL$])
m4trace:configure.in:913: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:310: BASH_FUNC_OPENDIR_CHECK is expanded from...
configure.in:913: the top level])
m4trace:configure.in:913: -1- AC_DEFINE_TRACE_LITERAL([OPENDIR_NOT_ROBUST])
m4trace:configure.in:913: -1- m4_pattern_allow([^OPENDIR_NOT_ROBUST$])
m4trace:configure.in:914: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:680: BASH_FUNC_ULIMIT_MAXFDS is expanded from...
configure.in:914: the top level])
m4trace:configure.in:914: -1- AC_DEFINE_TRACE_LITERAL([ULIMIT_MAXFDS])
m4trace:configure.in:915: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_FPURGE])
m4trace:configure.in:915: -1- m4_pattern_allow([^HAVE_DECL_FPURGE$])
m4trace:configure.in:916: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:576: BASH_FUNC_GETENV is expanded from...
configure.in:916: the top level])
m4trace:configure.in:916: -1- AC_DEFINE_TRACE_LITERAL([CAN_REDEFINE_GETENV])
m4trace:configure.in:916: -1- m4_pattern_allow([^CAN_REDEFINE_GETENV$])
m4trace:configure.in:918: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:699: BASH_FUNC_GETCWD is expanded from...
configure.in:918: the top level])
m4trace:configure.in:918: -1- AC_DEFINE_TRACE_LITERAL([GETCWD_BROKEN])
m4trace:configure.in:918: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.in:918: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.in:920: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:775: BASH_FUNC_POSIX_SETJMP is expanded from...
configure.in:920: the top level])
m4trace:configure.in:920: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_SIGSETJMP])
m4trace:configure.in:920: -1- m4_pattern_allow([^HAVE_POSIX_SIGSETJMP$])
m4trace:configure.in:921: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:826: BASH_FUNC_STRCOLL is expanded from...
configure.in:921: the top level])
m4trace:configure.in:921: -1- AC_DEFINE_TRACE_LITERAL([STRCOLL_BROKEN])
m4trace:configure.in:921: -1- m4_pattern_allow([^STRCOLL_BROKEN$])
m4trace:configure.in:927: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:621: BASH_FUNC_STD_PUTENV is expanded from...
configure.in:927: the top level])
m4trace:configure.in:927: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_PUTENV])
m4trace:configure.in:929: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_PUTENV])
m4trace:configure.in:929: -1- m4_pattern_allow([^HAVE_STD_PUTENV$])
m4trace:configure.in:932: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
-../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
+../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
aclocal.m4:651: BASH_FUNC_STD_UNSETENV is expanded from...
configure.in:932: the top level])
m4trace:configure.in:932: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_UNSETENV])
m4trace:configure.in:934: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_UNSETENV])
m4trace:configure.in:934: -1- m4_pattern_allow([^HAVE_STD_UNSETENV$])
m4trace:configure.in:937: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:875: BASH_FUNC_PRINTF_A_FORMAT is expanded from...
configure.in:937: the top level])
m4trace:configure.in:937: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PRINTF_A_FORMAT])
m4trace:configure.in:937: -1- m4_pattern_allow([^HAVE_PRINTF_A_FORMAT$])
m4trace:configure.in:940: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1294: BASH_SYS_REINSTALL_SIGHANDLERS is expanded from...
configure.in:940: the top level])
m4trace:configure.in:940: -1- AC_DEFINE_TRACE_LITERAL([MUST_REINSTALL_SIGHANDLERS])
m4trace:configure.in:940: -1- m4_pattern_allow([^MUST_REINSTALL_SIGHANDLERS$])
m4trace:configure.in:941: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1353: BASH_SYS_JOB_CONTROL_MISSING is expanded from...
configure.in:941: the top level])
m4trace:configure.in:941: -1- AC_DEFINE_TRACE_LITERAL([JOB_CONTROL_MISSING])
m4trace:configure.in:941: -1- m4_pattern_allow([^JOB_CONTROL_MISSING$])
m4trace:configure.in:942: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1412: BASH_SYS_NAMED_PIPES is expanded from...
configure.in:942: the top level])
m4trace:configure.in:942: -1- AC_DEFINE_TRACE_LITERAL([NAMED_PIPES_MISSING])
m4trace:configure.in:945: -1- AH_OUTPUT([GWINSZ_IN_SYS_IOCTL], [/* Define to 1 if `TIOCGWINSZ\' requires <sys/ioctl.h>. */
#undef GWINSZ_IN_SYS_IOCTL])
m4trace:configure.in:946: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1493: BASH_HAVE_TIOCSTAT is expanded from...
configure.in:946: the top level])
m4trace:configure.in:946: -1- AC_DEFINE_TRACE_LITERAL([TIOCSTAT_IN_SYS_IOCTL])
m4trace:configure.in:946: -1- m4_pattern_allow([^TIOCSTAT_IN_SYS_IOCTL$])
m4trace:configure.in:947: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1505: BASH_HAVE_FIONREAD is expanded from...
configure.in:947: the top level])
m4trace:configure.in:947: -1- AC_DEFINE_TRACE_LITERAL([FIONREAD_IN_SYS_IOCTL])
m4trace:configure.in:947: -1- m4_pattern_allow([^FIONREAD_IN_SYS_IOCTL$])
m4trace:configure.in:949: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1921: BASH_CHECK_WCONTINUED is expanded from...
configure.in:949: the top level])
m4trace:configure.in:949: -1- AC_DEFINE_TRACE_LITERAL([WCONTINUED_BROKEN])
m4trace:configure.in:949: -1- m4_pattern_allow([^WCONTINUED_BROKEN$])
m4trace:configure.in:952: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1523: BASH_CHECK_SPEED_T is expanded from...
configure.in:952: the top level])
m4trace:configure.in:952: -1- AC_DEFINE_TRACE_LITERAL([SPEED_T_IN_SYS_TYPES])
m4trace:configure.in:953: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPW_DECLS])
m4trace:configure.in:953: -1- m4_pattern_allow([^HAVE_GETPW_DECLS$])
m4trace:configure.in:954: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1650: BASH_CHECK_RTSIGS is expanded from...
configure.in:954: the top level])
m4trace:configure.in:954: -1- AC_DEFINE_TRACE_LITERAL([UNUSABLE_RT_SIGNALS])
m4trace:configure.in:955: -1- AC_SUBST_TRACE([SIGLIST_O])
m4trace:configure.in:955: -1- m4_pattern_allow([^SIGLIST_O$])
m4trace:configure.in:959: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1602: BASH_CHECK_KERNEL_RLIMIT is expanded from...
configure.in:959: the top level])
m4trace:configure.in:959: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:2461: AC_COMPILE_IFELSE is expanded from...
-../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
-../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
-../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
+You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:2462: AC_COMPILE_IFELSE is expanded from...
+../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
+../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
+../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
aclocal.m4:1602: BASH_CHECK_KERNEL_RLIMIT is expanded from...
configure.in:959: the top level])
m4trace:configure.in:959: -1- AC_DEFINE_TRACE_LITERAL([RLIMIT_NEEDS_KERNEL])
#! /bin/sh
# From configure.in for Bash 4.0, version 4.013.
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.62 for bash 4.0-release.
+# Generated by GNU Autoconf 2.63 for bash 4.0-release.
#
# Report bugs to <bug-bash@gnu.org>.
#
ac_header_list=
ac_func_list=
-ac_subst_vars='SHELL
-PATH_SEPARATOR
-PACKAGE_NAME
-PACKAGE_TARNAME
-PACKAGE_VERSION
-PACKAGE_STRING
-PACKAGE_BUGREPORT
-exec_prefix
-prefix
-program_transform_name
-bindir
-sbindir
-libexecdir
-datarootdir
-datadir
-sysconfdir
-sharedstatedir
-localstatedir
-includedir
-oldincludedir
-docdir
-infodir
-htmldir
-dvidir
-pdfdir
-psdir
-libdir
-localedir
-mandir
-DEFS
-ECHO_C
-ECHO_N
-ECHO_T
-LIBS
-build_alias
-host_alias
-target_alias
-build
-build_cpu
-build_vendor
-build_os
-host
-host_cpu
-host_vendor
-host_os
-EMACS
-lispdir
-DEBUGGER_START_FILE
-TESTSCRIPT
-PURIFY
-MALLOC_TARGET
-MALLOC_SRC
-MALLOC_LIB
-MALLOC_LIBRARY
-MALLOC_LDFLAGS
-MALLOC_DEP
-HELPDIR
-HELPDIRDEFINE
-HELPINSTALL
-HELPSTRINGS
-CC
-CFLAGS
-LDFLAGS
-CPPFLAGS
-ac_ct_CC
-EXEEXT
-OBJEXT
-CPP
-GREP
-EGREP
-CROSS_COMPILE
-SIGNAMES_H
-SIGNAMES_O
-CC_FOR_BUILD
-STATIC_LD
-CFLAGS_FOR_BUILD
-CPPFLAGS_FOR_BUILD
-LDFLAGS_FOR_BUILD
-RL_VERSION
-RL_MAJOR
-RL_MINOR
-READLINE_LIB
-READLINE_DEP
-RL_LIBDIR
-RL_INCLUDEDIR
-RL_INCLUDE
-HISTORY_LIB
-HISTORY_DEP
-HIST_LIBDIR
-TILDE_LIB
-INSTALL_PROGRAM
-INSTALL_SCRIPT
-INSTALL_DATA
-AR
-RANLIB
-YACC
-YFLAGS
-SET_MAKE
-MAKE_SHELL
-SIZE
-MKINSTALLDIRS
-USE_NLS
-MSGFMT
-GMSGFMT
-XGETTEXT
-MSGMERGE
-ALLOCA
-GLIBC21
-LIBICONV
-LTLIBICONV
-INTLBISON
-BUILD_INCLUDED_LIBINTL
-USE_INCLUDED_LIBINTL
-CATOBJEXT
-DATADIRNAME
-INSTOBJEXT
-GENCAT
-INTLOBJS
-INTL_LIBTOOL_SUFFIX_PREFIX
-INTLLIBS
-LIBINTL
-LTLIBINTL
-POSUB
-LIBOBJS
-INTL_DEP
-INTL_INC
-LIBINTL_H
-SIGLIST_O
-TERMCAP_LIB
-TERMCAP_DEP
-JOBS_O
-SHOBJ_CC
-SHOBJ_CFLAGS
-SHOBJ_LD
-SHOBJ_LDFLAGS
-SHOBJ_XLDFLAGS
-SHOBJ_LIBS
-SHOBJ_STATUS
-PROFILE_FLAGS
-incdir
-BUILD_DIR
-ARFLAGS
-BASHVERS
-RELSTATUS
-DEBUG
-MALLOC_DEBUG
-LOCAL_LIBS
-LOCAL_CFLAGS
-LOCAL_LDFLAGS
+ac_subst_vars='LTLIBOBJS
LOCAL_DEFS
-LTLIBOBJS'
+LOCAL_LDFLAGS
+LOCAL_CFLAGS
+LOCAL_LIBS
+MALLOC_DEBUG
+DEBUG
+RELSTATUS
+BASHVERS
+ARFLAGS
+BUILD_DIR
+incdir
+PROFILE_FLAGS
+SHOBJ_STATUS
+SHOBJ_LIBS
+SHOBJ_XLDFLAGS
+SHOBJ_LDFLAGS
+SHOBJ_LD
+SHOBJ_CFLAGS
+SHOBJ_CC
+JOBS_O
+TERMCAP_DEP
+TERMCAP_LIB
+SIGLIST_O
+LIBINTL_H
+INTL_INC
+INTL_DEP
+LIBOBJS
+POSUB
+LTLIBINTL
+LIBINTL
+INTLLIBS
+INTL_LIBTOOL_SUFFIX_PREFIX
+INTLOBJS
+GENCAT
+INSTOBJEXT
+DATADIRNAME
+CATOBJEXT
+USE_INCLUDED_LIBINTL
+BUILD_INCLUDED_LIBINTL
+INTLBISON
+LTLIBICONV
+LIBICONV
+GLIBC21
+ALLOCA
+MSGMERGE
+XGETTEXT
+GMSGFMT
+MSGFMT
+USE_NLS
+MKINSTALLDIRS
+SIZE
+MAKE_SHELL
+SET_MAKE
+YFLAGS
+YACC
+RANLIB
+AR
+INSTALL_DATA
+INSTALL_SCRIPT
+INSTALL_PROGRAM
+TILDE_LIB
+HIST_LIBDIR
+HISTORY_DEP
+HISTORY_LIB
+RL_INCLUDE
+RL_INCLUDEDIR
+RL_LIBDIR
+READLINE_DEP
+READLINE_LIB
+RL_MINOR
+RL_MAJOR
+RL_VERSION
+LDFLAGS_FOR_BUILD
+CPPFLAGS_FOR_BUILD
+CFLAGS_FOR_BUILD
+STATIC_LD
+CC_FOR_BUILD
+SIGNAMES_O
+SIGNAMES_H
+CROSS_COMPILE
+EGREP
+GREP
+CPP
+OBJEXT
+EXEEXT
+ac_ct_CC
+CPPFLAGS
+LDFLAGS
+CFLAGS
+CC
+HELPSTRINGS
+HELPINSTALL
+HELPDIRDEFINE
+HELPDIR
+MALLOC_DEP
+MALLOC_LDFLAGS
+MALLOC_LIBRARY
+MALLOC_LIB
+MALLOC_SRC
+MALLOC_TARGET
+PURIFY
+TESTSCRIPT
+DEBUGGER_START_FILE
+lispdir
+EMACS
+host_os
+host_vendor
+host_cpu
+host
+build_os
+build_vendor
+build_cpu
+build
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
ac_subst_files=''
ac_user_opts='
enable_option_checking
if test -n "$ac_unrecognized_opts"; then
case $enable_option_checking in
no) ;;
- fatal) { $as_echo "$as_me: error: Unrecognized options: $ac_unrecognized_opts" >&2
+ fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2
{ (exit 1); exit 1; }; } ;;
- *) $as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2 ;;
+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
esac
fi
ac_pwd=`pwd` && test -n "$ac_pwd" &&
ac_ls_di=`ls -di .` &&
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
- { $as_echo "$as_me: error: Working directory cannot be determined" >&2
+ { $as_echo "$as_me: error: working directory cannot be determined" >&2
{ (exit 1); exit 1; }; }
test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
{ $as_echo "$as_me: error: pwd does not report name of working directory" >&2
if $ac_init_version; then
cat <<\_ACEOF
bash configure 4.0-release
-generated by GNU Autoconf 2.62
+generated by GNU Autoconf 2.63
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
running configure, to aid debugging if configure makes a mistake.
It was created by bash $as_me 4.0-release, which was
-generated by GNU Autoconf 2.62. Invocation command line was
+generated by GNU Autoconf 2.63. Invocation command line was
$ $0 $@
case $ac_val in #(
*${as_nl}*)
case $ac_var in #(
- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-$as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
+ *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
esac
case $ac_var in #(
_ | IFS | as_nl) ;; #(
fi
done
if $ac_cache_corrupted; then
+ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
{ { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&5
-$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&5
-$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
fi
-test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
+test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
See \`config.log' for more details." >&5
$as_echo "$as_me: error: no acceptable C compiler found in \$PATH
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
# Provide some information about the compiler.
$as_echo "$as_me:$LINENO: checking for C compiler version" >&5
$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
+{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables
See \`config.log' for more details." >&5
$as_echo "$as_me: error: C compiler cannot create executables
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
fi
ac_exeext=$ac_cv_exeext
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
- { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
If you meant to cross compile, use \`--host'.
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot run C compiled programs.
If you meant to cross compile, use \`--host'.
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
fi
fi
esac
done
else
- { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
rm -f conftest$ac_cv_exeext
$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
+{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
rm -f conftest.$ac_cv_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5
$as_echo "$ac_cv_lib_cposix_strerror" >&6; }
-if test $ac_cv_lib_cposix_strerror = yes; then
+if test "x$ac_cv_lib_cposix_strerror" = x""yes; then
LIBS="$LIBS -lcposix"
fi
if $ac_preproc_ok; then
:
else
- { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
See \`config.log' for more details." >&5
$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
See \`config.log' for more details." >&2;}
- { (exit 1); exit 1; }; }
+ { (exit 1); exit 1; }; }; }
fi
ac_ext=c
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_cv_header_minix_config_h" >&6; }
fi
-if test $ac_cv_header_minix_config_h = yes; then
+if test "x$ac_cv_header_minix_config_h" = x""yes; then
MINIX=yes
else
MINIX=
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_tgetent" >&5
$as_echo "$ac_cv_func_tgetent" >&6; }
-if test $ac_cv_func_tgetent = yes; then
+if test "x$ac_cv_func_tgetent" = x""yes; then
bash_cv_termcap_lib=libc
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltermcap" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_tgetent" >&5
$as_echo "$ac_cv_lib_termcap_tgetent" >&6; }
-if test $ac_cv_lib_termcap_tgetent = yes; then
+if test "x$ac_cv_lib_termcap_tgetent" = x""yes; then
bash_cv_termcap_lib=libtermcap
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltinfo" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tinfo_tgetent" >&5
$as_echo "$ac_cv_lib_tinfo_tgetent" >&6; }
-if test $ac_cv_lib_tinfo_tgetent = yes; then
+if test "x$ac_cv_lib_tinfo_tgetent" = x""yes; then
bash_cv_termcap_lib=libtinfo
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lcurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_curses_tgetent" >&5
$as_echo "$ac_cv_lib_curses_tgetent" >&6; }
-if test $ac_cv_lib_curses_tgetent = yes; then
+if test "x$ac_cv_lib_curses_tgetent" = x""yes; then
bash_cv_termcap_lib=libcurses
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lncurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_tgetent" >&5
$as_echo "$ac_cv_lib_ncurses_tgetent" >&6; }
-if test $ac_cv_lib_ncurses_tgetent = yes; then
+if test "x$ac_cv_lib_ncurses_tgetent" = x""yes; then
bash_cv_termcap_lib=libncurses
else
bash_cv_termcap_lib=gnutermcap
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&5
-$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-whose name does not start with the host triplet. If you think this
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
RANLIB=$ac_ct_RANLIB
$as_echo_n "(cached) " >&6
else
ac_cv_c_bigendian=unknown
- # See if __BIG_ENDIAN__ or __LITTLE_ENDIAN__ is defined.
- cat >conftest.$ac_ext <<_ACEOF
+ # See if we're dealing with a universal compiler.
+ cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
-#if ! (defined __BIG_ENDIAN__ || defined __LITTLE_ENDIAN__)
- neither is defined;
+#ifndef __APPLE_CC__
+ not a universal capable compiler
#endif
typedef int dummy;
test -z "$ac_c_werror_flag" ||
test ! -s conftest.err
} && test -s conftest.$ac_objext; then
- ac_cv_c_bigendian=universal
+
+ # Check for potential -arch flags. It is not universal unless
+ # there are some -arch flags. Note that *ppc* also matches
+ # ppc64. This check is also rather less than ideal.
+ case "${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" in #(
+ *-arch*ppc*|*-arch*i386*|*-arch*x86_64*) ac_cv_c_bigendian=universal;;
+ esac
else
$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
no)
;; #(
universal)
- ;; #(
+
+cat >>confdefs.h <<\_ACEOF
+#define AC_APPLE_UNIVERSAL_BUILD 1
+_ACEOF
+
+ ;; #(
*)
{ { $as_echo "$as_me:$LINENO: error: unknown endianness
presetting ac_cv_c_bigendian=no (or yes) will help" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
$as_echo "$ac_cv_type_off_t" >&6; }
-if test $ac_cv_type_off_t = yes; then
+if test "x$ac_cv_type_off_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
$as_echo "$ac_cv_type_size_t" >&6; }
-if test $ac_cv_type_size_t = yes; then
+if test "x$ac_cv_type_size_t" = x""yes; then
:
else
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define CRAY_STACKSEG_END $ac_func
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define CRAY_STACKSEG_END $ac_func
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5
$as_echo "$ac_cv_func__doprnt" >&6; }
-if test $ac_cv_func__doprnt = yes; then
+if test "x$ac_cv_func__doprnt" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_DOPRNT 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func___setostype" >&5
$as_echo "$ac_cv_func___setostype" >&6; }
-if test $ac_cv_func___setostype = yes; then
+if test "x$ac_cv_func___setostype" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_SETOSTYPE 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wait3" >&5
$as_echo "$ac_cv_func_wait3" >&6; }
-if test $ac_cv_func_wait3 = yes; then
+if test "x$ac_cv_func_wait3" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WAIT3 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_isinf" >&5
$as_echo "$ac_cv_func_isinf" >&6; }
-if test $ac_cv_func_isinf = yes; then
+if test "x$ac_cv_func_isinf" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_ISINF_IN_LIBC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_isnan" >&5
$as_echo "$ac_cv_func_isnan" >&6; }
-if test $ac_cv_func_isnan = yes; then
+if test "x$ac_cv_func_isnan" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_ISNAN_IN_LIBC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mkfifo" >&5
$as_echo "$ac_cv_func_mkfifo" >&6; }
-if test $ac_cv_func_mkfifo = yes; then
+if test "x$ac_cv_func_mkfifo" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_MKFIFO 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_confstr" >&5
$as_echo "$ac_cv_have_decl_confstr" >&6; }
-if test $ac_cv_have_decl_confstr = yes; then
+if test "x$ac_cv_have_decl_confstr" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_CONFSTR 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_printf" >&5
$as_echo "$ac_cv_have_decl_printf" >&6; }
-if test $ac_cv_have_decl_printf = yes; then
+if test "x$ac_cv_have_decl_printf" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_PRINTF 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_sbrk" >&5
$as_echo "$ac_cv_have_decl_sbrk" >&6; }
-if test $ac_cv_have_decl_sbrk = yes; then
+if test "x$ac_cv_have_decl_sbrk" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_SBRK 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_setregid" >&5
$as_echo "$ac_cv_have_decl_setregid" >&6; }
-if test $ac_cv_have_decl_setregid = yes; then
+if test "x$ac_cv_have_decl_setregid" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_SETREGID 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_strcpy" >&5
$as_echo "$ac_cv_have_decl_strcpy" >&6; }
-if test $ac_cv_have_decl_strcpy = yes; then
+if test "x$ac_cv_have_decl_strcpy" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_STRCPY 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_strsignal" >&5
$as_echo "$ac_cv_have_decl_strsignal" >&6; }
-if test $ac_cv_have_decl_strsignal = yes; then
+if test "x$ac_cv_have_decl_strsignal" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_STRSIGNAL 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_strtold" >&5
$as_echo "$ac_cv_have_decl_strtold" >&6; }
-if test $ac_cv_have_decl_strtold = yes; then
+if test "x$ac_cv_have_decl_strtold" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_STRTOLD 1
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
$as_echo "$ac_res" >&6; }
fi
-if test `eval 'as_val=${'$as_ac_Header'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_Header'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mbrlen" >&5
$as_echo "$ac_cv_func_mbrlen" >&6; }
-if test $ac_cv_func_mbrlen = yes; then
+if test "x$ac_cv_func_mbrlen" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_MBRLEN 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mbscmp" >&5
$as_echo "$ac_cv_func_mbscmp" >&6; }
-if test $ac_cv_func_mbscmp = yes; then
+if test "x$ac_cv_func_mbscmp" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_MBSCMP 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mbsrtowcs" >&5
$as_echo "$ac_cv_func_mbsrtowcs" >&6; }
-if test $ac_cv_func_mbsrtowcs = yes; then
+if test "x$ac_cv_func_mbsrtowcs" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_MBSRTOWCS 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcrtomb" >&5
$as_echo "$ac_cv_func_wcrtomb" >&6; }
-if test $ac_cv_func_wcrtomb = yes; then
+if test "x$ac_cv_func_wcrtomb" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WCRTOMB 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcscoll" >&5
$as_echo "$ac_cv_func_wcscoll" >&6; }
-if test $ac_cv_func_wcscoll = yes; then
+if test "x$ac_cv_func_wcscoll" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WCSCOLL 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcsdup" >&5
$as_echo "$ac_cv_func_wcsdup" >&6; }
-if test $ac_cv_func_wcsdup = yes; then
+if test "x$ac_cv_func_wcsdup" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WCSDUP 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wcwidth" >&5
$as_echo "$ac_cv_func_wcwidth" >&6; }
-if test $ac_cv_func_wcwidth = yes; then
+if test "x$ac_cv_func_wcwidth" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WCWIDTH 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_wctype" >&5
$as_echo "$ac_cv_func_wctype" >&6; }
-if test $ac_cv_func_wctype = yes; then
+if test "x$ac_cv_func_wctype" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WCTYPE 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
-if test $ac_cv_lib_dl_dlopen = yes; then
+if test "x$ac_cv_lib_dl_dlopen" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBDL 1
_ACEOF
$as_echo "$as_val"'`
{ $as_echo "$as_me:$LINENO: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
-if test `eval 'as_val=${'$as_ac_var'}
- $as_echo "$as_val"'` = yes; then
+as_val=`eval 'as_val=${'$as_ac_var'}
+ $as_echo "$as_val"'`
+ if test "x$as_val" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_sys_siglist" >&5
$as_echo "$ac_cv_have_decl_sys_siglist" >&6; }
-if test $ac_cv_have_decl_sys_siglist = yes; then
+if test "x$ac_cv_have_decl_sys_siglist" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_SYS_SIGLIST 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sun_getpwent" >&5
$as_echo "$ac_cv_lib_sun_getpwent" >&6; }
-if test $ac_cv_lib_sun_getpwent = yes; then
+if test "x$ac_cv_lib_sun_getpwent" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBSUN 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_getpeername" >&5
$as_echo "$ac_cv_lib_socket_getpeername" >&6; }
-if test $ac_cv_lib_socket_getpeername = yes; then
+if test "x$ac_cv_lib_socket_getpeername" = x""yes; then
bash_cv_have_socklib=yes
else
bash_cv_have_socklib=no
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_t_open" >&5
$as_echo "$ac_cv_lib_nsl_t_open" >&6; }
-if test $ac_cv_lib_nsl_t_open = yes; then
+if test "x$ac_cv_lib_nsl_t_open" = x""yes; then
bash_cv_have_libnsl=yes
else
bash_cv_have_libnsl=no
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
$as_echo "$ac_cv_type_off_t" >&6; }
-if test $ac_cv_type_off_t = yes; then
+if test "x$ac_cv_type_off_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5
$as_echo "$ac_cv_type_mode_t" >&6; }
-if test $ac_cv_type_mode_t = yes; then
+if test "x$ac_cv_type_mode_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5
$as_echo "$ac_cv_type_pid_t" >&6; }
-if test $ac_cv_type_pid_t = yes; then
+if test "x$ac_cv_type_pid_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
$as_echo "$ac_cv_type_size_t" >&6; }
-if test $ac_cv_type_size_t = yes; then
+if test "x$ac_cv_type_size_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5
$as_echo "$ac_cv_type_ssize_t" >&6; }
-if test $ac_cv_type_ssize_t = yes; then
+if test "x$ac_cv_type_ssize_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_time_t" >&5
$as_echo "$ac_cv_type_time_t" >&6; }
-if test $ac_cv_type_time_t = yes; then
+if test "x$ac_cv_type_time_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_sig_atomic_t" >&5
$as_echo "$ac_cv_type_sig_atomic_t" >&6; }
-if test $ac_cv_type_sig_atomic_t = yes; then
+if test "x$ac_cv_type_sig_atomic_t" = x""yes; then
:
else
case $ac_lo in
?*) ac_cv_sizeof_char=$ac_lo;;
'') if test "$ac_cv_type_char" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_char" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char=0
fi
case $ac_lo in
?*) ac_cv_sizeof_short=$ac_lo;;
'') if test "$ac_cv_type_short" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (short)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_short=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_short" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (short)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_short=0
fi
case $ac_lo in
?*) ac_cv_sizeof_int=$ac_lo;;
'') if test "$ac_cv_type_int" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (int)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_int=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_int" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (int)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_int=0
fi
case $ac_lo in
?*) ac_cv_sizeof_long=$ac_lo;;
'') if test "$ac_cv_type_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long=0
fi
case $ac_lo in
?*) ac_cv_sizeof_char_p=$ac_lo;;
'') if test "$ac_cv_type_char_p" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char_p=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_char_p" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (char *)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_char_p=0
fi
case $ac_lo in
?*) ac_cv_sizeof_double=$ac_lo;;
'') if test "$ac_cv_type_double" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (double)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_double=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_double" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (double)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (double)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_double=0
fi
case $ac_lo in
?*) ac_cv_sizeof_long_long=$ac_lo;;
'') if test "$ac_cv_type_long_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long_long=0
fi ;;
( exit $ac_status )
if test "$ac_cv_type_long_long" = yes; then
- { { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
+ { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&5
$as_echo "$as_me: error: cannot compute sizeof (long long)
See \`config.log' for more details." >&2;}
- { (exit 77); exit 77; }; }
+ { (exit 77); exit 77; }; }; }
else
ac_cv_sizeof_long_long=0
fi
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_int" >&5
$as_echo "$ac_cv_type_u_int" >&6; }
-if test $ac_cv_type_u_int = yes; then
+if test "x$ac_cv_type_u_int" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_long" >&5
$as_echo "$ac_cv_type_u_long" >&6; }
-if test $ac_cv_type_u_long = yes; then
+if test "x$ac_cv_type_u_long" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits16_t" >&5
$as_echo "$ac_cv_type_bits16_t" >&6; }
-if test $ac_cv_type_bits16_t = yes; then
+if test "x$ac_cv_type_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits16_t" >&5
$as_echo "$ac_cv_type_bits16_t" >&6; }
-if test $ac_cv_type_bits16_t = yes; then
+if test "x$ac_cv_type_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits16_t" >&5
$as_echo "$ac_cv_type_bits16_t" >&6; }
-if test $ac_cv_type_bits16_t = yes; then
+if test "x$ac_cv_type_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits16_t" >&5
$as_echo "$ac_cv_type_u_bits16_t" >&6; }
-if test $ac_cv_type_u_bits16_t = yes; then
+if test "x$ac_cv_type_u_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits16_t" >&5
$as_echo "$ac_cv_type_u_bits16_t" >&6; }
-if test $ac_cv_type_u_bits16_t = yes; then
+if test "x$ac_cv_type_u_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits16_t" >&5
$as_echo "$ac_cv_type_u_bits16_t" >&6; }
-if test $ac_cv_type_u_bits16_t = yes; then
+if test "x$ac_cv_type_u_bits16_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits32_t" >&5
$as_echo "$ac_cv_type_bits32_t" >&6; }
-if test $ac_cv_type_bits32_t = yes; then
+if test "x$ac_cv_type_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits32_t" >&5
$as_echo "$ac_cv_type_bits32_t" >&6; }
-if test $ac_cv_type_bits32_t = yes; then
+if test "x$ac_cv_type_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits32_t" >&5
$as_echo "$ac_cv_type_bits32_t" >&6; }
-if test $ac_cv_type_bits32_t = yes; then
+if test "x$ac_cv_type_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits32_t" >&5
$as_echo "$ac_cv_type_u_bits32_t" >&6; }
-if test $ac_cv_type_u_bits32_t = yes; then
+if test "x$ac_cv_type_u_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits32_t" >&5
$as_echo "$ac_cv_type_u_bits32_t" >&6; }
-if test $ac_cv_type_u_bits32_t = yes; then
+if test "x$ac_cv_type_u_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_u_bits32_t" >&5
$as_echo "$ac_cv_type_u_bits32_t" >&6; }
-if test $ac_cv_type_u_bits32_t = yes; then
+if test "x$ac_cv_type_u_bits32_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bits64_t" >&5
$as_echo "$ac_cv_type_bits64_t" >&6; }
-if test $ac_cv_type_bits64_t = yes; then
+if test "x$ac_cv_type_bits64_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5
$as_echo "$ac_cv_type_ptrdiff_t" >&6; }
-if test $ac_cv_type_ptrdiff_t = yes; then
+if test "x$ac_cv_type_ptrdiff_t" = x""yes; then
:
else
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_termios_c_line" >&5
$as_echo "$ac_cv_member_struct_termios_c_line" >&6; }
-if test $ac_cv_member_struct_termios_c_line = yes; then
+if test "x$ac_cv_member_struct_termios_c_line" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define TERMIOS_LDISC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_termio_c_line" >&5
$as_echo "$ac_cv_member_struct_termio_c_line" >&6; }
-if test $ac_cv_member_struct_termio_c_line = yes; then
+if test "x$ac_cv_member_struct_termio_c_line" = x""yes; then
cat >>confdefs.h <<\_ACEOF
#define TERMIO_LDISC 1
_ACEOF
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_blocks" >&5
$as_echo "$ac_cv_member_struct_stat_st_blocks" >&6; }
-if test $ac_cv_member_struct_stat_st_blocks = yes; then
+if test "x$ac_cv_member_struct_stat_st_blocks" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_tm_tm_zone" >&5
$as_echo "$ac_cv_member_struct_tm_tm_zone" >&6; }
-if test $ac_cv_member_struct_tm_tm_zone = yes; then
+if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_TM_TM_ZONE 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_tzname" >&5
$as_echo "$ac_cv_have_decl_tzname" >&6; }
-if test $ac_cv_have_decl_tzname = yes; then
+if test "x$ac_cv_have_decl_tzname" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_TZNAME 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_fpurge" >&5
$as_echo "$ac_cv_have_decl_fpurge" >&6; }
-if test $ac_cv_have_decl_fpurge = yes; then
+if test "x$ac_cv_have_decl_fpurge" = x""yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_FPURGE 1
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_tgetent" >&5
$as_echo "$ac_cv_func_tgetent" >&6; }
-if test $ac_cv_func_tgetent = yes; then
+if test "x$ac_cv_func_tgetent" = x""yes; then
bash_cv_termcap_lib=libc
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltermcap" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_tgetent" >&5
$as_echo "$ac_cv_lib_termcap_tgetent" >&6; }
-if test $ac_cv_lib_termcap_tgetent = yes; then
+if test "x$ac_cv_lib_termcap_tgetent" = x""yes; then
bash_cv_termcap_lib=libtermcap
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -ltinfo" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tinfo_tgetent" >&5
$as_echo "$ac_cv_lib_tinfo_tgetent" >&6; }
-if test $ac_cv_lib_tinfo_tgetent = yes; then
+if test "x$ac_cv_lib_tinfo_tgetent" = x""yes; then
bash_cv_termcap_lib=libtinfo
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lcurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_curses_tgetent" >&5
$as_echo "$ac_cv_lib_curses_tgetent" >&6; }
-if test $ac_cv_lib_curses_tgetent = yes; then
+if test "x$ac_cv_lib_curses_tgetent" = x""yes; then
bash_cv_termcap_lib=libcurses
else
{ $as_echo "$as_me:$LINENO: checking for tgetent in -lncurses" >&5
fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_tgetent" >&5
$as_echo "$ac_cv_lib_ncurses_tgetent" >&6; }
-if test $ac_cv_lib_ncurses_tgetent = yes; then
+if test "x$ac_cv_lib_ncurses_tgetent" = x""yes; then
bash_cv_termcap_lib=libncurses
else
bash_cv_termcap_lib=gnutermcap
case $ac_val in #(
*${as_nl}*)
case $ac_var in #(
- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-$as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
+ *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
esac
case $ac_var in #(
_ | IFS | as_nl) ;; #(
+
: ${CONFIG_STATUS=./config.status}
ac_write_fail=0
ac_clean_files_save=$ac_clean_files
# values after options handling.
ac_log="
This file was extended by bash $as_me 4.0-release, which was
-generated by GNU Autoconf 2.62. Invocation command line was
+generated by GNU Autoconf 2.63. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
_ACEOF
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+case $ac_config_headers in *"
+"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
+esac
+
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
# Files that config.status was made for.
config_files="$ac_config_files"
\`$as_me' instantiates files from templates according to the
current configuration.
-Usage: $0 [OPTIONS] [FILE]...
+Usage: $0 [OPTION]... [FILE]...
-h, --help print this help, then exit
-V, --version print version number and configuration settings, then exit
- -q, --quiet do not print progress messages
+ -q, --quiet, --silent
+ do not print progress messages
-d, --debug don't remove temporary files
--recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
+ --file=FILE[:TEMPLATE]
instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
+ --header=FILE[:TEMPLATE]
instantiate the configuration header FILE
Configuration files:
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_version="\\
bash config.status 4.0-release
-configured by $0, generated by GNU Autoconf 2.62,
+configured by $0, generated by GNU Autoconf 2.63,
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
Copyright (C) 2008 Free Software Foundation, Inc.
$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
{ (exit 1); exit 1; }; }
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` = $ac_delim_num; then
+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+ if test $ac_delim_n = $ac_delim_num; then
break
elif $ac_last_try; then
{ { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
}
split(mac1, mac2, "(") #)
macro = mac2[1]
+ prefix = substr(line, 1, index(line, defundef) - 1)
if (D_is_set[macro]) {
# Preserve the white space surrounding the "#".
- prefix = substr(line, 1, index(line, defundef) - 1)
print prefix "define", macro P[macro] D[macro]
next
} else {
# in the case of _POSIX_SOURCE, which is predefined and required
# on some systems where configure will not decide to define it.
if (defundef == "undef") {
- print "/*", line, "*/"
+ print "/*", prefix defundef, macro, "*/"
next
}
}
esac
case $ac_mode$ac_tag in
:[FHL]*:*);;
- :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
-$as_echo "$as_me: error: Invalid tag $ac_tag." >&2;}
+ :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
+$as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
{ (exit 1); exit 1; }; };;
:[FH]-) ac_tag=-:-;;
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
$ac_cs_success || { (exit 1); exit 1; }
fi
if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
- { $as_echo "$as_me:$LINENO: WARNING: Unrecognized options: $ac_unrecognized_opts" >&5
-$as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2;}
+ { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
These are features I hope to include in a future version of bash.
-Rocky Bernstein's bash debugger (support is included with bash-3.0)
-associative arrays
-co-processes, but with a new-style syntax that looks like function declaration
+Rocky Bernstein's bash debugger (support is included with bash-4.0)
H4) What's on the bash `wish list' for future versions?
-This is the Bash FAQ, version 3.36, for Bash version 3.2.
+This is the Bash FAQ, version 4.01, for Bash version 4.0.
This document contains a set of frequently-asked questions concerning
Bash, the GNU Bourne-Again Shell. Bash is a freely-available command
Section B: The latest version
-B1) What's new in version 3.2?
-B2) Are there any user-visible incompatibilities between bash-3.2 and
- bash-2.05b?
+B1) What's new in version 4.0?
+B2) Are there any user-visible incompatibilities between bash-4.0,
+ bash-3.2, and bash-2.05b?
Section C: Differences from other Unix shells
A2) What's the latest version?
-The latest version is 3.2, first made available on 12 October, 2006.
+The latest version is 4.0, first made available on XXX YYYYY, 2008.
A3) Where can I get it?
Bash is the GNU project's shell, and so is available from the
master GNU archive site, ftp.gnu.org, and its mirrors. The
latest version is also available for FTP from ftp.cwru.edu.
-The following URLs tell how to get version 3.2:
+The following URLs tell how to get version 4.0:
-ftp://ftp.gnu.org/pub/gnu/bash/bash-3.2.tar.gz
-ftp://ftp.cwru.edu/pub/bash/bash-3.2.tar.gz
+ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0.tar.gz
+ftp://ftp.cwru.edu/pub/bash/bash-4.0.tar.gz
Formatted versions of the documentation are available with the URLs:
-ftp://ftp.gnu.org/pub/gnu/bash/bash-doc-3.2.tar.gz
-ftp://ftp.cwru.edu/pub/bash/bash-doc-3.2.tar.gz
+ftp://ftp.gnu.org/pub/gnu/bash/bash-doc-4.0.tar.gz
+ftp://ftp.cwru.edu/pub/bash/bash-doc-4.0.tar.gz
Any patches for the current version are available with the URL:
-ftp://ftp.cwru.edu/pub/bash/bash-3.2-patches/
+ftp://ftp.cwru.edu/pub/bash/bash-4.0-patches/
A4) On what machines will bash run?
Cygnus originally ported bash-1.14.7, and that port was part of their
early GNU-Win32 (the original name) releases. Cygnus has also done
-ports of bash-2.05b and bash-3.0 to the CYGWIN environment, and both
-are available as part of their current release. Bash-3.2 is currently
-being tested and should be available soon.
+ports of bash-2.05b and bash-3.2 to the CYGWIN environment, and both
+are available as part of their current release.
Bash-2.05b and later versions should require no local Cygnus changes to
build and run under CYGWIN.
Bash-3.0 compiles and runs with no modifications under Microsoft's Services
for Unix (SFU), once known as Interix. I do not anticipate any problems
-with building bash-3.1 or bash-3.2.
+with building bash-4.0, but will gladly accept any patches that are needed.
A6) How can I build bash with gcc?
Section B: The latest version
-B1) What's new in version 3.2?
+B1) What's new in version 4.0?
-Bash-3.2 is the second maintenance release of the third major release of
-bash. It contains the following significant new features (see the manual
-page for complete descriptions and the CHANGES and NEWS files in the
-bash-3.2 distribution).
+Bash-4.0 is the fourth major release of bash. There are numerous new features,
+some experimental. Depending on community reception, the experimental
+features will evolve.
+
+Bash-4.0 contains the following new features (see the manual page for
+complete descriptions and the CHANGES and NEWS files in the bash-4.0
+distribution):
+
+o When using substring expansion on the positional parameters, a starting
+ index of 0 now causes $0 to be prefixed to the list.
+
+o There is a new variable, $BASHPID, which always returns the process id of
+ the current shell.
+
+o There is a new `autocd' option that, when enabled, causes bash to attempt
+ to `cd' to a directory name that is supplied as the first word of a
+ simple command.
+
+o There is a new `checkjobs' option that causes the shell to check for and
+ report any running or stopped jobs at exit.
+
+o The programmable completion code exports a new COMP_TYPE variable, set to
+ a character describing the type of completion being attempted.
+
+o The programmable completion code exports a new COMP_KEY variable, set to
+ the character that caused the completion to be invoked (e.g., TAB).
+
+o The programmable completion code now uses the same set of characters as
+ readline when breaking the command line into a list of words.
+
+o The block multiplier for the ulimit -c and -f options is now 512 when in
+ Posix mode, as Posix specifies.
+
+o Changed the behavior of the read builtin to save any partial input received
+ in the specified variable when the read builtin times out. This also
+ results in variables specified as arguments to read to be set to the empty
+ string when there is no input available. When the read builtin times out,
+ it returns an exit status greater than 128.
+
+o The shell now has the notion of a `compatibility level', controlled by
+ new variables settable by `shopt'. Setting this variable currently
+ restores the bash-3.1 behavior when processing quoted strings on the rhs
+ of the `=~' operator to the `[[' command.
+
+o The `ulimit' builtin now has new -b (socket buffer size) and -T (number
+ of threads) options.
+
+o There is a new `compopt' builtin that allows completion functions to modify
+ completion options for existing completions or the completion currently
+ being executed.
+
+o The `read' builtin has a new -i option which inserts text into the reply
+ buffer when using readline.
+
+o A new `-E' option to the complete builtin allows control of the default
+ behavior for completion on an empty line.
+
+o There is now limited support for completing command name words containing
+ globbing characters.
+
+o The `help' builtin now has a new -d option, to display a short description,
+ and a -m option, to print help information in a man page-like format.
+
+o There is a new `mapfile' builtin to populate an array with lines from a
+ given file.
+
+o If a command is not found, the shell attempts to execute a shell function
+ named `command_not_found_handle', supplying the command words as the
+ function arguments.
+
+o There is a new shell option: `globstar'. When enabled, the globbing code
+ treats `**' specially -- it matches all directories (and files within
+ them, when appropriate) recursively.
+
+o There is a new shell option: `dirspell'. When enabled, the filename
+ completion code performs spelling correction on directory names during
+ completion.
+
+o The `-t' option to the `read' builtin now supports fractional timeout
+ values.
+
+o Brace expansion now allows zero-padding of expanded numeric values and
+ will add the proper number of zeroes to make sure all values contain the
+ same number of digits.
+
+o There is a new bash-specific bindable readline function: `dabbrev-expand'.
+ It uses menu completion on a set of words taken from the history list.
+
+o The command assigned to a key sequence with `bind -x' now sets two new
+ variables in the environment of the executed command: READLINE_LINE_BUFFER
+ and READLINE_POINT. The command can change the current readline line
+ and cursor position by modifying READLINE_LINE_BUFFER and READLINE_POINT,
+ respectively.
+
+o There is a new >>& redirection operator, which appends the standard output
+ and standard error to the named file.
+
+o The parser now understands `|&' as a synonym for `2>&1 |', which redirects
+ the standard error for a command through a pipe.
+
+o The new `;&' case statement action list terminator causes execution to
+ continue with the action associated with the next pattern in the
+ statement rather than terminating the command.
+
+o The new `;;&' case statement action list terminator causes the shell to
+ test the next set of patterns after completing execution of the current
+ action, rather than terminating the command.
+
+o The shell understands a new variable: PROMPT_DIRTRIM. When set to an
+ integer value greater than zero, prompt expansion of \w and \W will
+ retain only that number of trailing pathname components and replace
+ the intervening characters with `...'.
+
+o There are new case-modifying word expansions: uppercase (^[^]) and
+ lowercase (,[,]). They can work on either the first character or
+ array element, or globally. They accept an optional shell pattern
+ that determines which characters to modify. There is an optionally-
+ configured feature to include capitalization operators.
+
+o The shell provides associative array variables, with the appropriate
+ support to create, delete, assign values to, and expand them.
+
+o The `declare' builtin now has new -l (convert value to lowercase upon
+ assignment) and -u (convert value to uppercase upon assignment) options.
+ There is an optionally-configurable -c option to capitalize a value at
+ assignment.
+
+o There is a new `coproc' reserved word that specifies a coprocess: an
+ asynchronous command run with two pipes connected to the creating shell.
+ Coprocs can be named. The input and output file descriptors and the
+ PID of the coprocess are available to the calling shell in variables
+ with coproc-specific names.
+
+o A value of 0 for the -t option to `read' now returns success if there is
+ input available to be read from the specified file descriptor.
+
+o CDPATH and GLOBIGNORE are ignored when the shell is running in privileged
+ mode.
+
+o New bindable readline functions shell-forward-word and shell-backward-word,
+ which move forward and backward words delimited by shell metacharacters
+ and honor shell quoting.
+
+o New bindable readline functions shell-backward-kill-word and shell-kill-word
+ which kill words backward and forward, but use the same word boundaries
+ as shell-forward-word and shell-backward-word.
+
+A short feature history dating from Bash-2.0:
+
+Bash-3.2 contained the following new features:
o Bash-3.2 now checks shell scripts for NUL characters rather than non-printing
characters when deciding whether or not a script is a binary file.
o Quoting the string argument to the [[ command's =~ (regexp) operator now
forces string matching, as with the other pattern-matching operators.
-A short feature history dating from Bash-2.0:
-
Bash-3.1 contained the following new features:
o Bash-3.1 may now be configured and built in a mode that enforces strict
lots of code now smaller and faster
test suite greatly expanded
-B2) Are there any user-visible incompatibilities between bash-3.2 and
- bash-2.05b?
+B2) Are there any user-visible incompatibilities between bash-4.0, bash-3.2,
+ and bash-2.05b?
-There are a few incompatibilities between version 2.05b and version 3.2.
+There are a few incompatibilities between version 4.0 and version 3.2.
They are detailed in the file COMPAT in the bash distribution. That file
is not meant to be all-encompassing; send mail to bash-maintainers@gnu.org
if if you find something that's not mentioned there.
the ${param/pat[/string]} parameter pattern substitution operator
expansions to perform substring removal (${p%[%]w}, ${p#[#]w})
expansion of positional parameters beyond $9 with ${num}
- variables: BASH, BASH_VERSION, BASH_VERSINFO, UID, EUID, REPLY,
+ variables: BASH, BASHPID, BASH_VERSION, BASH_VERSINFO, UID, EUID, REPLY,
TIMEFORMAT, PPID, PWD, OLDPWD, SHLVL, RANDOM, SECONDS,
LINENO, HISTCMD, HOSTTYPE, OSTYPE, MACHTYPE, HOSTNAME,
ENV, PS3, PS4, DIRSTACK, PIPESTATUS, HISTSIZE, HISTFILE,
HISTFILESIZE, HISTCONTROL, HISTIGNORE, GLOBIGNORE, GROUPS,
PROMPT_COMMAND, FCEDIT, FIGNORE, IGNOREEOF, INPUTRC,
SHELLOPTS, OPTERR, HOSTFILE, TMOUT, FUNCNAME, histchars,
- auto_resume
+ auto_resume, PROMPT_DIRTRIM
DEBUG trap
ERR trap
variable arrays with new compound assignment syntax
- redirections: <>, &>, >|, <<<, [n]<&word-, [n]>&word-
+ redirections: <>, &>, >|, <<<, [n]<&word-, [n]>&word-, >>&
prompt string special char translation and variable expansion
auto-export of variables in initial environment
command search finds functions before builtins
bash return builtin will exit a file sourced with `.'
builtins: cd -/-L/-P, exec -l/-c/-a, echo -e/-E, hash -d/-l/-p/-t.
export -n/-f/-p/name=value, pwd -L/-P,
- read -e/-p/-a/-t/-n/-d/-s/-u,
+ read -e/-p/-a/-t/-n/-d/-s/-u/-i,
readonly -a/-f/name=value, trap -l, set +o,
set -b/-m/-o option/-h/-p/-B/-C/-H/-P,
unset -f/-v, ulimit -i/-m/-p/-q/-u/-x,
other new bash builtins: bind, command, compgen, complete, builtin,
declare/typeset, dirs, enable, fc, help,
history, logout, popd, pushd, disown, shopt,
- printf
+ printf, compopt, mapfile
exported functions
filename generation when using output redirection (command >a*)
POSIX.2-style globbing character classes
debugger support, including `caller' builtin and new variables
RETURN trap
the `+=' assignment operator
-
+ autocd shell option and behavior
+ command-not-found hook with command_not_found_handle shell function
+ globstar shell option and `**' globbing behavior
+ |& synonym for `2>&1 |'
+ ;& and ;;& case action list terminators
+ case-modifying word expansions and variable attributes
+ associative arrays
+ coprocesses using the `coproc' reserved word and variables
Things sh has that bash does not:
uses variable SHACCT to do shell accounting
the ${!param*} prefix expansion operator
the ${param:offset[:length]} parameter substring operator
the ${param/pat[/string]} parameter pattern substitution operator
- variables: BASH, BASH_VERSION, BASH_VERSINFO, UID, EUID, SHLVL,
+ variables: BASH, BASH_VERSION, BASH_VERSINFO, BASHPID, UID, EUID, SHLVL,
TIMEFORMAT, HISTCMD, HOSTTYPE, OSTYPE, MACHTYPE,
HISTFILESIZE, HISTIGNORE, HISTCONTROL, PROMPT_COMMAND,
IGNOREEOF, FIGNORE, INPUTRC, HOSTFILE, DIRSTACK,
PIPESTATUS, HOSTNAME, OPTERR, SHELLOPTS, GLOBIGNORE,
- GROUPS, FUNCNAME, histchars, auto_resume
+ GROUPS, FUNCNAME, histchars, auto_resume, PROMPT_DIRTRIM
prompt expansion with backslash escapes and command substitution
- redirection: &> (stdout and stderr), <<<, [n]<&word-, [n]>&word-
+ redirection: &> (stdout and stderr), <<<, [n]<&word-, [n]>&word-, >>&
more extensive and extensible editing and programmable completion
builtins: bind, builtin, command, declare, dirs, echo -e/-E, enable,
exec -l/-c/-a, fc -s, export -n/-f/-p, hash, help, history,
-o notify/-o physical/-o posix/-o hashall/-o onecmd/
-h/-B/-C/-b/-H/-P, set +o, suspend, trap -l, type,
typeset -a/-F/-p, ulimit -i/-q/-u/-x, umask -S, alias -p,
- shopt, disown, printf, complete, compgen
+ shopt, disown, printf, complete, compgen, compopt, mapfile
`!' csh-style history expansion
POSIX.2-style globbing character classes
POSIX.2-style globbing equivalence classes
Timestamps in history entries
{x..y} brace expansion
The `+=' assignment operator
+ autocd shell option and behavior
+ command-not-found hook with command_not_found_handle shell function
+ globstar shell option and `**' globbing behavior
+ |& synonym for `2>&1 |'
+ ;& and ;;& case action list terminators
+ case-modifying word expansions and variable attributes
+ associative arrays
+ coprocesses using the `coproc' reserved word and variables
Things ksh88 has or uses that bash does not:
tracked aliases (alias -t)
variables: ERRNO, FPATH, EDITOR, VISUAL
- co-processes (|&, >&p, <&p)
+ co-processes (bash uses different syntax)
weirdly-scoped functions
typeset +f to list all function names without definitions
text of command history kept in a file, not memory
builtins: alias -x, cd old new, newgrp, print,
read -p/-s/var?prompt, set -A/-o gmacs/
-o bgnice/-o markdirs/-o trackall/-o viraw/-s,
- typeset -H/-L/-R/-Z/-A/-ft/-fu/-fx/-l/-u/-t, whence
+ typeset -H/-L/-R/-Z/-A/-ft/-fu/-fx/-t, whence
using environment to pass attributes of exported variables
arithmetic evaluation done on arguments to some builtins
reads .profile from $PWD when invoked as login shell
C3) Which new features in ksh-93 are not in bash, and which are?
-New things in ksh-93 not in bash-3.2:
- associative arrays
+This list is current through ksh93t (11/04/2008)
+
+New things in ksh-93 not in bash-4.0:
floating point arithmetic and variables
math library functions
${!name[sub]} name of subscript for associative array
`.' is allowed in variable names to create a hierarchical namespace
more extensive compound assignment syntax
discipline functions
- `sleep' and `getconf' builtins (bash has loadable versions)
- typeset -n and `nameref' variables
KEYBD trap
variables: .sh.edchar, .sh.edmode, .sh.edcol, .sh.edtext, .sh.version,
.sh.name, .sh.subscript, .sh.value, .sh.match, HISTEDIT
backreferences in pattern matching (\N)
- `&' operator in pattern lists for matching
- print -f (bash uses printf)
- `fc' has been renamed to `hist'
- `.' can execute shell functions
+ `&' operator in pattern lists for matching (match all instead of any)
exit statuses between 0 and 255
FPATH and PATH mixing
- getopts -a
- -I invocation option
- printf %H, %P, %T, %Z modifiers, output base for %d
lexical scoping for local variables in `ksh' functions
no scoping for local variables in `POSIX' functions
-
-New things in ksh-93 present in bash-3.2:
+ $'' \C[.collating-element.] escape sequence
+ -C/-I invocation options
+ print -f (bash uses printf)
+ `fc' has been renamed to `hist'
+ `.' can execute shell functions
+ getopts -a
+ printf %B, %H, %P, %R, %T, %Z modifiers, output base for %d, `=' flag
+ read -N (read -n differs, too)/-v
+ set -o showme/-o multiline (bash default)
+ `sleep' and `getconf' builtins (bash has loadable versions)
+ typeset -n and `nameref' variables
+ typeset -C/-S/-T/-X/-h/-s
+ experimental `type' definitions (a la typedef) using typeset
+ negative subscripts for indexed array variables
+ array expansions ${array[sub1..sub2]} and ${!array[sub1..sub2]}
+ associative array assignments using `;' as element separator
+ command substitution $(n<#) expands to current byte offset for fd N
+ new '${ ' form of command substitution, executed in current shell
+ new >;/<#pat/<##pat/<#/># redirections
+ redirection operators preceded with {varname} to store fd number in varname
+ brace expansion printf-like formats
+
+New things in ksh-93 present in bash-4.0:
+ associative arrays
[n]<&word- and [n]>&word- redirections (combination dup and close)
for (( expr1; expr2; expr3 )) ; do list; done - arithmetic for command
?:, ++, --, `expr1 , expr2' arithmetic operators
compound array assignment
the `!' reserved word
loadable builtins -- but ksh uses `builtin' while bash uses `enable'
- `command', `builtin', `disown' builtins
new $'...' and $"..." quoting
FIGNORE (but bash uses GLOBIGNORE), HISTCMD
- set -o notify/-C
+ brace expansion and set -B
changes to kill builtin
+ `command', `builtin', `disown' builtins
+ echo -e
+ exec -c/-a
read -A (bash uses read -a)
read -t/-d
trap -p
- exec -c/-a
`.' restores the positional parameters when it completes
+ set -o notify/-C
+ set -o pipefail
+ set -G (-o globstar) and **
POSIX.2 `test'
umask -S
unalias -a
command and arithmetic substitution performed on PS1, PS4, and ENV
- command name completion
+ command name completion, TAB displaying possible completions
ENV processed only for interactive shells
- set -o pipefail
The `+=' assignment operator
+ the `;&' case statement "fallthrough" pattern list terminator
+ csh-style history expansion and set -H
+ negative offsets in ${param:offset:length}
Section D: Why does bash do some things differently than other Unix shells?
may contain whitespace. The first problem may be solved by using backslashes
or any other quoting mechanism to escape the white space in the patterns.
+Bash-4.0 introduces the concept of a `compatibility level', controlled by
+several options to the `shopt' builtin. If the `compat31' option is enabled,
+bash reverts to the bash-3.1 behavior with respect to quoting the rhs of
+the =~ operator.
+
Section F: Things to watch out for on certain Unix versions
F1) Why can't I use command line editing in my `cmdtool'?
echo .!(.|) *
A solution that works without extended globbing is given in the Unix Shell
-FAQ, posted periodically to comp.unix.shell.
+FAQ, posted periodically to comp.unix.shell. It's a variant of
+
+ echo .[!.]* ..?* *
+
+(The ..?* catches files with names of three or more characters beginning
+with `..')
Section H: Where do I go from here?
H5) When will the next release appear?
-The next version will appear sometime in 2007. Never make predictions.
+The next version will appear sometime in 2009. Never make predictions.
-This document is Copyright 1995-2006 by Chester Ramey.
+This document is Copyright 1995-2009 by Chester Ramey.
Permission is hereby granted, without written agreement and
without license or royalty fees, to use, copy, and distribute
effective only when job control is enabled.
.TP 8
.B \-e
-Exit immediately if a \fIsimple command\fP (see
+Exit immediately if a \fIpipeline\fP (which may consist of a single
+\fIsimple command\fP), a \fIsubshell\fP command enclosed in parentheses,
+or one of the commands executed as part of a command list enclosed
+by braces (see
.SM
.B SHELL GRAMMAR
above) exits with a non-zero status.
keyword,
part of the test in an
.B if
-statement, part of a command executed in a
+statement, part of any command executed in a
.B &&
or
.B \(bv\(bv
-list,
+list except the command following the final \fB&&\fP or \fB\(bv\(bv\fP,
any command in a pipeline but the last,
or if the command's return value is
-being inverted via
+being inverted with
.BR ! .
-Failing simple commands that are part of shell functions or command lists
-enclosed in braces or parentheses satisfying the above conditions do not
-cause the shell to exit.
A trap on \fBERR\fP, if set, is executed before the shell exits.
+This option applies to the shell environment and each subshell environment
+separately (see
+.B "COMMAND EXECUTION ENVIRONMENT"
+above), and may cause
+subshells to exit before executing all the commands in the subshell.
.TP 8
.B \-f
Disable pathname expansion.
.\" Case Western Reserve University
.\" chet@po.cwru.edu
.\"
-.\" Last Change: Mon Dec 29 16:49:01 EST 2008
+.\" Last Change: Sat Feb 7 20:50:40 EST 2009
.\"
.\" bash_builtins, strip all but Built-Ins section
.if \n(zZ=1 .ig zZ
.if \n(zY=1 .ig zY
-.TH BASH 1 "2008 December 29" "GNU Bash-4.0"
+.TH BASH 1 "2009 February 7" "GNU Bash-4.0"
.\"
.\" There's some problem with having a `@'
.\" in a tagged paragraph with the BSD man macros.
effective only when job control is enabled.
.TP 8
.B \-e
-Exit immediately if a \fIsimple command\fP (see
+Exit immediately if a \fIpipeline\fP (which may consist of a single
+\fIsimple command\fP), a \fIsubshell\fP command enclosed in parentheses,
+or one of the commands executed as part of a command list enclosed
+by braces (see
.SM
.B SHELL GRAMMAR
above) exits with a non-zero status.
keyword,
part of the test in an
.B if
-statement, part of a command executed in a
+statement, part of any command executed in a
.B &&
or
.B \(bv\(bv
-list,
+list except the command following the final \fB&&\fP or \fB\(bv\(bv\fP,
any command in a pipeline but the last,
or if the command's return value is
-being inverted via
+being inverted with
.BR ! .
-Failing simple commands that are part of shell functions or command lists
-enclosed in braces or parentheses satisfying the above conditions do not
-cause the shell to exit.
A trap on \fBERR\fP, if set, is executed before the shell exits.
+This option applies to the shell environment and each subshell environment
+separately (see
+.B "COMMAND EXECUTION ENVIRONMENT"
+above), and may cause
+subshells to exit before executing all the commands in the subshell.
.TP 8
.B \-f
Disable pathname expansion.
%!PS-Adobe-3.0
%%Creator: groff version 1.19.2
-%%CreationDate: Thu Feb 5 08:05:28 2009
+%%CreationDate: Tue Feb 10 10:57:01 2009
%%DocumentNeededResources: font Times-Roman
%%+ font Times-Bold
%%+ font Times-Italic
144 686.4 Q .3 -.15(ve \()-.25 H(see).15 E F4(INV)2.5 E(OCA)-.405 E
(TION)-.855 E F0(belo)2.25 E(w\).)-.25 E F2(\255\255login)108 703.2 Q F0
(Equi)144 715.2 Q -.25(va)-.25 G(lent to).25 E F2<ad6c>2.5 E F0(.)A
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(1)190.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(1)195.95 E 0 Cg EP
%%Page: 2 2
%%BeginPageSetup
BP
108 727.2 S 2.5(tt).2 G(he v)-2.5 E(alue of the)-.25 E F3 -.666(PA)2.5 G
(TH)-.189 E F0 -.25(va)2.25 G
(riable is not used to search for the \214le name.).25 E(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(2)190.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(2)195.95 E 0 Cg EP
%%Page: 3 3
%%BeginPageSetup
BP
a sequence of one or more commands separated by one of the control ope\
rators)2.996 F F1(|)2.996 E F0(or)2.996 E F1(|&)2.996 E F0 5.496(.T)C
(he)-5.496 E(format for a pipeline is:)108 715.2 Q(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(3)190.955 E 0 Cg EP
+(2009 February 7)140.96 E(3)195.95 E 0 Cg EP
%%Page: 4 4
%%BeginPageSetup
BP
(A-)-.54 E(TION)144 727.2 Q/F5 9/Times-Roman@0 SF(.)A F0 .411(If the v)
4.911 F .411(alue of the e)-.25 F .411(xpression is non-zero, the retur\
n status is 0; otherwise the return status)-.15 F(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(4)190.955 E 0 Cg EP
+(2009 February 7)140.96 E(4)195.95 E 0 Cg EP
%%Page: 5 5
%%BeginPageSetup
BP
(list)2.728 E F0 .228(that is e)2.728 F -.15(xe)-.15 G .228(cuted, or f)
.15 F .228(alse if an)-.1 F 2.728(yo)-.15 G 2.728(ft)-2.728 G(he)-2.728
E -.15(ex)144 715.2 S(pressions is in).15 E -.25(va)-.4 G(lid.).25 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(5)190.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(5)195.95 E 0 Cg EP
%%Page: 6 6
%%BeginPageSetup
BP
3.131(_PID. The)B F1(wait)3.131 E F0 -.2(bu)3.131 G .631
(iltin command may be used to w).2 F(ait)-.1 E
(for the coprocess to terminate.)108 729.6 Q(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(6)190.955 E 0 Cg EP
+(2009 February 7)140.96 E(6)195.95 E 0 Cg EP
%%Page: 7 7
%%BeginPageSetup
BP
(Backslash escape sequences, if present, are decoded)5.605 F(as follo)
108 681.6 Q(ws:)-.25 E F2(\\a)144 693.6 Q F0(alert \(bell\))28.22 E F2
(\\b)144 705.6 Q F0(backspace)27.66 E F2(\\e)144 717.6 Q F0
-(an escape character)28.78 E(GNU Bash-4.0)72 768 Q(2008 December 29)
-135.965 E(7)190.955 E 0 Cg EP
+(an escape character)28.78 E(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(7)195.95 E 0 Cg EP
%%Page: 8 8
%%BeginPageSetup
BP
(ble quotes, it e)144 724.8 R 1.432(xpands to a single w)-.15 F 1.432
(ord with the v)-.1 F 1.433
(alue of each parameter separated by the \214rst)-.25 F(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(8)190.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(8)195.95 E 0 Cg EP
%%Page: 9 9
%%BeginPageSetup
BP
(cuted, unless the shell is e).15 F -.15(xe)-.15 G 1.243(cuting a).15 F
(command as the result of a trap, in which case it is the command e)144
729.6 Q -.15(xe)-.15 G(cuting at the time of the trap.).15 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(9)190.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(9)195.95 E 0 Cg EP
%%Page: 10 10
%%BeginPageSetup
BP
(is the line number in the source \214le where)5.444 F F1(${FUNCN)144
144 Q(AME[)-.2 E F2($i)A F1(]})A F0 -.1(wa)3.312 G 3.311(sc).1 G .811
(alled \(or)-3.311 F F1(${B)3.311 E(ASH_LINENO[)-.3 E F2($i-1)A F1(]})A
-F0 .811(if referenced within another shell)3.311 F 4.512
-(function\). The)144 156 R 2.012(corresponding source \214le name is)
-4.512 F F1(${B)4.512 E(ASH_SOURCE[)-.3 E F2($i)A F1 4.512(]}. Use)B
-2.012(LINENO to)4.512 F(obtain the curr)144 168 Q(ent line number)-.18 E
-(.)-1 E -.3(BA)108 180 S(SH_REMA).3 E(TCH)-.95 E F0 .006(An array v)144
-192 R .006(ariable whose members are assigned by the)-.25 F F1(=~)2.506
-E F0 .005(binary operator to the)2.506 F F1([[)2.505 E F0 .005
-(conditional com-)2.505 F 2.506(mand. The)144 204 R .007
-(element with inde)2.506 F 2.507(x0i)-.15 G 2.507(st)-2.507 G .007
+F0 .811(if referenced within another shell)3.311 F 4.567
+(function\). The)144 156 R 2.067(corresponding source \214le name is)
+4.567 F F1(${B)4.567 E(ASH_SOURCE[)-.3 E F2($i)A F1(]})A F0 7.067(.U)C
+(se)-7.067 E F1(LINENO)4.567 E F0(to)4.567 E
+(obtain the current line number)144 168 Q(.)-.55 E F1 -.3(BA)108 180 S
+(SH_REMA).3 E(TCH)-.95 E F0 .006(An array v)144 192 R .006
+(ariable whose members are assigned by the)-.25 F F1(=~)2.506 E F0 .005
+(binary operator to the)2.506 F F1([[)2.505 E F0 .005(conditional com-)
+2.505 F 2.506(mand. The)144 204 R .007(element with inde)2.506 F 2.507
+(x0i)-.15 G 2.507(st)-2.507 G .007
(he portion of the string matching the entire re)-2.507 F .007(gular e)
-.15 F(xpression.)-.15 E .998(The element with inde)144 216 R(x)-.15 E
F2(n)3.498 E F0 .997(is the portion of the string matching the)3.498 F
(ternal commands in).15 F -.2(vo)-.4 G -.1(ke).2 G 5.429(db).1 G 5.429
(yt)-5.429 G 2.929(he programmable completion f)-5.429 F 2.929
(acilities \(see)-.1 F F1(Pr)5.429 E(ogrammable)-.18 E(Completion)144
-730.8 Q F0(belo)2.5 E(w\).)-.25 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(10)185.955 E 0 Cg EP
+730.8 Q F0(belo)2.5 E(w\).)-.25 E(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(10)190.95 E 0 Cg EP
%%Page: 11 11
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E/F1 10/Times-Bold@0 SF(COMP_W)108 84 Q(ORDBREAKS)-.1 E F0 1.284
-(The set of characters that the Readline library treats as w)144 96 R
-1.283(ord separators when performing w)-.1 F(ord)-.1 E 3.125
-(completion. If)144 108 R/F2 9/Times-Bold@0 SF(COMP_W)3.125 E(ORDBREAKS)
--.09 E F0 .626(is unset, it loses its special properties, e)2.875 F -.15
-(ve)-.25 G 3.126(ni).15 G 3.126(fi)-3.126 G 3.126(ti)-3.126 G 3.126(ss)
--3.126 G(ubse-)-3.126 E(quently reset.)144 120 Q F1(COMP_W)108 136.8 Q
-(ORDS)-.1 E F0 .654(An array v)144 148.8 R .654(ariable \(see)-.25 F F1
-(Arrays)3.154 E F0(belo)3.154 E .654(w\) consisting of the indi)-.25 F
-.653(vidual w)-.25 F .653(ords in the current command)-.1 F 3.566
-(line. The)144 160.8 R -.1(wo)3.566 G 1.067
-(rds are split on shell metacharacters as the shell parser w).1 F 1.067
-(ould separate them.)-.1 F(This)6.067 E -.25(va)144 172.8 S .004
-(riable is a).25 F -.25(va)-.2 G .004(ilable only in shell functions in)
-.25 F -.2(vo)-.4 G -.1(ke).2 G 2.504(db).1 G 2.504(yt)-2.504 G .004
-(he programmable completion f)-2.504 F .003(acilities \(see)-.1 F F1(Pr)
-144 184.8 Q(ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E F1
-(DIRST)108 201.6 Q -.55(AC)-.9 G(K).55 E F0 2.26(An array v)144 213.6 R
-2.26(ariable \(see)-.25 F F1(Arrays)4.76 E F0(belo)4.76 E 2.26
+-.35 E/F1 10/Times-Bold@0 SF(COMP_W)108 84 Q(ORDBREAKS)-.1 E F0 1.336
+(The set of characters that the)144 96 R F1 -.18(re)3.836 G(adline).18 E
+F0 1.336(library treats as w)3.836 F 1.335
+(ord separators when performing w)-.1 F(ord)-.1 E 3.125(completion. If)
+144 108 R/F2 9/Times-Bold@0 SF(COMP_W)3.125 E(ORDBREAKS)-.09 E F0 .626
+(is unset, it loses its special properties, e)2.875 F -.15(ve)-.25 G
+3.126(ni).15 G 3.126(fi)-3.126 G 3.126(ti)-3.126 G 3.126(ss)-3.126 G
+(ubse-)-3.126 E(quently reset.)144 120 Q F1(COMP_W)108 136.8 Q(ORDS)-.1
+E F0 .654(An array v)144 148.8 R .654(ariable \(see)-.25 F F1(Arrays)
+3.154 E F0(belo)3.154 E .654(w\) consisting of the indi)-.25 F .653
+(vidual w)-.25 F .653(ords in the current command)-.1 F 3.537(line. The)
+144 160.8 R 1.037(line is split into w)3.537 F 1.037(ords as)-.1 F F1
+-.18(re)3.537 G(adline).18 E F0 -.1(wo)3.537 G 1.037
+(uld split it, using).1 F F1(COMP_W)3.538 E(ORDBREAKS)-.1 E F0(as)3.538
+E .832(described abo)144 172.8 R -.15(ve)-.15 G 5.832(.T).15 G .832
+(his v)-5.832 F .832(ariable is a)-.25 F -.25(va)-.2 G .831
+(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 3.331
+(db).1 G 3.331(yt)-3.331 G .831(he programmable)-3.331 F(completion f)
+144 184.8 Q(acilities \(see)-.1 E F1(Pr)2.5 E(ogrammable Completion)-.18
+E F0(belo)2.5 E(w\).)-.25 E F1(DIRST)108 201.6 Q -.55(AC)-.9 G(K).55 E
+F0 2.26(An array v)144 213.6 R 2.26(ariable \(see)-.25 F F1(Arrays)4.76
+E F0(belo)4.76 E 2.26
(w\) containing the current contents of the directory stack.)-.25 F
1.095(Directories appear in the stack in the order the)144 225.6 R 3.594
(ya)-.15 G 1.094(re displayed by the)-3.594 F F1(dirs)3.594 E F0 -.2(bu)
(gument processed by the)-.18 F F1(getopts)4.127 E F0 -.2(bu)4.127 G
1.627(iltin command \(see).2 F F2(SHELL)4.127 E -.09(BU)144 717.6 S(IL)
.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(11)185.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(11)190.95 E 0 Cg EP
%%Page: 12 12
%%BeginPageSetup
BP
(in)144 705.6 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(db).1 G 2.5(yt)-2.5 G
(he programmable completion f)-2.5 E(acility \(see)-.1 E F1(Pr)2.5 E
(ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(12)185.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(12)190.95 E 0 Cg EP
%%Page: 13 13
%%BeginPageSetup
BP
(The list of possible hostname completions may be changed while)5.551 F
1.059(the shell is running; the ne)144 720 R 1.059
(xt time hostname completion is attempted after the v)-.15 F 1.058
-(alue is changed,)-.25 F(GNU Bash-4.0)72 768 Q(2008 December 29)135.965
-E(13)185.955 E 0 Cg EP
+(alue is changed,)-.25 F(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E
+(13)190.95 E 0 Cg EP
%%Page: 14 14
%%BeginPageSetup
BP
(The def)5.868 F .868(ault path is system-dependent, and is set by the)
-.1 F 26.329(administrator who installs)144 720 R F1(bash)28.829 E F0
31.329(.A)C 26.328(common v)-2.501 F 26.328(alue is)-.25 F(GNU Bash-4.0)
-72 768 Q(2008 December 29)135.965 E(14)185.955 E 0 Cg EP
+72 768 Q(2009 February 7)140.96 E(14)190.95 E 0 Cg EP
%%Page: 15 15
%%BeginPageSetup
BP
702 R F2(Bash)2.774 E F0 .274(uses its v)2.774 F .274
(alue as the name of a directory in which)-.25 F F2(Bash)2.773 E F0 .273
(creates temporary \214les for the)2.773 F(shell')144 714 Q 2.5(su)-.55
-G(se.)-2.5 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(15)185.955
-E 0 Cg EP
+G(se.)-2.5 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(15)190.95 E
+0 Cg EP
%%Page: 16 16
%%BeginPageSetup
BP
F F1(*)2.728 E F0(and)2.728 E F1(@)2.728 E F0(\(see)2.728 E F1 .228
(Special P)2.728 F(arameters)-.1 E F0(abo)2.728 E -.15(ve)-.15 G 2.728
(\). ${#).15 F F2(name)A F0([)A F2(subscript)A F0(]})A(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(16)185.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(16)190.95 E 0 Cg EP
%%Page: 17 17
%%BeginPageSetup
BP
108 681.6 R(longer than in the abo)108 693.6 Q .3 -.15(ve ex)-.15 H
(ample:).15 E(mkdir /usr/local/src/bash/{old,ne)144 710.4 Q -.65(w,)-.25
G(dist,b).65 E(ugs})-.2 E(or)108 722.4 Q(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(17)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(17)190.95 E 0 Cg EP
%%Page: 18 18
%%BeginPageSetup
BP
-.15 E F0 .723(is unset or null, the e)3.952 F .723(xpansion of)-.15 F
F2(wor)3.563 E(d)-.37 E F0 .723(is substituted.)3.993 F(Other)5.723 E(-)
-.2 E(wise, the v)144 717.6 Q(alue of)-.25 E F2(par)3.75 E(ameter)-.15 E
-F0(is substituted.)3.23 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965
-E(18)185.955 E 0 Cg EP
+F0(is substituted.)3.23 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E
+(18)190.95 E 0 Cg EP
%%Page: 19 19
%%BeginPageSetup
BP
(is applied to each member of the array in turn, and the e)144 679.2 Q
(xpansion is the resultant list.)-.15 E(${)108 696 Q F1(par)A(ameter)
-.15 E F2(%)A F1(wor)A(d)-.37 E F0(})A(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(19)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(19)190.95 E 0 Cg EP
%%Page: 20 20
%%BeginPageSetup
BP
(quotes with backslashes.)108 686.4 Q .422
(If the substitution appears within double quotes, w)108 703.2 R .422
(ord splitting and pathname e)-.1 F .422(xpansion are not performed)-.15
-F(on the results.)108 715.2 Q(GNU Bash-4.0)72 768 Q(2008 December 29)
-135.965 E(20)185.955 E 0 Cg EP
+F(on the results.)108 715.2 Q(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(20)190.95 E 0 Cg EP
%%Page: 21 21
%%BeginPageSetup
BP
-.4(r, s).15 H(etting).4 E F3(GLOBIGNORE)2.545 E F0 .046
(to a non-null v)2.296 F .046(alue has the ef)-.25 F .046
(fect of enabling the)-.25 F F1(dotglob)2.546 E F0(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(21)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(21)190.95 E 0 Cg EP
%%Page: 22 22
%%BeginPageSetup
BP
(ected)-.37 E F0 .545(using a special notation interpreted)3.815 F 2.77
(by the shell.)108 723.6 R 2.769(Redirection may also be used to open a\
nd close \214les for the current shell e)7.77 F -.15(xe)-.15 G(cution)
-.15 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(22)185.955 E 0 Cg
-EP
+.15 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(22)190.95 E 0 Cg EP
%%Page: 23 23
%%BeginPageSetup
BP
E F0(dirlist 2)2.5 E F2(>&)A F0(1)A
(directs both standard output and standard error to the \214le)108 240 Q
F1(dirlist)2.5 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 256.8
-Q F2(>&)A F0(1)A F2(>)2.5 E F0(dirlist)2.5 E .387
-(directs only the standard output to \214le)108 273.6 R F1(dirlist)2.887
-E F0 2.887(,b).68 G .388(ecause the standard error w)-2.887 F .388
-(as duplicated as standard output)-.1 F(before the standard output w)108
-285.6 Q(as redirected to)-.1 E F1(dirlist)2.5 E F0(.).68 E F2(Bash)108
-302.4 Q F0 .599(handles se)3.099 F -.15(ve)-.25 G .599
-(ral \214lenames specially when the).15 F 3.099(ya)-.15 G .598
-(re used in redirections, as described in the follo)-3.099 F(wing)-.25 E
-(table:)108 314.4 Q F2(/de)144 331.2 Q(v/fd/)-.15 E F1(fd)A F0(If)180
-343.2 Q F1(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E(ger)-.15 E 2.5
-<2c8c>-.4 G(le descriptor)-2.5 E F1(fd)2.5 E F0(is duplicated.)2.5 E F2
-(/de)144 355.2 Q(v/stdin)-.15 E F0(File descriptor 0 is duplicated.)180
-367.2 Q F2(/de)144 379.2 Q(v/stdout)-.15 E F0
+Q F2(>&)A F0(1)A F2(>)2.5 E F0(dirlist)2.5 E .527
+(directs only the standard output to \214le)108 273.6 R F1(dirlist)3.027
+E F0 3.027(,b).68 G .527(ecause the standard error w)-3.027 F .527
+(as duplicated from the standard)-.1 F
+(output before the standard output w)108 285.6 Q(as redirected to)-.1 E
+F1(dirlist)2.5 E F0(.).68 E F2(Bash)108 302.4 Q F0 .599(handles se)3.099
+F -.15(ve)-.25 G .599(ral \214lenames specially when the).15 F 3.099(ya)
+-.15 G .598(re used in redirections, as described in the follo)-3.099 F
+(wing)-.25 E(table:)108 314.4 Q F2(/de)144 331.2 Q(v/fd/)-.15 E F1(fd)A
+F0(If)180 343.2 Q F1(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E(ger)-.15
+E 2.5<2c8c>-.4 G(le descriptor)-2.5 E F1(fd)2.5 E F0(is duplicated.)2.5
+E F2(/de)144 355.2 Q(v/stdin)-.15 E F0(File descriptor 0 is duplicated.)
+180 367.2 Q F2(/de)144 379.2 Q(v/stdout)-.15 E F0
(File descriptor 1 is duplicated.)180 391.2 Q F2(/de)144 403.2 Q
(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 415.2 Q F2(/de)
144 427.2 Q(v/tcp/)-.15 E F1(host)A F2(/)A F1(port)A F0(If)180 439.2 Q
1.76(ail if the \214le whose name results from the e)-.1 F 1.759
(xpansion of)-.15 F F1(wor)4.259 E(d)-.37 E F0 -.15(ex)4.259 G 1.759
(ists and is a re).15 F 1.759(gular \214le.)-.15 F 1.759(If the)6.759 F
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(23)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(23)190.95 E 0 Cg EP
%%Page: 24 24
%%BeginPageSetup
BP
(<<<)144 681.6 Q F2(wor)A(d)-.37 E F0(The)108 698.4 Q F2(wor)2.5 E(d)
-.37 E F0(is e)2.5 E
(xpanded and supplied to the command on its standard input.)-.15 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(24)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(24)190.95 E 0 Cg EP
%%Page: 25 25
%%BeginPageSetup
BP
(another command does not tak)108 727.2 R 3.662(ee)-.1 G -.25(ff)-3.662
G 1.162(ect until the ne).25 F 1.162(xt line of input is read.)-.15 F
1.161(The commands follo)6.161 F 1.161(wing the)-.25 F(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(25)185.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(25)190.95 E 0 Cg EP
%%Page: 26 26
%%BeginPageSetup
BP
(multiplication, di)10.72 E(vision, remainder)-.25 E F1 2.5<2bad>108
686.4 S F0(addition, subtraction)19.6 E F1(<< >>)108 698.4 Q F0
(left and right bitwise shifts)10.7 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(26)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(26)190.95 E 0 Cg EP
%%Page: 27 27
%%BeginPageSetup
BP
-.15(ex)2.5 G(ists and has a size greater than zero.).15 E F1<ad74>108
708 Q F2(fd)2.5 E F0 -.35(Tr)16.69 G(ue if \214le descriptor).35 E F2
(fd)4.47 E F0(is open and refers to a terminal.)3.27 E(GNU Bash-4.0)72
-768 Q(2008 December 29)135.965 E(27)185.955 E 0 Cg EP
+768 Q(2009 February 7)140.96 E(27)190.95 E 0 Cg EP
%%Page: 28 28
%%BeginPageSetup
BP
(he assignments attempts to assign a v)-3.176 F .677
(alue to a readonly v)-.25 F .677(ariable, an error occurs, and)-.25 F
(the command e)108 724.8 Q(xits with a non-zero status.)-.15 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(28)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(28)190.95 E 0 Cg EP
%%Page: 29 29
%%BeginPageSetup
BP
(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F4(set)2.5 E
F0 32.5<836f>108 700.8 S(ptions enabled by)-32.5 E F4(shopt)2.5 E F0
32.5<8373>108 717.6 S(hell aliases de\214ned with)-32.5 E F4(alias)2.5 E
-F0(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(29)185.955 E 0 Cg EP
+F0(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(29)190.95 E 0 Cg EP
%%Page: 30 30
%%BeginPageSetup
BP
729.6 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G .873
(urposes, a command which e)-3.372 F .873(xits with a zero e)-.15 F .873
(xit status has succeeded.)-.15 F .873(An e)5.873 F .873(xit status of)
--.15 F(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(30)185.955 E 0
-Cg EP
+-.15 F(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(30)190.95 E 0 Cg
+EP
%%Page: 31 31
%%BeginPageSetup
BP
(If the operating system on which)108 720 R F2(bash)3.588 E F0 1.088
(is running supports job control,)3.588 F F2(bash)3.587 E F0 1.087
(contains f)3.587 F 1.087(acilities to use it.)-.1 F(GNU Bash-4.0)72 768
-Q(2008 December 29)135.965 E(31)185.955 E 0 Cg EP
+Q(2009 February 7)140.96 E(31)190.95 E 0 Cg EP
%%Page: 32 32
%%BeginPageSetup
BP
684 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E F2(\\T)144
696 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E F2(\\@)144
708 Q F0(the current time in 12-hour am/pm format)23.92 E(GNU Bash-4.0)
-72 768 Q(2008 December 29)135.965 E(32)185.955 E 0 Cg EP
+72 768 Q(2009 February 7)140.96 E(32)190.95 E 0 Cg EP
%%Page: 33 33
%%BeginPageSetup
BP
-.15(ey)-.1 G .987(-bindings may be changed with an).15 F F2(inputr)
3.497 E(c)-.37 E F0 3.487(\214le. Other)3.797 F .987
(programs that use this library may)3.487 F(add their o)108 717.6 Q
-(wn commands and bindings.)-.25 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(33)185.955 E 0 Cg EP
+(wn commands and bindings.)-.25 E(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(33)190.95 E 0 Cg EP
%%Page: 34 34
%%BeginPageSetup
BP
648 Q F0(delete)27.66 E F2(\\f)144 660 Q F0(form feed)29.89 E F2(\\n)144
672 Q F0(ne)27.66 E(wline)-.25 E F2(\\r)144 684 Q F0(carriage return)
28.78 E F2(\\t)144 696 Q F0(horizontal tab)29.89 E F2(\\v)144 708 Q F0
--.15(ve)28.22 G(rtical tab).15 E(GNU Bash-4.0)72 768 Q(2008 December 29)
-135.965 E(34)185.955 E 0 Cg EP
+-.15(ve)28.22 G(rtical tab).15 E(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(34)190.95 E 0 Cg EP
%%Page: 35 35
%%BeginPageSetup
BP
(eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G
.893(pad when it is called.).15 F .892(Some sys-)5.893 F
(tems need this to enable the arro)144 712.8 Q 2.5(wk)-.25 G -.15(ey)
--2.6 G(s.).15 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(35)
-185.955 E 0 Cg EP
+-2.6 G(s.).15 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(35)190.95
+E 0 Cg EP
%%Page: 36 36
%%BeginPageSetup
BP
2.977 E F0 2.977(,w)C .477(ords which ha)-3.077 F .777 -.15(ve m)-.2 H
(ore).15 E 1.264(than one possible completion cause the matches to be l\
isted immediately instead of ringing the)144 696 R(bell.)144 708 Q
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(36)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(36)190.95 E 0 Cg EP
%%Page: 37 37
%%BeginPageSetup
BP
(alue the Escape and Control-J characters will terminate an incre-)-.25
F .096(mental search.)108 720 R .096(Control-G will abort an incrementa\
l search and restore the original line.)5.096 F .097(When the search is)
-5.097 F(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(37)185.955 E 0
-Cg EP
+5.097 F(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(37)190.95 E 0 Cg
+EP
%%Page: 38 38
%%BeginPageSetup
BP
E(ving back in the list.)-.15 E F2(next\255history \(C\255n\))108 688.8
Q F0(Fetch the ne)144 700.8 Q(xt command from the history list, mo)-.15
E(ving forw)-.15 E(ard in the list.)-.1 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(38)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(38)190.95 E 0 Cg EP
%%Page: 39 39
%%BeginPageSetup
BP
(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.247 -.15
(ve t)-.25 H 3.447(ot).15 G .947(he current line from the)-3.447 F
(history for editing.)144 708 Q(An)5 E 2.5(ya)-.15 G -.18(rg)-2.5 G
-(ument is ignored.).18 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965
-E(39)185.955 E 0 Cg EP
+(ument is ignored.).18 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E
+(39)190.95 E 0 Cg EP
%%Page: 40 40
%%BeginPageSetup
BP
(The killed te)5 E(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)
-2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 693.6 Q F0
(Kill all characters on the current line, no matter where point is.)144
-705.6 Q(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(40)185.955 E 0
-Cg EP
+705.6 Q(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(40)190.95 E 0 Cg
+EP
%%Page: 41 41
%%BeginPageSetup
BP
(duces a match, \214lename completion is attempted.)144 693.6 Q F1
(possible\255completions \(M\255?\))108 705.6 Q F0
(List the possible completions of the te)144 717.6 Q(xt before point.)
--.15 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(41)185.955 E 0
-Cg EP
+-.15 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(41)190.95 E 0 Cg
+EP
%%Page: 42 42
%%BeginPageSetup
BP
E F0(Re-e)144 700.8 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey)
-.1 G .999(board macro de\214ned, by making the characters in the macro\
appear as if).15 F(typed at the k)144 712.8 Q -.15(ey)-.1 G(board.).15
-E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(42)185.955 E 0 Cg EP
+E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(42)190.95 E 0 Cg EP
%%Page: 43 43
%%BeginPageSetup
BP
.321(the characters at the be)144 480 R .321
(ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1
(comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is)
--.25 F 1.014(inserted, otherwise the characters in)144 492 R F1
-(comment-begin)3.514 E F0 1.014(are deleted from the be)3.514 F 1.013
+-.25 F .832(inserted, otherwise the characters in)144 492 R F1
+(comment\255begin)3.332 E F0 .831(are deleted from the be)3.332 F .831
(ginning of the line.)-.15 F 1.468
(In either case, the line is accepted as if a ne)144 504 R 1.468
(wline had been typed.)-.25 F 1.469(The def)6.469 F 1.469(ault v)-.1 F
5.626 F(gu-)-.18 E
(ment is supplied, the output is formatted in such a w)144 696 Q
(ay that it can be made part of an)-.1 E F2(inputr)2.5 E(c)-.37 E F0
-(\214le.)2.5 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(43)
-185.955 E 0 Cg EP
+(\214le.)2.5 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(43)190.95
+E 0 Cg EP
%%Page: 44 44
%%BeginPageSetup
BP
(iteral)-3.023 E F1(&)3.023 E F0 .522
(may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve)
-.15 G 3.022(db).15 G(efore)-3.022 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(44)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(44)190.95 E 0 Cg EP
%%Page: 45 45
%%BeginPageSetup
BP
(iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F4 .318(SHELL B)2.818 F
(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .318
(for information on setting and)2.568 F(unsetting shell options.)108
-703.2 Q(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(45)185.955 E 0
-Cg EP
+703.2 Q(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(45)190.95 E 0 Cg
+EP
%%Page: 46 46
%%BeginPageSetup
BP
(ginning of the line, with the \214rst w)-.15 F 1.301
(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.301 G 1.301(rds are).8
F(inserted into the current line separated by single spaces.)108 710.4 Q
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(46)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(46)190.95 E 0 Cg EP
%%Page: 47 47
%%BeginPageSetup
BP
(xited within the script \(0 if no commands are e)-.15 F -.15(xe)-.15 G
.716(cuted\), and f).15 F .716(alse if)-.1 F F2(\214lename)145.91 726 Q
F0(is not found or cannot be read.)2.68 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(47)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(47)190.95 E 0 Cg EP
%%Page: 48 48
%%BeginPageSetup
BP
E F0(1.)2.555 E(If)144 727.2 Q F2(n)3.075 E F0 .215(is greater than the\
number of enclosing loops, all enclosing loops are e)2.955 F 2.714
(xited. The)-.15 F .214(return v)2.714 F(alue)-.25 E(GNU Bash-4.0)72 768
-Q(2008 December 29)135.965 E(48)185.955 E 0 Cg EP
+Q(2009 February 7)140.96 E(48)190.95 E 0 Cg EP
%%Page: 49 49
%%BeginPageSetup
BP
(option is supplied, or if no)3.133 F .139(options are supplied, e)144
724.8 R .139(xisting completion speci\214cations are printed in a w)-.15
F .14(ay that allo)-.1 F .14(ws them to be)-.25 F(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(49)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(49)190.95 E 0 Cg EP
%%Page: 50 50
%%BeginPageSetup
BP
(gr)184 672 Q(oup)-.18 E F0(Group names.)14.62 E
(May also be speci\214ed as)5 E F1<ad67>2.5 E F0(.)A F1(helptopic)184
684 Q F0(Help topics as accepted by the)224 696 Q F1(help)2.5 E F0 -.2
-(bu)2.5 G(iltin.).2 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E
-(50)185.955 E 0 Cg EP
+(bu)2.5 G(iltin.).2 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(50)
+190.95 E 0 Cg EP
%%Page: 51 51
%%BeginPageSetup
BP
(ve)-.25 G(l').15 E 3.013('l)-.74 G .513(oop\) is resumed.)-3.013 F .514
(The return v)5.514 F .514(alue is 0 unless)-.25 F F3(n)3.014 E F0(is)
3.014 E(not greater than or equal to 1.)144 703.2 Q(GNU Bash-4.0)72 768
-Q(2008 December 29)135.965 E(51)185.955 E 0 Cg EP
+Q(2009 February 7)140.96 E(51)190.95 E 0 Cg EP
%%Page: 52 52
%%BeginPageSetup
BP
(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258
(lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe)
-.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-)
-.15 F(tory stack.)144 722.4 Q(GNU Bash-4.0)72 768 Q(2008 December 29)
-135.965 E(52)185.955 E 0 Cg EP
+.15 F(tory stack.)144 722.4 Q(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(52)190.95 E 0 Cg EP
%%Page: 53 53
%%BeginPageSetup
BP
.15 F(non-interacti)144 727.2 Q 2.002 -.15(ve s)-.25 H 1.702(hell e).15
F 1.702(xits, unless the shell option)-.15 F F1(execfail)4.201 E F0
1.701(is enabled, in which case it returns)4.201 F(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(53)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(53)190.95 E 0 Cg EP
%%Page: 54 54
%%BeginPageSetup
BP
(or a shell script is in)144 720 R -.2(vo)-.4 G -.1(ke).2 G 3.345
(d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F2
(getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(54)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(54)190.95 E 0 Cg EP
%%Page: 55 55
%%BeginPageSetup
BP
(associated with each displayed history entry)144 722.4 R 8.118(.N)-.65
G 5.617(oi)-8.118 G(nterv)-5.617 E 3.117
(ening blank is printed between the)-.15 F(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(55)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(55)190.95 E 0 Cg EP
%%Page: 56 56
%%BeginPageSetup
BP
(he options accepted by)-4.514 F F3(declar)4.514 E(e)-.18 E F0 7.014(.W)
C(hen)-7.014 E F3(local)4.514 E F0 2.013
(is used within a function, it causes the)4.514 F(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(56)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(56)190.95 E 0 Cg EP
%%Page: 57 57
%%BeginPageSetup
BP
(is reused as necessary to consume all of the)3.423 F F1(ar)3.423 E
(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F1(format)
3.423 E F0 .924(requires more)3.424 F(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(57)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(57)190.95 E 0 Cg EP
%%Page: 58 58
%%BeginPageSetup
BP
reading the name of the current directory or an in)144 374.4 R -.25(va)
-.4 G(lid).25 E(option is supplied.)144 386.4 Q F2 -.18(re)108 403.2 S
(ad).18 E F0([)2.5 E F2(\255ers)A F0 2.5(][)C F2<ad61>-2.5 E F1(aname)
-2.5 E F0 2.5(][)C F2<ad64>-2.5 E F1(delim)2.5 E F0 2.5(][)C F2<ad>-2.5 E
-F1(te)2.5 E(xt)-.2 E F0 2.5(][)C F2<ad6e>-2.5 E F1(nc)2.5 E(har)-.15 E
+2.5 E F0 2.5(][)C F2<ad64>-2.5 E F1(delim)2.5 E F0 2.5(][)C F2<ad69>-2.5
+E F1(te)2.5 E(xt)-.2 E F0 2.5(][)C F2<ad6e>-2.5 E F1(nc)2.5 E(har)-.15 E
(s)-.1 E F0 2.5(][)C F2<ad70>-2.5 E F1(pr)2.5 E(ompt)-.45 E F0 2.5(][)C
F2<ad74>-2.5 E F1(timeout)2.5 E F0 2.5(][)C F2<ad75>-2.5 E F1(fd)2.5 E
F0 2.5(][)C F1(name)-2.5 E F0(...])2.5 E .516(One line is read from the\
(ackslash-ne)-2.5 E(wline pair may not be used as a line continuation.)
-.25 E F2<ad73>144 715.2 Q F0(Silent mode.)26.41 E
(If input is coming from a terminal, characters are not echoed.)5 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(58)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(58)190.95 E 0 Cg EP
%%Page: 59 59
%%BeginPageSetup
BP
(guments in the form of assignment statements are placed in the en)-.18
F .513(vironment for a)-.4 F
(command, not just those that precede the command name.)184 727.2 Q
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(59)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(59)190.95 E 0 Cg EP
%%Page: 60 60
%%BeginPageSetup
BP
F3(option\255name)3.572 E F0 3.572(,a)C 1.071(series of)-.001 F F1(set)
3.571 E F0 1.071(commands to recreate the current)3.571 F
(option settings is displayed on the standard output.)184 714 Q
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(60)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(60)190.95 E 0 Cg EP
%%Page: 61 61
%%BeginPageSetup
BP
144 710.4 Q F1<ad70>2.827 E F0 .327(option causes output to be displaye\
d in a form that may be reused as input.)2.827 F .328(Other options)
5.328 F(ha)144 722.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)
--.25 E(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(61)185.955 E 0
-Cg EP
+-.25 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(61)190.95 E 0 Cg
+EP
%%Page: 62 62
%%BeginPageSetup
BP
28.5 F F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167
F 1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220
716.4 Q -.15(xe)-.15 G(cuted.).15 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(62)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(62)190.95 E 0 Cg EP
%%Page: 63 63
%%BeginPageSetup
BP
-.1(wa)184 720 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
(`The mail in)-.74 E F2(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i)
-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(63)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(63)190.95 E 0 Cg EP
%%Page: 64 64
%%BeginPageSetup
BP
(xpressions using a set of rules based on the number of ar)-.15 E
(guments.)-.18 E 2.5(0a)144 700.8 S -.18(rg)-2.5 G(uments).18 E(The e)
180 712.8 Q(xpression is f)-.15 E(alse.)-.1 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(64)185.955 E 0 Cg EP
+(2009 February 7)140.96 E(64)190.95 E 0 Cg EP
%%Page: 65 65
%%BeginPageSetup
BP
(found, then nothing is printed, and an e)144 722.4 R .118
(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F
F1<ad70>2.618 E F0 .118(option is used,)2.618 F F1(type)2.618 E F0
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(65)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(65)190.95 E 0 Cg EP
%%Page: 66 66
%%BeginPageSetup
BP
26.97 E F3<ad69>144 376.8 Q F0(The maximum number of pending signals)
27.52 E F3<ad6c>144 388.8 Q F0(The maximum size that may be lock)27.52 E
(ed into memory)-.1 E F3<ad6d>144 400.8 Q F0
-(The maximum resident set size)21.97 E F3<ad6e>144 412.8 Q F0 .791(The \
-maximum number of open \214le descriptors \(most systems do not allo)
+(The maximum resident set size \(man)21.97 E 2.5(ys)-.15 G
+(ystems do not honor this limit\))-2.5 E F3<ad6e>144 412.8 Q F0 .791(Th\
+e maximum number of open \214le descriptors \(most systems do not allo)
24.74 F 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F(be set\))180
424.8 Q F3<ad70>144 436.8 Q F0
(The pipe size in 512-byte blocks \(this may not be set\))24.74 E F3
F3<ad61>4.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155
F(remo)144 727.2 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E
(alue is true unless a supplied)-.25 E F1(name)2.86 E F0
-(is not a de\214ned alias.)2.68 E(GNU Bash-4.0)72 768 Q
-(2008 December 29)135.965 E(66)185.955 E 0 Cg EP
+(is not a de\214ned alias.)2.68 E(GNU Bash-4.0)72 768 Q(2009 February 7)
+140.96 E(66)190.95 E 0 Cg EP
%%Page: 67 67
%%BeginPageSetup
BP
108 662.4 Q F0(\(1\),)A F2(vi)2.5 E F0(\(1\))A F2 -.37(re)108 674.4 S
(adline).37 E F0(\(3\))A F5(FILES)72 691.2 Q F2(/bin/bash)109.666 703.2
Q F0(The)144 715.2 Q F1(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E
-(GNU Bash-4.0)72 768 Q(2008 December 29)135.965 E(67)185.955 E 0 Cg EP
+(GNU Bash-4.0)72 768 Q(2009 February 7)140.96 E(67)190.95 E 0 Cg EP
%%Page: 68 68
%%BeginPageSetup
BP
72 208.8 S(THORS).548 E F0(Brian F)108 220.8 Q(ox, Free Softw)-.15 E
(are F)-.1 E(oundation)-.15 E(bfox@gnu.or)108 232.8 Q(g)-.18 E
(Chet Rame)108 249.6 Q 1.3 -.65(y, C)-.15 H(ase W).65 E(estern Reserv)
--.8 E 2.5(eU)-.15 G(ni)-2.5 E -.15(ve)-.25 G(rsity).15 E
-(chet@po.cwru.edu)108 261.6 Q F2 -.11(BU)72 278.4 S 2.738(GR).11 G(EPOR)
+-.8 E 2.5(eU)-.15 G(ni)-2.5 E -.15(ve)-.25 G(rsity).15 E(chet.rame)108
+261.6 Q(y@case.edu)-.15 E F2 -.11(BU)72 278.4 S 2.738(GR).11 G(EPOR)
-2.738 E(TS)-.438 E F0 .567(If you \214nd a b)108 290.4 R .568(ug in)-.2
F/F3 10/Times-Bold@0 SF(bash,)3.068 E F0 .568(you should report it.)
3.068 F .568(But \214rst, you should mak)5.568 F 3.068(es)-.1 G .568
(subshell, which may be stopped as a unit.)108 614.4 Q(Array v)108 631.2
Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E
(There may be only one acti)108 648 Q .3 -.15(ve c)-.25 H
-(oprocess at a time.).15 E(GNU Bash-4.0)72 768 Q(2008 December 29)
-135.965 E(68)185.955 E 0 Cg EP
+(oprocess at a time.).15 E(GNU Bash-4.0)72 768 Q(2009 February 7)140.96
+E(68)190.95 E 0 Cg EP
%%Trailer
end
%%EOF
-This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.12.11) 5 FEB 2009 08:05
+This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.12.11) 10 FEB 2009 10:57
**/Users/chet/src/bash/src/doc/bashref.texi
(/Users/chet/src/bash/src/doc/bashref.texi (./texinfo.tex
Loading texinfo [version 2003-02-03.16]: Basics,
Here is how much of TeX's memory you used:
1735 strings out of 97980
23684 string characters out of 1221004
- 52965 words of memory out of 1500000
+ 52963 words of memory out of 1500000
2586 multiletter control sequences out of 10000+50000
31953 words of font info for 111 fonts, out of 1200000 for 2000
19 hyphenation exceptions out of 8191
15i,8n,11p,269b,474s stack positions out of 5000i,500n,6000p,200000b,5000s
-Output written on bashref.dvi (164 pages, 637528 bytes).
+Output written on bashref.dvi (164 pages, 637564 bytes).
The maximum size that may be locked into memory.
@item -m
-The maximum resident set size.
+The maximum resident set size (many systems do not honor this limit).
@item -n
-The maximum number of open file descriptors.
+The maximum number of open file descriptors (most systems do not
+allow this value to be set).
@item -p
The pipe buffer size.
immediately, rather than before printing the next primary prompt.
@item -e
-Exit immediately if a simple command (@pxref{Simple Commands}) exits
-with a non-zero status, unless the command that fails is part of the
+Exit immediately if a pipeline (@pxref{Pipelines}), which may consist
+of a single simple command (@pxref{Simple Commands}),
+a subshell command enclosed in parentheses (@pxref{Grouping Commands}),
+or one of the commands executed as part of a command list enclosed
+by braces (@pxref{Grouping Commands})
+returns a non-zero status.
+The shell does not exit if the command that fails is part of the
command list immediately following a @code{while} or @code{until} keyword,
part of the test in an @code{if} statement,
-part of a command executed in a @code{&&} or @code{||b} list,
+part of any command executed in a @code{&&} or @code{||} list except
+the command following the final @code{&&} or @code{||},
any command in a pipeline but the last,
-or if the command's return status is being inverted using @code{!}.
-Failing simple commands that are part of shell functions or command lists
-enclosed in braces or parentheses satisfying the above conditions do not
-cause the shell to exit.
+or if the command's return status is being inverted with @code{!}.
A trap on @code{ERR}, if set, is executed before the shell exits.
+This option applies to the shell environment and each subshell environment
+separately (@pxref{Command Execution Environment}), and may cause
+subshells to exit before executing all the commands in the subshell.
+
@item -f
Disable file name generation (globbing).
the template it provides for filing a bug report.
Please send all reports concerning this manual to
-@email{chet@@po.CWRU.Edu}.
+@email{chet.ramey@case.edu}.
@node Major Differences From The Bourne Shell
@appendix Major Differences From The Bourne Shell
immediately, rather than before printing the next primary prompt.
@item -e
-Exit immediately if a simple command (@pxref{Simple Commands}) exits
-with a non-zero status, unless the command that fails is part of the
+Exit immediately if a pipeline (@pxref{Pipelines}), which may consist
+of a single simple command (@pxref{Simple Commands}),
+a subshell command enclosed in parentheses (@pxref{Grouping Commands}),
+or one of the commands executed as part of a command list enclosed
+by braces (@pxref{Grouping Commands})
+returns a non-zero status.
+The shell does not exit if the command that fails is part of the
command list immediately following a @code{while} or @code{until} keyword,
part of the test in an @code{if} statement,
-part of a command executed in a @code{&&} or @code{||b} list,
+part of any command executed in a @code{&&} or @code{||} list except
+the command following the final @code{&&} or @code{||},
any command in a pipeline but the last,
-or if the command's return status is being inverted using @code{!}.
-Failing simple commands that are part of shell functions or command lists
-enclosed in braces or parentheses satisfying the above conditions do not
-cause the shell to exit.
+or if the command's return status is being inverted with @code{!}.
A trap on @code{ERR}, if set, is executed before the shell exits.
+This option applies to the shell environment and each subshell environment
+separately (@pxref{Command Execution Environment}), and may cause
+subshells to exit before executing all the commands in the subshell.
+
@item -f
Disable file name generation (globbing).
An array variable consisting of the individual
words in the current command line.
The line is split into words as Readline would split it, using
-@var{rl_completer_word_break_characters}
-(@pxref{Completion Variables}).
+@code{COMP_WORDBREAKS} as described above.
This variable is available only in shell functions invoked by the
programmable completion facilities (@pxref{Programmable Completion}).
the template it provides for filing a bug report.
Please send all reports concerning this manual to
-@email{chet@@po.CWRU.Edu}.
+@email{chet.ramey@case.edu}.
@node Major Differences From The Bourne Shell
@appendix Major Differences From The Bourne Shell
Copyright (C) 1988-2009 Free Software Foundation, Inc.
@end ignore
-@set LASTCHANGE Sat Feb 7 20:51:06 EST 2009
+@set LASTCHANGE Fri Feb 13 18:29:03 EST 2009
@set EDITION 4.0
@set VERSION 4.0
-@set UPDATED 7 February 2009
+@set UPDATED 13 February 2009
@set UPDATED-MONTH February 2009
Copyright (C) 1988-2009 Free Software Foundation, Inc.
@end ignore
-@set LASTCHANGE Mon Dec 29 16:48:40 EST 2008
+@set LASTCHANGE Sat Feb 7 20:51:06 EST 2009
@set EDITION 4.0
@set VERSION 4.0
-@set UPDATED 29 December 2008
-@set UPDATED-MONTH December 2008
+@set UPDATED 7 February 2009
+@set UPDATED-MONTH February 2009
int pipe_in, pipe_out;
struct fd_bitmap *fds_to_close;
{
- int exec_result, invert, ignore_return, was_error_trap;
+ int exec_result, user_subshell, invert, ignore_return, was_error_trap;
REDIRECT *my_undo_list, *exec_undo_list;
volatile int last_pid;
volatile int save_line_number;
return (execute_coproc (command, pipe_in, pipe_out, fds_to_close));
#endif
+ user_subshell = command->type == cm_subshell || ((command->flags & CMD_WANT_SUBSHELL) != 0);
+
if (command->type == cm_subshell ||
(command->flags & (CMD_WANT_SUBSHELL|CMD_FORCE_SUBSHELL)) ||
(shell_control_structure (command->type) &&
if (asynchronous == 0)
{
+ was_error_trap = signal_is_trapped (ERROR_TRAP) && signal_is_ignored (ERROR_TRAP) == 0;
+ invert = (command->flags & CMD_INVERT_RETURN) != 0;
+ ignore_return = (command->flags & CMD_IGNORE_RETURN) != 0;
+
last_command_exit_value = wait_for (paren_pid);
/* If we have to, invert the return value. */
else
exec_result = last_command_exit_value;
+
+ if (user_subshell && was_error_trap && ignore_return == 0 && invert == 0 && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_error_trap ();
+ }
+
+ if (user_subshell && ignore_return == 0 && invert == 0 && exit_immediately_on_error && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_pending_traps ();
+ jump_to_top_level (ERREXIT);
+ }
+
return (last_command_exit_value = exec_result);
}
else
}
}
- /* 10/6/2008 -- added test for pipe_in and pipe_out because they indicate
- the presence of a pipeline, and (until Posix changes things), a
- pipeline failure should not cause the parent shell to exit on an
- unsuccessful return status, even in the presence of errexit.. */
+ /* 2009/02/13 -- pipeline failure is processed elsewhere. This handles
+ only the failure of a simple command. */
if (was_error_trap && ignore_return == 0 && invert == 0 && pipe_in == NO_PIPE && pipe_out == NO_PIPE && exec_result != EXECUTION_SUCCESS)
{
last_command_exit_value = exec_result;
{
REDIRECT *rp;
COMMAND *tc, *second;
- int ignore_return, exec_result;
+ int ignore_return, exec_result, was_error_trap, invert;
ignore_return = (command->flags & CMD_IGNORE_RETURN) != 0;
break;
case '|':
+ was_error_trap = signal_is_trapped (ERROR_TRAP) && signal_is_ignored (ERROR_TRAP) == 0;
+ invert = (command->flags & CMD_INVERT_RETURN) != 0;
+ ignore_return = (command->flags & CMD_IGNORE_RETURN) != 0;
+
exec_result = execute_pipeline (command, asynchronous, pipe_in, pipe_out, fds_to_close);
+
+ if (was_error_trap && ignore_return == 0 && invert == 0 && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_error_trap ();
+ }
+
+ if (ignore_return == 0 && invert == 0 && exit_immediately_on_error && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_pending_traps ();
+ jump_to_top_level (ERREXIT);
+ }
+
break;
case AND_AND:
int pipe_in, pipe_out;
struct fd_bitmap *fds_to_close;
{
- int exec_result, invert, ignore_return, was_error_trap;
+ int exec_result, user_subshell, invert, ignore_return, was_error_trap;
REDIRECT *my_undo_list, *exec_undo_list;
volatile int last_pid;
volatile int save_line_number;
return (execute_coproc (command, pipe_in, pipe_out, fds_to_close));
#endif
+ user_subshell = command->type == cm_subshell || ((command->flags & CMD_WANT_SUBSHELL) != 0);
+
if (command->type == cm_subshell ||
(command->flags & (CMD_WANT_SUBSHELL|CMD_FORCE_SUBSHELL)) ||
(shell_control_structure (command->type) &&
if (asynchronous == 0)
{
+ was_error_trap = signal_is_trapped (ERROR_TRAP) && signal_is_ignored (ERROR_TRAP) == 0;
+ invert = (command->flags & CMD_INVERT_RETURN) != 0;
+ ignore_return = (command->flags & CMD_IGNORE_RETURN) != 0;
+
last_command_exit_value = wait_for (paren_pid);
/* If we have to, invert the return value. */
else
exec_result = last_command_exit_value;
+
+ if (user_subshell && was_error_trap && ignore_return == 0 && invert == 0 && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_error_trap ();
+ }
+
+ if (user_subshell && ignore_return == 0 && invert == 0 && exit_immediately_on_error && exec_result != EXECUTION_SUCCESS)
+ {
+fprintf(stderr, "user subshell errexit\n");
+ last_command_exit_value = exec_result;
+ run_pending_traps ();
+ jump_to_top_level (ERREXIT);
+ }
+
return (last_command_exit_value = exec_result);
}
else
}
}
- /* 10/6/2008 -- added test for pipe_in and pipe_out because they indicate
- the presence of a pipeline, and (until Posix changes things), a
- pipeline failure should not cause the parent shell to exit on an
- unsuccessful return status, even in the presence of errexit.. */
+ /* 2009/02/13 -- pipeline failure is processed elsewhere. This handles
+ only the failure of a simple command. */
if (was_error_trap && ignore_return == 0 && invert == 0 && pipe_in == NO_PIPE && pipe_out == NO_PIPE && exec_result != EXECUTION_SUCCESS)
{
last_command_exit_value = exec_result;
else if (s[1] == 'P')
{
s++;
+#if 0
+ /* clamp CPU usage at 100% */
if (cpu > 10000)
cpu = 10000;
+#endif
sum = cpu / 100;
sum_frac = (cpu % 100) * 10;
len = mkfmt (ts, 2, 0, sum, sum_frac);
{
REDIRECT *rp;
COMMAND *tc, *second;
- int ignore_return, exec_result;
+ int ignore_return, exec_result, was_error_trap, invert;
ignore_return = (command->flags & CMD_IGNORE_RETURN) != 0;
break;
case '|':
+ was_error_trap = signal_is_trapped (ERROR_TRAP) && signal_is_ignored (ERROR_TRAP) == 0;
+ invert = (command->flags & CMD_INVERT_RETURN) != 0;
+ ignore_return = (command->flags & CMD_IGNORE_RETURN) != 0;
+
exec_result = execute_pipeline (command, asynchronous, pipe_in, pipe_out, fds_to_close);
+
+ if (was_error_trap && ignore_return == 0 && invert == 0 && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_error_trap ();
+ }
+
+ if (ignore_return == 0 && invert == 0 && exit_immediately_on_error && exec_result != EXECUTION_SUCCESS)
+ {
+ last_command_exit_value = exec_result;
+ run_pending_traps ();
+ jump_to_top_level (ERREXIT);
+ }
+
break;
case AND_AND:
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2004-03-17 13:48+0200\n"
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
"Language-Team: Afrikaans <i18n@af.org.za>\n"
msgid "write error: %s"
msgstr "pypfout: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, fuzzy, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: dubbelsinnige herroetering"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: leesalleen-funksie"
msgid "%s: cannot delete: %s"
msgstr "%s: kan nie %s skep nie"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: kan nie 'n binêre lêer uitvoer nie"
msgid "expression expected"
msgstr "Bools uitdrukking verwag"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: illegal option -- %c\n"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: illegal option -- %c\n"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "Die sein nommer wat was gevang het"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "Veranderlike boom"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "Shift"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "pypfout: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: bevel nie gevind nie"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: is 'n gids"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "kan nie fd %d na fd 0 dupliseer nie: %s"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "E108: Geen veranderlike: \"%s\""
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "Sein kwaliteit:"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Klaar"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
#, fuzzy
msgid "Stopped"
msgstr "Op gehou"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Op gehou"
-#: jobs.c:1438
+#: jobs.c:1443
#, fuzzy
msgid "Running"
msgstr "aktief"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Klaar(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Verlaat %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Onbekende status"
-#: jobs.c:1544
+#: jobs.c:1549
#, fuzzy, c-format
msgid "(core dumped) "
msgstr "Kern Ontwikkelaar"
-#: jobs.c:1563
+#: jobs.c:1568
#, fuzzy, c-format
msgid " (wd: %s)"
msgstr "Aktiveer nou dadelik"
-#: jobs.c:1766
+#: jobs.c:1771
#, fuzzy, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "Fout in die skryf van %s"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr ""
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, fuzzy, c-format
msgid "%s: job has terminated"
msgstr "Die bediener beëindig Die verbinding."
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "3d modus"
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, fuzzy, c-format
msgid " (core dumped)"
msgstr "Kern Ontwikkelaar"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, fuzzy, c-format
msgid "(wd now: %s)\n"
msgstr "Aktiveer nou dadelik"
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "Inisialisering van OpenGL het misluk."
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "Inisialisering van OpenGL het misluk."
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "geen taakbeheer in hierdie dop nie"
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "Kan nie soek 'n handtekening in hierdie boodskap!"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "--Geen reëls in buffer--"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr "Bediener of domein naam:"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "Bediener of domein naam:"
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "Opdragte"
-#: builtins.c:202
+#: builtins.c:204
#, fuzzy
msgid "job_spec [&]"
msgstr "Kort Spesifikasie werkvoorbeeld"
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "Bools uitdrukking verwag"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "Bools uitdrukking verwag"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "Tydelike gids:"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "Volle Naam:"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "Tipe die naam van die %1 speler."
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Return success unless a NAME is not an existing alias."
msgstr ""
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" is that of the last command executed."
msgstr ""
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#, fuzzy
#~ msgid " new current working directory."
#~ msgstr "Nuutste gebruik word werksaam gids"
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "write error: %s"
msgstr ""
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr ""
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr ""
msgid "%s: cannot delete: %s"
msgstr ""
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr ""
msgid "expression expected"
msgstr ""
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr ""
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr ""
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr ""
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr ""
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr ""
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr ""
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr ""
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr ""
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr ""
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr ""
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr ""
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr ""
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr ""
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr ""
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr ""
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
-msgid "(( expression ))"
+msgid "job_spec [&]"
msgstr ""
#: builtins.c:206
-msgid "[[ expression ]]"
+msgid "(( expression ))"
msgstr ""
#: builtins.c:208
+msgid "[[ expression ]]"
+msgstr ""
+
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Return success unless a NAME is not an existing alias."
msgstr ""
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" is that of the last command executed."
msgstr ""
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Exit Status:\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2007-07-26 07:18+0300\n"
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
msgid "write error: %s"
msgstr "грешка при запис: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: грешка при получаването на текущата директория: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: нееднозначно указана задача"
msgid "cannot use `-f' to make functions"
msgstr "„-f“ не може да се използва за създаването на функции"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: функция с права само за четене"
msgid "%s: cannot delete: %s"
msgstr "%s: не може да се изтрие: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: файлът е прекалено голям"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: двоичният файл не може да бъде изпълнен"
msgid "expression expected"
msgstr "очаква се израз"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: грешно указване на файловия дескриптор"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: грешен файлов дескриптор: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: грешна опция"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: грешна опция"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: грешно име на действие"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: не е променлива за масив"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "брой на преместванията"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
"не може едновременно да се задават и да се премахват опции на обвивката"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: грешно име на опция на обвивката"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "стандартният вход от /dev/null не може да бъде пренасочен: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "в променливата $TIMEFORMAT: „%c“: грешен форматиращ знак"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "грешка при запис: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
"%s: ограничение: в имената на командите не може да присъства знакът „/“"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: командата не е открита"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: лош интерпретатор"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "файловият дескриптор %d не може да се дублира като дескриптор %d"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "изтриване на спряната задача %d в групата процеси %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr ""
"описателен идентификатор на процес: %ld: няма такъв идентификатор на процес"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "изчакване: процесът с идентификатор %ld не е дъщерен на тази обвивка"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "изчакване: липсват данни за процес с идентификатор %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "изчакване на задача: задачата %d е спряна"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: задачата е приключила"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: задача %d вече е във фонов режим"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: предупреждение: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "в тази обвивка няма управление на задачите"
msgid "unexpected EOF while looking for matching `)'"
msgstr "неочакван знак за край на файл „EOF“, очакваше се знакът „)“"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "дописване: функцията „%s“ не е открита"
msgid "$%s: cannot assign in this way"
msgstr "$%s: не може да се задава по този начин"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "лошо заместване: липсва затварящ знак „%s“ в %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "няма съвпадение: %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "очаква се израз"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "очаква се израз"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
"случаите,\n"
" когато се зададе ИМЕ, за което не е дефиниран синоним."
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" ИМЕната се премахват от списъка с дефинираните синоними. Ако е е дадена и\n"
" опцията „-a“ тогава се премахват всички синоними."
-#: builtins.c:285
+#: builtins.c:289
#, fuzzy
msgid ""
"Set Readline key bindings and variables.\n"
"се\n"
" използва за вход."
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
" Продължение със следващата итерация от цикъл ползващ FOR, WHILE или UNTIL.\n"
" Ако е указан N, се продължава от N-тия обхващащ цикъл."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
" Продължение със следващата итерация от цикъл ползващ FOR, WHILE или UNTIL.\n"
" Ако е указан N, се продължава от N-тия обхващащ цикъл."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
#, fuzzy
msgid ""
"Return the context of the current subroutine call.\n"
"изведе\n"
" информация. Най-горната рамка е 0."
-#: builtins.c:379
+#: builtins.c:383
#, fuzzy
msgid ""
"Change the shell working directory.\n"
" фактическата подредба на директориите, вместо да се следват символните\n"
" връзки. Опцията „-L“ налага следването на символните връзки."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
" Always succeeds."
msgstr " Без ефект - командата нищо не прави. Връща се изходен код 0."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
#, fuzzy
msgid ""
"Set variable values and attributes.\n"
" функция ИМЕната стават локални, както при използването на командата "
"„local“."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
#, fuzzy
msgid ""
"Write arguments to the standard output.\n"
" Можете изрично да спрете интерпретирането на горните знаци с опцията „-"
"E“."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
#, fuzzy
msgid ""
"Parse option arguments.\n"
"са\n"
" дадени повече аргументи, те биват анализирани вместо това."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
" Изход от обвивката с код N. Ако N е изпуснат, то изходният код е този на\n"
" последната изпълнена команда."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
#, fuzzy
msgid ""
"Display or execute commands from the history list.\n"
"когато\n"
" се въведе само „-r“, ще се изпълни последната команда."
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" Изважда ЗАДАЧА от фонов режим и я прави текуща задача. Ако липсва\n"
" аргумент ЗАДАЧА, се използва текущата задача според обвивката."
-#: builtins.c:749
+#: builtins.c:753
#, fuzzy
msgid ""
"Move jobs to the background.\n"
" Поставя всяка ЗАДАЧА във фонов режим, все едно е била стартирана с „&“.\n"
" Ако липсва аргумент ЗАДАЧА, се използва текущата задача според обвивката."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
#, fuzzy
msgid ""
"Display or manipulate the history list.\n"
"времето не\n"
" се записва."
-#: builtins.c:848
+#: builtins.c:852
#, fuzzy
msgid ""
"Display status of jobs.\n"
"като\n"
" аргументи, се заменят с идентификатора на водача на групата процеси."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
#, fuzzy
msgid ""
"Send a signal to a job.\n"
" за вас брой процеси, няма да ви се налага да пуснете още един процес,\n"
" за да убиете друг."
-#: builtins.c:917
+#: builtins.c:921
#, fuzzy
msgid ""
"Evaluate arithmetic expressions.\n"
" Ако последният АРГУМЕНТ се изчислява като 0, „let“ връща 1. В\n"
" противен случай - връща 0."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" ИНТЕРВАЛът за въвеждане или е зададен неправилен файлов дескриптор като\n"
" аргумент на „-u“."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
#, fuzzy
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" съответно на $1, $2,… $n. Ако не са зададени АРГументи, се извеждат\n"
" всички променливи на средата."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
" са зададени АРГУМЕНТИ, те се превръщат в позиционни аргументи при\n"
" изпълнението на ФАЙЛа."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" „-eq“ (=), „-ne“ (!=), „-lt“ (<),\n"
" „-le“ (<=), „-gt“ (>) , „-ge“ (>=)."
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" задължително да е знакът „]“, който да съответства на отварящата скоба "
"„[“."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
#, fuzzy
msgid ""
"Trap signals and other events.\n"
"на\n"
" обвивката с командата „kill -signal $$“."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
#, fuzzy
msgid ""
"Modify shell resource limits.\n"
" - опцията „-t“, при която стойността е в секунди;\n"
" - опцията „-u“, при която стойността е точният брой процеси."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
#, fuzzy
msgid ""
"Wait for process completion and return exit status.\n"
"се\n"
" всички процеси в програмния канал на задачата."
-#: builtins.c:1474
+#: builtins.c:1478
#, fuzzy
msgid ""
"Execute commands for each member in a list.\n"
" всеки елемент в ДУМИте, ИМЕто се задава да е елементът и се изпълняват\n"
" КОМАНДИте."
-#: builtins.c:1488
+#: builtins.c:1492
#, fuzzy
msgid ""
"Arithmetic for loop.\n"
"се\n"
" изчислява да е 1."
-#: builtins.c:1506
+#: builtins.c:1510
#, fuzzy
msgid ""
"Select words from a list and execute commands.\n"
" изпълняват след всеки избор до изпълняването на команда за прекъсване\n"
" (break)."
-#: builtins.c:1527
+#: builtins.c:1531
#, fuzzy
msgid ""
"Report time consumed by pipeline's execution.\n"
"според\n"
" стойността на променливата на средата $TIMEFORMAT."
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
" Избирателно се изпълняват КОМАНДИ на база ДУМА, която напасва на ШАБЛОН.\n"
" Шаблоните се разделят със знака „|“."
-#: builtins.c:1556
+#: builtins.c:1560
#, fuzzy
msgid ""
"Execute commands based on conditional.\n"
"ако\n"
" никое тестово условие, не се е оценило като истина."
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
"„while“\n"
" е с изходен код, който е 0."
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
"„until“\n"
" е с изходен код, който не е 0."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
"се\n"
" цял набор от команди."
-#: builtins.c:1623
+#: builtins.c:1641
#, fuzzy
msgid ""
"Resume job in foreground.\n"
" се изпълнява във фонов режим, все едно е била подадена като аргумент\n"
" на командата „bg“."
-#: builtins.c:1638
+#: builtins.c:1656
#, fuzzy
msgid ""
"Evaluate arithmetic expression.\n"
" ИЗРАЗът се изчислява според правилата на аритметичното оценяване.\n"
" Еквивалентно на „let ИЗРАЗ“."
-#: builtins.c:1650
+#: builtins.c:1668
#, fuzzy
msgid ""
"Execute conditional command.\n"
" „&&“ и „||“ не оценят ИЗРАЗ2, ако ИЗРАЗ1 е достатъчен за определяне на\n"
" стойността на израза."
-#: builtins.c:1676
+#: builtins.c:1694
#, fuzzy
msgid ""
"Common shell variable names and usage.\n"
"кои\n"
" команди да не се запазват в историята.\n"
-#: builtins.c:1733
+#: builtins.c:1751
#, fuzzy
msgid ""
"Add directories to stack.\n"
" \n"
" Можете да изведете стека на директорията с командата „dirs“."
-#: builtins.c:1767
+#: builtins.c:1785
#, fuzzy
msgid ""
"Remove directories from stack.\n"
"\n"
" Стекът с директориите се визуализира с командата „dirs“."
-#: builtins.c:1797
+#: builtins.c:1815
#, fuzzy
msgid ""
"Display directory stack.\n"
" -N показва N-тия елемент отдясно в списъка показван от\n"
" командата „dirs“, когато е стартирана без опции. Брои се от 0."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
#, fuzzy
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" вход за обвивката. Ако е включена опцията „-v“, изходът се поставя в\n"
" променливата на обвивката VAR, вместо да се извежда на стандартния изход."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
"с\n"
" него."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash-2.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2003-12-28 19:59+0100\n"
"Last-Translator: Montxo Vicente i Sempere <montxo@alacant.com>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
msgid "write error: %s"
msgstr "error del conducte: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, fuzzy, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: Redirecci? ambigua"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: funci? nom?s de lectura"
msgid "%s: cannot delete: %s"
msgstr "%s: no es pot crear: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: no es pot executar el fitxer binari"
msgid "expression expected"
msgstr "s'esperava una expressi?"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%c%c: opci? inv?lida"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%c%c: opci? inv?lida"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "n?mero inv?lid de senyal"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: variable sense vincle"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift [n]"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "error del conducte: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restringit: no es pot especificar '/' en noms d'ordres"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: no s'ha trobat l'ordre"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: ?s un directori"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: L'identificador de proc?s (pid) no existeix (%d)!\n"
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "Senyal desconeguda #%d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Fet"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Aturat"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Aturat"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "S'est? executant"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Fet (%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Fi d'execuci? amb l'estat %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Estat desconegut"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(la imatge del nucli ha estat bolcada) "
-#: jobs.c:1563
+#: jobs.c:1568
#, fuzzy, c-format
msgid " (wd: %s)"
msgstr "(wd ara: %s)\n"
-#: jobs.c:1766
+#: jobs.c:1771
#, fuzzy, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "error en l'execuci? de setpgid (%d a %d) en el proc?s fill %d: %s\n"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, fuzzy, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr ""
"wait: l'identificador del proc?s (pid) %d no ?s un fill d'aquest int?rpret"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: s'ha finalitzat la tasca"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "encaix %3d:"
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (bolcat de la imatge del nucli)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd ara: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: getpgrp ha fallat: %s"
-#: jobs.c:3618
+#: jobs.c:3623
#, fuzzy
msgid "initialize_job_control: line discipline"
msgstr "initialize_jobs: disciplina de l?nia: %s"
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "initialize_jobs: getpgrp ha fallat: %s"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "no hi ha cap tasca de control dins d'aquest int?rpret"
"s'ha arribat inesperadament a la fi del fitxer (EOF) mentre\n"
"es buscava per '%c'"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s: no es pot assignar d'aquesta manera"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substituci? inv?lida: no existeix '%s' en %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr "until ORDRES; do ORDRES; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function NOM { ORDRES ; } or NOM () { ORDRES ; }"
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "{ ORDRES }"
-#: builtins.c:202
+#: builtins.c:204
#, fuzzy
msgid "job_spec [&]"
msgstr "fg [id_tasca]"
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "s'esperava una expressi?"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "s'esperava una expressi?"
-#: builtins.c:208
+#: builtins.c:210
#, fuzzy
msgid "variables - Names and meanings of some shell variables"
msgstr "Es permeten les variables de l'int?rpret d'ordres com a operands. El"
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [directori | +N | -N] [-n]"
-#: builtins.c:215
+#: builtins.c:217
#, fuzzy
msgid "popd [-n] [+N | -N]"
msgstr "popd [+N | -N] [-n]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o opci?_format_llarg] nom_opci? [nom_opci?...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "type [-apt] nom [nom ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
msgstr ""
"Es treuen NOMs de la llista de les definicions d'?lies. Si s'especifica"
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr "Repr?n la seg?ent iteraci? del bucle envoltant FOR, WHILE, o UNTIL."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr "Repr?n la seg?ent iteraci? del bucle envoltant FOR, WHILE, o UNTIL."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
" Always succeeds."
msgstr "Cap efecte; no es fa res. Es retorna amb el codi zero com a eixida."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
" is that of the last command executed."
msgstr "Finalitza l'int?rpret d'ordres amb l'estat d'N. Si s'ometeix N,"
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr "Ubica la ID_TASCA en primer pla, i l'activa com a la tasca actual."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
"par?metre ha de ser el signe \"]\" perqu? es puga tancar l'expressi? que\n"
"comen?a pel signe \"[\"."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
" Returns the status of the last command executed."
msgstr "Executa selectivament les ordres especificades en ORDRES seguint una "
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
"Expandeix i executa les ordres especificades en ORDRES i els executa\n"
"de tal manera que la darrera ordre"
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
"Expandeix i executa les ordres especificades en ORDRES i els executa\n"
"de tal manera que la darrera ordre"
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
" Returns the status of the last command executed."
msgstr "Executa un conjunt d'ordres en un grup. A?? ?s una manera de"
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Display the list of currently remembered directories. Directories"
#~ msgstr ""
#~ "Mostra la llista dels directoris actualment recordats. Els directoris "
msgstr ""
"Project-Id-Version: bash 4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-09-07 13:09+0200\n"
"Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "chyba zápisu: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: chyba při zjišťování současného adresáře: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: nejednoznačné určení úlohy"
msgid "cannot use `-f' to make functions"
msgstr "„-f“ nezle použít na výrobu funkce"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkce jen pro čtení"
msgid "%s: cannot delete: %s"
msgstr "%s: nelze smazat: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: soubor je příliš velký"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: binární soubor nelze spustit"
msgid "expression expected"
msgstr "očekáván výraz"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: chybné určení deskriptoru souboru"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: neplatný deskriptor souboru: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: chybný počet řádků"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: chybný počátek pole"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: neplatné množství mezi voláními"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "prázdný název proměnné typu pole"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "je vyžadována podpora proměnných typu pole"
msgid "shift count"
msgstr "počet shiftů"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "přepínač shellu nelze zároveň nastavit a zrušit"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: chybný název přepínače shellu"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "standardní vstup nelze přesměrovat z /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c“: chybný formátovací znak"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "chyba v rouře"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: omezeno: v názvu příkazu nesmí být „/“"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: příkaz nenalezen"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: chybný interpretr"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "deskriptor souboru %d nelze duplikovat na deskriptor %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp roury"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "forknutý PID %d se objevil v běžící úloze %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "mažu pozastavenou úlohu %d se skupinou procesů %ld"
# FIXME: in the_pipeline znamená do nebo v?
-#: jobs.c:1105
+#: jobs.c:1110
#, fuzzy, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: proces %5ld (%s) do the_pipeline"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: PID %5ld (%s) označen za stále živého"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: žádný takový PID"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signál %d"
# FIXME: rod a zkontrolovat následující
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Dokonán"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Pozastaven"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Pozastaven (%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Běží"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Dokonán (%d)"
# FIXME: Jedná se o způsob ukončení zavoláním funkce exit(%d)?
-#: jobs.c:1454
+#: jobs.c:1459
#, fuzzy, c-format
msgid "Exit %d"
msgstr "Exit %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Stav neznámý"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(core dumped [obraz paměti uložen]) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (cwd: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "setpgid na potomku (z %ld na %ld)"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: PID %ld není potomkem tohoto shellu"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Žádný záznam o procesu %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: úloha %d je pozastavena"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: úloha skončila"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: úloha %d je již na pozadí"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: řádek %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (core dumped [obraz paměti uložen])"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(cwd nyní: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp selhalo"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: disciplína linky"
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "nelze nastavit skupinu procesů terminálu (%d)"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "žádná správa úloh v tomto shellu"
msgid "unexpected EOF while looking for matching `)'"
msgstr "nenadálý konec souboru při hledání odpovídající „)“"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "doplňování: funkce „%s“ nenalezena"
msgid "$%s: cannot assign in this way"
msgstr "$%s: takto nelze přiřazovat"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "chybná substituce: v %s chybí uzavírací „`“"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "žádná shoda: %s"
msgstr "until PŘÍKAZY; do PŘÍKAZY; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function jméno { PŘÍKAZY ; } nebo jméno () { PŘÍKAZY ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ PŘÍKAZY ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "úloha [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( výraz ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ výraz ]]"
# XXX: "variable" je literál na seznamy vestavěných příkazů
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variables – názvy a významy některých proměnných shellu"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | adresář]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [název_volby…]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v proměnná] formát [argumenty]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"seznam_slov] [-F funkce] [-C příkaz] [-X filtrvzor] [-P předpona] [-S "
"přípona] [název…]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"seznam_slov] [-F funkce] [-C příkaz] [-X filtrvzor] [-P předpona] [-S "
"přípona] [slovo]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o přepínač] [název…]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n počet] [-O počátek] [-s počet] [-t] [-u fd] [-C volání] [-c "
"množství] [pole]"
-#: builtins.c:250
+#: builtins.c:242
+#, fuzzy
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n počet] [-O počátek] [-s počet] [-t] [-u fd] [-C volání] [-c "
+"množství] [pole]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" alias vrátí pravdu, pokud nebyl zadán NÁZEV, pro který není žádný alias\n"
" definován."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" -a\todstraní všechny definice aliasů. \n"
" Vrací úspěch, pokud NÁZEV není neexistující alias."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind vrací 0, pokud není zadán nerozpoznaný přepínač nebo nedojde "
"k chybě."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Návratový kód:\n"
" Návratový kód je 0, pokud N je větší nebo rovno 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Návratový kód:\n"
" Návratový kód je 0, pokud N je větší nebo rovno 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" Vrací návratový kód VESTAVĚNÉHO-PŘÍKAZU-SHELLU, nebo nepravdu, pokud\n"
" VESTAVĚNÝ-PŘÍKAZ-SHELLU není vestavěným příkazem shellu."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" Návratový kód:\n"
" Vrací 0, pokud shell provádí shellovou funkci a VÝRAZ je platný."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Návratový kód:\n"
" Vrací 0, byl-li adresář změněn, jinak nenulovou hodnotu."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" Vrací 0, nebyl-li zadán neplatný přepínač a mohl-li být současný\n"
" adresář přečten."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Návratový kód:\n"
" Vždy uspěje."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Návratový kód:\n"
" Vždy uspěje."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Návratový kód:\n"
" Vždy selže."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Návratový kód:\n"
" Vrací návratový kód PŘÍKAZU, nebo selže, nebyl–li příkaz nalezen."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Návratový kód:\n"
" Vrací úspěch, pokud nebyl zadán neplatný přepínač a nedošlo k chybě."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" \n"
" Příkaz je zastaralý. Vizte „help declare“."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" Vrací úspěch, nebyl-li zadán neplatný přepínač, nenastala-li chyba a\n"
" vykonává-li shell funkci."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Návratový kód:\n"
" Vrací úspěch, nedojde-li k chybě zápisu na výstup."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" \n"
" Vrací úspěch, nedojte-li k chybě zápisu na výstup."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Vrací úspěch, je-li NÁZEV vestavěným příkazem shellu a nevyskytne-li\n"
" se chyba."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Návratový kód:\n"
" Vrátí návratový kód příkazu, nebo úspěch, byl-li příkaz prázdný."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
"dojde\n"
" na konec přepínačů nebo nastane-li chyba."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud byl PŘÍKAZ nalezen a nedošlo k chybě přesměrování."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" Ukončí tento shell se stavem N. Bez N bude návratový kód roven kódu\n"
" posledně prováděného příkazu."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" Ukončí přihlašovací (login) shell se stavem N. Nebyl-li příkaz zavolán\n"
" z přihlašovacího shellu, vrátí chybu."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
" Vrátí úspěch nebo kód provedeného příkazu. Nenulový kód, vyskytne-li se\n"
" chyba."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Návratový kód:\n"
" Kód úlohy přesunuté do popředí, nebo došlo-li k chybě, kód selhání."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud je správa úloh zapnuta a nedošlo-li k nějaké chybě."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud byl NÁZEV nalezen a nebyl-li zadán neplatný přepínač."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
" Vrací úspěch, pokud byl nalezen VZOREK a nebyl zadán neplatný přepínač."
# FIXME: bash-4.0-pre1: Orphaned line between -w and -p option. It belongs to -n.
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nedošlo k chybě."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
"chyba.\n"
" Byl-ly použit přepínač -x, vrátí návratový kód PŘÍKAZU."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač nebo ÚLOHA."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nedošlo k chybě."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Pokud poslední ARGUMENT je vyhodnocen na 0, let vrátí 1. Jinak je\n"
" navrácena 0."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" pro čtení nevyprší nebo není poskytnut neplatný deskriptor souboru jako\n"
" argument -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Návratová hodnota:\n"
" Vrátí N, nebo selže, pokud shell neprovádí funkci nebo skript."
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný argument."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a JMÉNO není jen pro\n"
" čtení."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač nebo NÁZEV."
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač nebo NÁZEV."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud N není záporný a není větší než $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" Vrací návratový kód posledního provedeného příkazu z NÁZVU_SOUBORU.\n"
" Selže, pokud NÁZEV_SOUBORU nelze načíst."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Návratový kód:\n"
" Vrací úspěch, pokud je správa úloh zapnuta a nevyskytla se chyba."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Vrací úspěch, je-li VÝRAZ vyhodnocen jako pravdivý. Selže, je-li VÝRAZ\n"
" vyhodnocen jako nepravdivý nebo je-li zadán neplatný argument."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Toto je synonymum pro vestavěný příkaz „test“, až na to, že poslední\n"
" argument musí být doslovně „]“, aby se shodoval s otevírající „[“."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Návratový kód:\n"
" Vždy uspěje."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud SIGSPEC a zadané přepínače jsou platné."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" Vrátí úspěch, pokud všechny NÁZVY byly nalezeny. Selže, pokud některé\n"
" nalezeny nebyly."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Návratová hodnota:\n"
" Vrací úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Návratový kód\n"
" Vrátí úspěch, pokud nebyl zadán neplatný MÓD nebo přepínač."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" Vrátí kód ID, selže, pokud ID není platný nebo byl zadán neplatný "
"přepínač."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" Vrátí kód ID, selže, pokud ID není platný nebo byl zadán neplatný "
"přepínač."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy provedeného příkazu."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy vykonaného příkazu."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy prováděného příkazu."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" Návratový kód:\n"
" Návratová hodnota je návratová hodnota KOLONY."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy provedeného příkazu."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy provedeného příkazu."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy provedeného příkazu."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy provedeného příkazu."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud NÁZEV není jen pro čtení."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód naposledy spuštěného příkazu."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Návratový kód:\n"
" Vrátí kód obnovené úlohy."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
# příkaz, který by byl vykonán na základě splnění jiné podmínky. Tj. překlad
# „podmíněný příkaz“ je chybný.
# Toto je nápověda k vestavěnému příkazu „[“.
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" Návratový kód:\n"
" 0 nebo 1 podle hodnoty VÝRAZU."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\trozlišení, které příkazy by měly být uloženy do seznamu\n"
" \t\thistorie.\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" Vrátí úspěch, pokud nebyl zadán neplatný argument a změna adresáře\n"
" neselhala."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" Vrátí úspěch, pokud nebyl zadán neplatný argument nebo neselhala změna\n"
" adresáře."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" Vrátí úspěch, je-li NÁZEV_VOLBY zapnut. Selže, byl-li zadán neplatný\n"
" přepínač nebo je-li NÁZEV_VOLBY vypnut."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nedošlo k chybě\n"
" zápisu nebo přiřazení."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Návratový kód:\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
# opravit.
# TODO: Tento překlad je vemli kostrbatý a místy nedává smysl. Je třeba
# ujednotit pravidlo–pravidla doplnění–doplňování (completion specification).
-#: builtins.c:1912
+#: builtins.c:1930
#, fuzzy
msgid ""
"Modify or display completion options.\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a NÁZEV již měl\n"
" definováno pravidlo pro doplnění."
-#: builtins.c:1940
+#: builtins.c:1958
#, fuzzy
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a POLE nebylo jen pro\n"
" čtení."
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash 4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-12-20 16:56+0100\n"
"Last-Translator: Nils Naumann <nnau@gmx.net>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "Schreibfehler: %s."
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: Kann das nicht aktuelle Verzeichnis wiederfinden: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: Mehrdeutige Job Bezeichnung."
msgid "cannot use `-f' to make functions"
msgstr "Mit `-f' können keine Funktionen erzeugt werden."
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: Schreibgeschützte Funktion."
msgid "%s: cannot delete: %s"
msgstr "%s: Kann nicht löschen: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: Die Datei ist zu groß."
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: Kann die Datei nicht ausführen."
msgid "expression expected"
msgstr "Ausdruck erwartet."
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr ""
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr ""
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr ""
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr ""
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr ""
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "Kann nicht die Standardeingabe von /dev/null umleiten: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': Ungültiges Formatzeichen."
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "Pipe-Fehler"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: Verboten: `/' ist in Kommandonamen unzulässig."
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: Kommando nicht gefunden."
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: ist ein Verzeichnis."
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "Kann fd %d nicht auf fd 0 verdoppeln: %s"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp pipe"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
# Programmierfehler
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: Prozeß-Nummer existiert nicht (%d)!\n"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signal %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Fertig"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Angehalten"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Angehalten(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Läuft"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Fertig(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Exit %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Unbekannter Status"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(Speicherabzug geschrieben) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (wd: %s)"
# interner Fehler
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: Prozeß %ld wurde nicht von dieser Shell gestartet."
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: Programm ist beendet."
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
# Debug Ausgabe
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: Zeile %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (Speicherabzug geschrieben)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(gegenwärtiges Arbeitsverzeichnis ist: %s)\n"
# interner Fehler
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: getpgrp war nicht erfolgreich."
# interner Fehler
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: line discipline"
# interner Fehler
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "Keine Job Steuerung in dieser Shell."
msgid "unexpected EOF while looking for matching `)'"
msgstr "Dateiende beim Suchen nach passender `)' erreicht."
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s: Kann so nicht zuweisen."
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "Falsche Ersetzung: Keine schließende \"`\" in %s."
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "Keine Entsprechung: %s"
msgstr "until Kommandos; do Kommandos; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function Name { Kommandos ; } oder Name () { Kommandos ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ Kommandos ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "Jobbezeichnung [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( Ausdruck ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ Ausdruck ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variables - Namen und Bedeutung einiger Shell Variablen"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | Verzeichnis]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [Optionsname ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v var] Format [Argumente]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S "
"Suffix] [Name ...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S "
"Suffix] [Wort]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o Option] [Name ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" Rückgabewert:\n"
" Meldet Erfolg, außer wenn NAME nicht existiert."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" \n"
" Gibt immer Erfolg zurück, wenn der Name existiert."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Rückgabewert:\n"
" Der Rückgabewert ist 0, es sei den N ist größer oder gleich 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Rückgabewert:\n"
" Der Rückgabewert ist 0, außer wenn N größer oder gleich 1 ist."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" Verzeichnis nicht gelesen werden kann."
# colon
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Rückgabewert:\n"
" Das Kommando ist immer erfolgreich."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
"\n"
" Veraltet. Siehe `help declare'."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" Liefert \"Erfolg\" außer bei einer ungültigen Option, einem Fehler oder\n"
" die Shell führt keine Funktion aus."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
msgstr ""
# exit
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
"angegeben ist,\n"
" wird der Rückgabewert des letzten ausgeführten Kommandos übernommen."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Missing `}'"
#~ msgstr "Fehlende `}'."
#
msgid ""
msgstr ""
-"Project-Id-Version: GNU bash 4.0-rc1\n"
+"Project-Id-Version: GNU bash 4.0-release\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
-"PO-Revision-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
+"PO-Revision-Date: 2009-02-10 11:05-0500\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
msgid "write error: %s"
msgstr "write error: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr "error setting terminal attributes: %s"
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr "error getting terminal attributes: %s"
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: error retrieving current directory: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: ambiguous job spec"
msgid "cannot use `-f' to make functions"
msgstr "cannot use ‘\e[1m-f\e[0m’ to make functions"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: readonly function"
msgid "%s: cannot delete: %s"
msgstr "%s: cannot delete: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: file is too large"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: cannot execute binary file"
msgid "expression expected"
msgstr "expression expected"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: invalid file descriptor specification"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: invalid file descriptor: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: invalid line count"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: invalid array origin"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: invalid callback quantum"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "empty array variable name"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "array variable support required"
msgid "shift count"
msgstr "shift count"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "cannot set and unset shell options simultaneously"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: invalid shell option name"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "cannot redirect standard input from /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: ‘\e[1m%c\e[0m’: invalid format character"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "pipe error"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restricted: cannot specify ‘\e[1m/\e[0m’ in command names"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: command not found"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: bad interpreter"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "cannot duplicate fd %d to fd %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp pipe"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "forked pid %d appears in running job %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "deleting stopped job %d with process group %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: process %5ld (%s) in the_pipeline"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: pid %5ld (%s) marked as still alive"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: no such pid"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signal %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Done"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Stopped"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Stopped(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Running"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Done(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Exit %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Unknown status"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(core dumped) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (wd: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "child setpgid (%ld to %ld)"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld is not a child of this shell"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: No record of process %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: job %d is stopped"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: job has terminated"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: job %d already in background"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: line %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (core dumped)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd now: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp failed"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: line discipline"
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "cannot set terminal process group (%d)"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "no job control in this shell"
msgid "unexpected EOF while looking for matching `)'"
msgstr "unexpected EOF while looking for matching ‘\e[1m)\e[0m’"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion: function ‘\e[1m%s\e[0m’ not found"
msgid "$%s: cannot assign in this way"
msgstr "$%s: cannot assign in this way"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "bad substitution: no closing “\e[1m`\e[0m” in %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "no match: %s"
msgstr "until COMMANDS; do COMMANDS; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr "coproc [NAME] command [redirections]"
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function name { COMMANDS ; } or name () { COMMANDS ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ COMMANDS ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "job_spec [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( expression ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ expression ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variables - Names and meanings of some shell variables"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | dir]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [optname ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v var] format [arguments]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o option] [name ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
"been\n"
" defined."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" \n"
" Return success unless a NAME is not an existing alias."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" Exit Status:\n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Exit Status:\n"
" The exit status is 0 unless N is not greater than or equal to 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Exit Status:\n"
" The exit status is 0 unless N is not greater than or equal to 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n"
" not a shell builtin.."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" Returns 0 unless the shell is not executing a shell function or EXPR\n"
" is invalid."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Exit Status:\n"
" Returns 0 if the directory is changed; non-zero otherwise."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" Returns 0 unless an invalid option is given or the current directory\n"
" cannot be read."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Exit Status:\n"
" Always succeeds."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Exit Status:\n"
" Always succeeds."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Exit Status:\n"
" Always fails."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Exit Status:\n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" \n"
" Obsolete. See ‘\e[1mhelp declare\e[0m’."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" Returns success unless an invalid option is supplied, an error occurs,\n"
" or the shell is not executing a function."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Exit Status:\n"
" Returns success unless a write error occurs."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Exit Status:\n"
" Returns success unless a write error occurs."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Exit Status:\n"
" Returns success unless NAME is not a shell builtin or an error occurs."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Exit Status:\n"
" Returns exit status of command or success if command is null."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" Returns success if an option is found; fails if the end of options is\n"
" encountered or an error occurs."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
" Returns success unless COMMAND is not found or a redirection error "
"occurs."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" Exits the shell with a status of N. If N is omitted, the exit status\n"
" is that of the last command executed."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
"executed\n"
" in a login shell."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
" Returns success or status of executed command; non-zero if an error "
"occurs."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Exit Status:\n"
" Status of command placed in foreground, or failure if an error occurs."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Exit Status:\n"
" Returns success unless job control is not enabled or an error occurs."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Exit Status:\n"
" Returns success unless NAME is not found or an invalid option is given."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
" Returns success unless PATTERN is not found or an invalid option is "
"given."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or an error occurs."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs.\n"
" If -x is used, returns the exit status of COMMAND."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option or JOBSPEC is given."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or an error occurs."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Exit Status:\n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
"out,\n"
" or an invalid file descriptor is supplied as the argument to -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Exit Status:\n"
" Returns N, or failure if the shell is not executing a function or script."
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or a NAME is read-only."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or NAME is invalid."
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or NAME is invalid."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Exit Status:\n"
" Returns success unless N is negative or greater than $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" Returns the status of the last command executed in FILENAME; fails if\n"
" FILENAME cannot be read."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Exit Status:\n"
" Returns success unless job control is not enabled or an error occurs."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n"
" false or an invalid argument is given."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
"must\n"
" be a literal ‘\e[1m]\e[0m’, to match the opening ‘\e[1m[\e[0m’."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Exit Status:\n"
" Always succeeds."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
" Returns success unless a SIGSPEC is invalid or an invalid option is "
"given."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" Returns success if all of the NAMEs are found; fails if any are not "
"found."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Exit Status:\n"
" Returns success unless MODE is invalid or an invalid option is given."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
"is\n"
" given."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
"is\n"
" given."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" Exit Status:\n"
" The return status is the return status of PIPELINE."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is “\e[1mCOPROC\e[0m”.\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Exit Status:\n"
" Returns success unless NAME is readonly."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Exit Status:\n"
" Returns the status of the resumed job."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Exit Status:\n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" Exit Status:\n"
" 0 or 1 depending on value of EXPRESSION."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" HISTIGNORE\tA colon-separated list of patterns used to decide which\n"
" \t\tcommands should be saved on the history list.\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" Returns success unless an invalid argument is supplied or the directory\n"
" change fails."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" Returns success unless an invalid argument is supplied or the directory\n"
" change fails."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" Returns success if OPTNAME is enabled; fails if an invalid option is\n"
" given or OPTNAME is disabled."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
"assignment\n"
" error occurs."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" Returns success unless an invalid option is supplied or NAME does not\n"
" have a completion specification defined."
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Exit Status:\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
+
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for ‘\e[1mmapfile\e[0m’."
#
msgid ""
msgstr ""
-"Project-Id-Version: GNU bash 4.0-rc1\n"
+"Project-Id-Version: GNU bash 4.0-release\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
-"PO-Revision-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
+"PO-Revision-Date: 2009-02-10 11:05-0500\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
msgid "write error: %s"
msgstr "write error: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr "error setting terminal attributes: %s"
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr "error getting terminal attributes: %s"
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: error retrieving current directory: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: ambiguous job spec"
msgid "cannot use `-f' to make functions"
msgstr "cannot use ‘-f’ to make functions"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: readonly function"
msgid "%s: cannot delete: %s"
msgstr "%s: cannot delete: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: file is too large"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: cannot execute binary file"
msgid "expression expected"
msgstr "expression expected"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: invalid file descriptor specification"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: invalid file descriptor: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: invalid line count"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: invalid array origin"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: invalid callback quantum"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "empty array variable name"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "array variable support required"
msgid "shift count"
msgstr "shift count"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "cannot set and unset shell options simultaneously"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: invalid shell option name"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "cannot redirect standard input from /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: ‘%c’: invalid format character"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "pipe error"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restricted: cannot specify ‘/’ in command names"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: command not found"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: bad interpreter"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "cannot duplicate fd %d to fd %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp pipe"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "forked pid %d appears in running job %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "deleting stopped job %d with process group %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: process %5ld (%s) in the_pipeline"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: pid %5ld (%s) marked as still alive"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: no such pid"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signal %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Done"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Stopped"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Stopped(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Running"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Done(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Exit %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Unknown status"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(core dumped) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (wd: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "child setpgid (%ld to %ld)"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld is not a child of this shell"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: No record of process %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: job %d is stopped"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: job has terminated"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: job %d already in background"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: line %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (core dumped)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd now: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp failed"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: line discipline"
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "cannot set terminal process group (%d)"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "no job control in this shell"
msgid "unexpected EOF while looking for matching `)'"
msgstr "unexpected EOF while looking for matching ‘)’"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion: function ‘%s’ not found"
msgid "$%s: cannot assign in this way"
msgstr "$%s: cannot assign in this way"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "bad substitution: no closing “`” in %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "no match: %s"
msgstr "until COMMANDS; do COMMANDS; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr "coproc [NAME] command [redirections]"
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function name { COMMANDS ; } or name () { COMMANDS ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ COMMANDS ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "job_spec [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( expression ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ expression ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variables - Names and meanings of some shell variables"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | dir]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [optname ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v var] format [arguments]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o option] [name ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
"been\n"
" defined."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" \n"
" Return success unless a NAME is not an existing alias."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" Exit Status:\n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Exit Status:\n"
" The exit status is 0 unless N is not greater than or equal to 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Exit Status:\n"
" The exit status is 0 unless N is not greater than or equal to 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n"
" not a shell builtin.."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" Returns 0 unless the shell is not executing a shell function or EXPR\n"
" is invalid."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Exit Status:\n"
" Returns 0 if the directory is changed; non-zero otherwise."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" Returns 0 unless an invalid option is given or the current directory\n"
" cannot be read."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Exit Status:\n"
" Always succeeds."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Exit Status:\n"
" Always succeeds."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Exit Status:\n"
" Always fails."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Exit Status:\n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" \n"
" Obsolete. See ‘help declare’."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" Returns success unless an invalid option is supplied, an error occurs,\n"
" or the shell is not executing a function."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Exit Status:\n"
" Returns success unless a write error occurs."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Exit Status:\n"
" Returns success unless a write error occurs."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Exit Status:\n"
" Returns success unless NAME is not a shell builtin or an error occurs."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Exit Status:\n"
" Returns exit status of command or success if command is null."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" Returns success if an option is found; fails if the end of options is\n"
" encountered or an error occurs."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
" Returns success unless COMMAND is not found or a redirection error "
"occurs."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" Exits the shell with a status of N. If N is omitted, the exit status\n"
" is that of the last command executed."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
"executed\n"
" in a login shell."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
" Returns success or status of executed command; non-zero if an error "
"occurs."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Exit Status:\n"
" Status of command placed in foreground, or failure if an error occurs."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Exit Status:\n"
" Returns success unless job control is not enabled or an error occurs."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Exit Status:\n"
" Returns success unless NAME is not found or an invalid option is given."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
" Returns success unless PATTERN is not found or an invalid option is "
"given."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or an error occurs."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs.\n"
" If -x is used, returns the exit status of COMMAND."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option or JOBSPEC is given."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or an error occurs."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Exit Status:\n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
"out,\n"
" or an invalid file descriptor is supplied as the argument to -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Exit Status:\n"
" Returns N, or failure if the shell is not executing a function or script."
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or a NAME is read-only."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or NAME is invalid."
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or NAME is invalid."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Exit Status:\n"
" Returns success unless N is negative or greater than $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" Returns the status of the last command executed in FILENAME; fails if\n"
" FILENAME cannot be read."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Exit Status:\n"
" Returns success unless job control is not enabled or an error occurs."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n"
" false or an invalid argument is given."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" This is a synonym for the “test” builtin, but the last argument must\n"
" be a literal ‘]’, to match the opening ‘[’."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Exit Status:\n"
" Always succeeds."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
" Returns success unless a SIGSPEC is invalid or an invalid option is "
"given."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" Returns success if all of the NAMEs are found; fails if any are not "
"found."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Exit Status:\n"
" Returns success unless MODE is invalid or an invalid option is given."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
"is\n"
" given."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
"is\n"
" given."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" Exit Status:\n"
" The return status is the return status of PIPELINE."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is “COPROC”.\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Exit Status:\n"
" Returns success unless NAME is readonly."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Exit Status:\n"
" Returns the status of the last command executed."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Exit Status:\n"
" Returns the status of the resumed job."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Exit Status:\n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" Exit Status:\n"
" 0 or 1 depending on value of EXPRESSION."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" HISTIGNORE\tA colon-separated list of patterns used to decide which\n"
" \t\tcommands should be saved on the history list.\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" Returns success unless an invalid argument is supplied or the directory\n"
" change fails."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" Returns success unless an invalid argument is supplied or the directory\n"
" change fails."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" Returns success if OPTNAME is enabled; fails if an invalid option is\n"
" given or OPTNAME is disabled."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
"assignment\n"
" error occurs."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" Returns success unless an invalid option is supplied or NAME does not\n"
" have a completion specification defined."
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Exit Status:\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
+
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for ‘mapfile’."
msgstr ""
"Project-Id-Version: GNU bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2006-11-24 09:19+0600\n"
"Last-Translator: Sergio Pokrovskij <sergio.pokrovskij@gmail.com>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "Eraro ĉe skribo: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: Eraro ĉe provo determini la kurantan dosierujon: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: Ambigua laborindiko"
msgid "cannot use `-f' to make functions"
msgstr "„-f‟ ne estas uzebla por fari funkciojn"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: Nurlega funkcio"
msgid "%s: cannot delete: %s"
msgstr "%s: Ne eblas forigi: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: Tro granda dosiero"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: Neplenumebla duuma dosiero"
msgid "expression expected"
msgstr "Mankas esprimo"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: Misa indiko de dosiernumero"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "„%d‟: Misa dosiernumero: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: Misa opcio"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: Misa opcio"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: Misa nomo de ago"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: Ne tabela variablo"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "Nombrilo de „shift‟"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "Maleblas samtempe ŝalti kaj malŝalti ŝelan opcion"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: Misa nomo de ŝela opcio"
msgstr "Fiaskis provo nomumi la disponaĵon «/dev/null» ĉefenigujo: %s"
# XXX: internal error:
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c‟: Misa formatsigno"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "Eraro ĉe skribo: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: Malpermesitas uzi „/‟ en komandonomoj"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: Komando ne trovita"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: Misa interpretilo"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "Ne eblas kunnomumi al dosiernumero %d la dosiernumeron %d"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "Forke farita proceznumero %d aperas en rulata laboro %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "Haltigita laboro %d kun procezgrupo %ld estas forigata"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: Ne estas tia proceznumero (%ld)!"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: La procezo %ld ne estas ido de ĉi tiu ŝelo"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Malestas informoj pri procezo %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: La laboro %d estas haltigita"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: La laboro finiĝis"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: La laboro %d jam estas fona"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: Averto: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "Ĉi tiu ŝelo ne disponigas laborregadon"
msgstr "Neatendita dosierfino dum serĉo de responda „)‟"
# XXX: internal_error
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "Kompletigo: Funkcio „%s‟ ne trovita"
msgid "$%s: cannot assign in this way"
msgstr "$%s: ĉi tiel ne valorizebla"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "Misa anstataŭigo: Mankas ferma „%s‟ en %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "Nenio kongrua: %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "Mankas esprimo"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "Mankas esprimo"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
" „alias‟ liveras „true‟ krom se aperas NOMO ne difinita alinome."
# unalias [-a] name [name ...]
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
"Forigu la nomojn name ... el la listo de difinitaj alinomoj.\n"
" Se enestas la opcio „-a‟, ĉiujn alinomojn forigu."
-#: builtins.c:285
+#: builtins.c:289
#, fuzzy
msgid ""
"Set Readline key bindings and variables.\n"
" -s Listigu makroajn klavsekvencojn kaj ilian valoron\n"
" en formo reuzebla por enigo."
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
"Pasu al la sekva iteraciero de FOR, WHILE aŭ UNTIL. Se N estas\n"
"donita, pasu je la nivelo de la Na inganta iteraciordono."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
"Pasu al la sekva iteraciero de FOR, WHILE aŭ UNTIL. Se N estas\n"
"donita, pasu je la nivelo de la Na inganta iteraciordono."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
#, fuzzy
msgid ""
"Return the context of the current subroutine call.\n"
" La valoro de EXPR indikas, kiom da vokkadroj retroiri disde la\n"
" kuranta; la pinta kadro havas la numeron 0."
-#: builtins.c:379
+#: builtins.c:383
#, fuzzy
msgid ""
"Change the shell working directory.\n"
" anstataŭ iri laŭ simbolaj ligiloj; la opcio -L igas sekvi\n"
" simbolajn ligilojn."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
" Always succeeds."
msgstr "Senefika: La komando nenion faras. Elirstato 0 estas liverata."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
#, fuzzy
msgid ""
"Return an unsuccessful result.\n"
" Always fails."
msgstr "Liveru malsukcesan rezulton."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
msgstr ""
# declare [-afFirtx] [-p] [name[=value] ...]
-#: builtins.c:472
+#: builtins.c:476
#, fuzzy
msgid ""
"Set variable values and attributes.\n"
" Uzite en funkcio, „declare‟ faras la nomojn name lokaj, samkiel la\n"
" komando „local‟."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
#, fuzzy
msgid ""
"Write arguments to the standard output.\n"
" La opcio -E abolas la supre indikitan signifon de ĉi tiuj specialaj\n"
" signoj."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
msgstr ""
# getopts optstring name [arg]
-#: builtins.c:622
+#: builtins.c:626
#, fuzzy
msgid ""
"Parse option arguments.\n"
" Normale „getopts‟ analizas la poziciajn parametrojn ($0 - $9), sed\n"
" se estas pli da argumentoj, „getopts‟ anstataŭe analizas ilin."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
"Forlasu la ŝelon kun elirstato N. Se N mankas, la elirstato estas\n"
" tiu de la plej ĵuse plenumita komando."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
# ZZZ: fc [-e ename] [-nlr] [first] [last] or
# fc -s [pat=rep] [cmd]
-#: builtins.c:704
+#: builtins.c:708
#, fuzzy
msgid ""
"Display or execute commands from the history list.\n"
" «r» replenumigas la ĵusan komandon."
# fg [job_spec]
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" malestas, apliku la ŝelan koncepton pri la kuranta laboro."
# bg [job_spec]
-#: builtins.c:749
+#: builtins.c:753
#, fuzzy
msgid ""
"Move jobs to the background.\n"
" kun „&‟. Se nenia laboro estas indikita, apliku la ŝelan koncepton\n"
" pri la kuranta laboro."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
# ZZZ history [-c] [-d offset] [n] or
# history -awrn [filename] or
# history -ps arg [arg...]
-#: builtins.c:812
+#: builtins.c:816
#, fuzzy
msgid ""
"Display or manipulate the history list.\n"
# ZZZ jobs [-lnprs] [jobspec ...] or
# jobs -x command [args]
-#: builtins.c:848
+#: builtins.c:852
#, fuzzy
msgid ""
"Display status of jobs.\n"
" laborindikojn aperantajn en la argumentoj args je la proceznumero\n"
" de la ĉefprocezo de la grupo."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
# ZZZ: kill [-s sigspec | -n signum | -sigspec] [pid | job]... or
# kill -l [sigspec]
-#: builtins.c:894
+#: builtins.c:898
#, fuzzy
msgid ""
"Send a signal to a job.\n"
" kroman procezon por ĉesigi iun alian."
# let arg [arg ...]
-#: builtins.c:917
+#: builtins.c:921
#, fuzzy
msgid ""
"Evaluate arithmetic expressions.\n"
# read [-ers] [-u fd] [-t timeout] [-p prompt] [-a array] [-n nchars]
# [-d delim] [name ...]
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" renkontiĝas dosierfino, atendolimo estas atingita, aŭ nevalida\n"
" dosiernumero estas indikita ĉe -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
msgstr ""
# set [--abefhkmnptuvxBCHP] [-o option] [arg ...]
-#: builtins.c:1015
+#: builtins.c:1019
#, fuzzy
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" poziciaj, kaj per ili estas valorizataj, respektive, $1, $2 ... $n.\n"
" Se nenia arg estas donita, ĉiuj ŝelvariabloj estas eligataj."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
msgstr ""
# source filename [arguments]
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
" la dosierujon de filename. La eventualaj argumentoj\n"
" arguments iĝas la poziciaj parametroj por plenumo de filename."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
msgstr ""
# test [expr]
-#: builtins.c:1216
+#: builtins.c:1220
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" plia aŭ egala al arg2."
# [ arg... ]
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
"Ĉi tiu estas sinonimo de la primitivo „test‟; tamen la lasta\n"
" argumento devas esti „]‟ fermanta la esprimon komencitan per „[‟."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
# ZZZ: trap [arg] [signal_spec ...] or
# trap -l
-#: builtins.c:1313
+#: builtins.c:1317
#, fuzzy
msgid ""
"Trap signals and other events.\n"
" Signalon signalindiko eblas sendi al la ŝelo per la komando\n"
" «kill -signalindiko $$»."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
msgstr ""
# ulimit [-SHacdflmnpstuv] [limit]
-#: builtins.c:1376
+#: builtins.c:1380
#, fuzzy
msgid ""
"Modify shell resource limits.\n"
" por -p kiu estas en obloj de 512 bajtoj; kaj por -u, kiu estas\n"
" sendimensia nombro de procezoj."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
msgstr ""
# wait [n]
-#: builtins.c:1459
+#: builtins.c:1463
#, fuzzy
msgid ""
"Wait for process completion and return exit status.\n"
" dukto de la laboro."
# for NAME [in WORDS ... ;] do COMMANDS; done
-#: builtins.c:1474
+#: builtins.c:1478
#, fuzzy
msgid ""
"Execute commands for each member in a list.\n"
" estas plenumataj."
# for ((: for (( exp1; exp2; exp3 )); do COMMANDS; done
-#: builtins.c:1488
+#: builtins.c:1492
#, fuzzy
msgid ""
"Arithmetic for loop.\n"
" ili malestas, 1 estas uzata anstataŭe."
# select NAME [in WORDS ... ;] do COMMANDS; done
-#: builtins.c:1506
+#: builtins.c:1510
#, fuzzy
msgid ""
"Select words from a list and execute commands.\n"
" eliro (break)."
# time [-p] PIPELINE
-#: builtins.c:1527
+#: builtins.c:1531
#, fuzzy
msgid ""
"Report time consumed by pipeline's execution.\n"
" La variablo TIMEFORMAT difinas la formaton de la eligaĵo."
# case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
# if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]...
# [ else COMMANDS; ] fi
-#: builtins.c:1556
+#: builtins.c:1560
#, fuzzy
msgid ""
"Execute commands based on conditional.\n"
" komando plenumita, aŭ 0 se neniu el la kondiĉoj estis vera."
# while COMMANDS; do COMMANDS; done
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
" COMMANDS de la „while‟-parto liveras elirstaton 0."
# until COMMANDS; do COMMANDS; done
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
"Ripete malvolvu kaj plenumu la komandojn dum la lasta el la komandoj\n"
" COMMANDS de la „until‟-parto liveras elirstaton alian ol 0."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
msgstr ""
# grouping_braces: { COMMANDS ; }
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
"Plenumu la komandojn grupe. Tiel eblas apliki alidirektadon al\n"
" tuta grupo da komandoj."
-#: builtins.c:1623
+#: builtins.c:1641
#, fuzzy
msgid ""
"Resume job in foreground.\n"
" labornumero. Postmetita „&‟ sendas la laboron en la fonon,\n"
" samkiel se la komando „bg‟ estus aplikita al laborindiko."
-#: builtins.c:1638
+#: builtins.c:1656
#, fuzzy
msgid ""
"Evaluate arithmetic expression.\n"
" Ekvivalenta al «let EXPRESSION»."
# [[ expression ]]
-#: builtins.c:1650
+#: builtins.c:1668
#, fuzzy
msgid ""
"Execute conditional command.\n"
" sufiĉas por determini la rezulton."
# help var
-#: builtins.c:1676
+#: builtins.c:1694
#, fuzzy
msgid ""
"Common shell variable names and usage.\n"
"\t\tkiujn komandojn konservi en la historilisto.\n"
# pushd [dir | +N | -N] [-n]
-#: builtins.c:1733
+#: builtins.c:1751
#, fuzzy
msgid ""
"Add directories to stack.\n"
" Vi povas vidigi la stakon da dosierujoj per la komando „dirs‟."
# popd [+N | -N] [-n]
-#: builtins.c:1767
+#: builtins.c:1785
#, fuzzy
msgid ""
"Remove directories from stack.\n"
" Vi povas vidigi la stakon da dosierujoj per la komando „dirs‟."
# dirs [-clpv] [+N] [-N]
-#: builtins.c:1797
+#: builtins.c:1815
#, fuzzy
msgid ""
"Display directory stack.\n"
" -N\teligu la Nan eron nombrante de dekstre en la listo eligebla\n"
"\tper „dirs‟ sen opcioj, numerante ekde 0."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
msgstr ""
# printf [-v var] format [arguments]
-#: builtins.c:1847
+#: builtins.c:1865
#, fuzzy
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" Se ĉeestas la opcio „-v‟, la eligo trafas en ties variablon var kaj\n"
" ne en la ĉefeligujon."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
# compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat]
# [-W wordlist] [-P prefix] [-S suffix] [-X filterpat]
# [-F function] [-C command] [word]
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
" por uzo en ŝelfunkcio generanta eblajn kompletigojn.\n"
" Se eventuala argumento word estas donita, generu ĝiajn kongruaĵojn."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: GNU bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2006-10-31 23:36-0600\n"
"Last-Translator: Cristian Othón Martínez Vera <cfuga@itam.mx>\n"
"Language-Team: Spanish <es@li.org>\n"
msgid "write error: %s"
msgstr "error de escritura: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: error al obtener el directorio actual: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: especificación de trabajo ambigua"
msgid "cannot use `-f' to make functions"
msgstr "no se puede usar `-f' para hacer funciones"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: función de sólo lectura"
msgid "%s: cannot delete: %s"
msgstr "%s: no se puede borrar: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
# file=fichero. archive=archivo. Si no, es imposible traducir tar. sv
# De acuerdo. Corregido en todo el fichero. cfuga
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: no se puede ejecutar el fichero binario"
msgid "expression expected"
msgstr "se esperaba una expresión"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: especificación de descriptor de fichero inválida"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: descriptor de fichero inválido: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: opción inválida"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: opción inválida"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: nombre de acción inválido"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: no es una variable de matriz"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "cuenta de shift"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "no se pueden activar y desactivar opciones del shell simultáneamente"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: nombre de opción del shell inválido"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "no se puede redirigir la salida estándard de /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': carácter de formato inválido"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "error de escritura: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restringido: no se puede especificar `/' en nombres de órdenes"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: no se encontró la orden"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: intérprete erróneo"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "no se puede duplicar el df %d al df %d"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "el pid `forked' %d aparece en el trabajo en ejecución %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "borrando el trabajo detenido %d con grupo de proceso %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
# Cambiaría 'hay' por 'existe' em+
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: no existe tal pid"
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "Señal Desconocida #%d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Hecho"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Detenido"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Detenido"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Ejecutando"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Hecho(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Salida %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Estado desconocido"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(`core' generado) "
-#: jobs.c:1563
+#: jobs.c:1568
#, fuzzy, c-format
msgid " (wd: %s)"
msgstr "(dir ahora: %s)\n"
-#: jobs.c:1766
+#: jobs.c:1771
#, fuzzy, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "error en la ejecución de setpgid (%d a %d) en el proceso hijo %d: %s\n"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld no es un proceso hijo de este shell"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: No hay un registro del proceso %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: el trabajo %d está detenido"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: el trabajo ha terminado"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: el trabajo %d ya está en segundo plano"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: aviso: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (`core' generado)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(dir ahora: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: falló getpgrp: %s"
-#: jobs.c:3618
+#: jobs.c:3623
#, fuzzy
msgid "initialize_job_control: line discipline"
msgstr "initialize_jobs: disciplina de línea: %s"
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "initialize_jobs: falló getpgrp: %s"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "no hay control de trabajos en este shell"
msgid "unexpected EOF while looking for matching `)'"
msgstr "EOF inesperado mientras se buscaba un `)' coincidente"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion: no se encuentra la función `%s'"
msgid "$%s: cannot assign in this way"
msgstr "$%s: no se puede asignar de esta forma"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "sustitución errónea: no hay un `%s' que cierre en %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "no hay coincidencia: %s"
msgstr "until ÓRDENES; do ÓRDENES; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function NOMBRE { ÓRDENES ; } o NOMBRE () { ÓRDENES ; }"
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "{ ÓRDENES }"
-#: builtins.c:202
+#: builtins.c:204
#, fuzzy
msgid "job_spec [&]"
msgstr "fg [id_trabajo]"
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "se esperaba una expresión"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "se esperaba una expresión"
-#: builtins.c:208
+#: builtins.c:210
#, fuzzy
msgid "variables - Names and meanings of some shell variables"
msgstr ""
"Se permiten las variables de shell como operandos. Se reemplaza el nombre"
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [dir | +N | -N] [-n]"
-#: builtins.c:215
+#: builtins.c:217
#, fuzzy
msgid "popd [-n] [+N | -N]"
msgstr "popd [+N | -N] [-n]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o opción-larga] nombre_opción [nombre_opción...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "type [-apt] nombre [nombre ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
# Más en español sería: se define un alias por cada NOMBRE cuyo VALOR se da. sv
# Lo mismo de antes: el alias es expandido -> el alias se expande. sv
# no alias -> ningún alias. sv
# De acuerdo. cfuga
-#: builtins.c:250
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
" verdadero a menos que se de un NAME para el cual no se haya definido\n"
" ningún alias."
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
# lee 'la'... em+
# Corregido. Además, es plural: lee las asignaciones... cfuga
-#: builtins.c:285
+#: builtins.c:289
#, fuzzy
msgid ""
"Set Readline key bindings and variables.\n"
"como\n"
" entrada."
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
"Retoma la siguiente iteración del ciclo FOR, WHILE o UNTIL incluido.\n"
" Si se especifica N, retoma en el N-ésimo ciclo incluido."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
"Retoma la siguiente iteración del ciclo FOR, WHILE o UNTIL incluido.\n"
" Si se especifica N, retoma en el N-ésimo ciclo incluido."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
#, fuzzy
msgid ""
"Return the context of the current subroutine call.\n"
# Slash lo venimos traduciendo por barra inclinada , y backslash
# por barra invertida em++
# Corregido en toda la traducción. cfuga
-#: builtins.c:379
+#: builtins.c:383
#, fuzzy
msgid ""
"Change the shell working directory.\n"
" usar la estructura física de directorios en lugar de seguir los enlaces\n"
" simbólicos; la opción -L fuerza que se sigan los enlaces simbólicos."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
" Always succeeds."
msgstr "Sin efecto; la orden no hace nada. Devuelve un código de estado cero."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
#, fuzzy
msgid ""
"Return an unsuccessful result.\n"
" Always fails."
msgstr "Devuelve un resultado sin éxito."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
# apaga -> desactiva em+
# Corregido en toda la traducción. cfuga
-#: builtins.c:472
+#: builtins.c:476
#, fuzzy
msgid ""
"Set variable values and attributes.\n"
" usa en una función, hace a los NAMEs locales, como sucede con la\n"
" orden `local'."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
#, fuzzy
msgid ""
"Write arguments to the standard output.\n"
" Puede desactivar explícitamente la interpretación de los caracteres\n"
" arriba mencionados con la opción -E."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
# en una de dos formas -> en una de las dos formas siguientes em+
# dar argumentos -> especificar em+
# De acuerdo. cfuga
-#: builtins.c:622
+#: builtins.c:626
#, fuzzy
msgid ""
"Parse option arguments.\n"
" pero si se especifican más argumentos, éstos se comparan en lugar\n"
" de los primeros."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
"Termina el shell con un estado de N. Si se omite N, el estado de salida\n"
" es el mismo de la última orden ejecutada."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
#, fuzzy
msgid ""
"Display or execute commands from the history list.\n"
" `r cc' ejecuta la última orden que comience con `cc' y al teclear\n"
" `r' re-ejecuta la última orden."
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" JOB_SPEC no está presente, se usa la noción del shell del trabajo\n"
" actual."
-#: builtins.c:749
+#: builtins.c:753
#, fuzzy
msgid ""
"Move jobs to the background.\n"
" `&'. Si JOB_SPEC no está presente, se usa la noción del shell del\n"
" trabajo actual."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
#, fuzzy
msgid ""
"Display or manipulate the history list.\n"
" tiempo asociada con cada entrada de historia mostrada. No se muestra\n"
" ninguna marca de tiempo de otra forma."
-#: builtins.c:848
+#: builtins.c:852
#, fuzzy
msgid ""
"Display status of jobs.\n"
" especificaciones de trabajo que aparecen en ARGS se han reemplazado\n"
" con el ID de proceso del líder del grupo de procesos de dicho trabajo."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
#, fuzzy
msgid ""
"Send a signal to a job.\n"
# No sé si existe precedencia en español, pero me suena fatal.
# Yo pondría simplemente "prioridad". sv
# Creo que si existe, pero tu sugerencia es mejor. cfuga
-#: builtins.c:917
+#: builtins.c:921
#, fuzzy
msgid ""
"Evaluate arithmetic expressions.\n"
" Si el último ARG se evalúa como 0, let devuelve 1; si no se\n"
" devuelve 0."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" cero, a menos que se encuentre un final de línea, read expire, o se\n"
" proporcione un descriptor de fichero inválido como el argumento de -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
#, fuzzy
msgid ""
"Set or unset values of shell options and positional parameters.\n"
"no\n"
" se proporciona ningún ARG, se muestran todas las variables del shell."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
" Si se proporciona cualquier ARGUMENTS, se convierten en los parámetros\n"
" posicionales cuando se ejecuta FILENAME."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" Los operadores binarios aritméticos devuelven verdadero si ARG1 es\n"
" igual, no igual, menor, menor o igual, mayor, mayor o igual que ARG2."
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
"Este es un sinónimo para la orden interna \"test\", pero el último\n"
" argumento debe ser un `]' literal, que coincida con el `[' inicial."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
#, fuzzy
msgid ""
"Trap signals and other events.\n"
"con\n"
" \"kill -signal $$\"."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
#, fuzzy
msgid ""
"Modify shell resource limits.\n"
" -t, el cual es en segundos, -p, el cual es en incrementos de 512 bytes,\n"
" y -u, el cual es un número de procesos sin escala."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
#, fuzzy
msgid ""
"Wait for process completion and return exit status.\n"
" de trabajo, se espera a todos los procesos en la línea de ejecución\n"
" del trabajo."
-#: builtins.c:1474
+#: builtins.c:1478
#, fuzzy
msgid ""
"Execute commands for each member in a list.\n"
" se asume `in \"$@\"'. Para cada elemento en WORDS, se define NAME\n"
" como ese elemento, y se ejecutan COMMANDS."
-#: builtins.c:1488
+#: builtins.c:1492
#, fuzzy
msgid ""
"Arithmetic for loop.\n"
" EXP1, EXP2, y EXP3 son expresiones aritméticas. Si se omite\n"
" cualquier expresión, se comporta como si se evaluara a 1."
-#: builtins.c:1506
+#: builtins.c:1510
#, fuzzy
msgid ""
"Select words from a list and execute commands.\n"
" COMMANDS después de cada selección hasta que se ejecuta\n"
" una orden break."
-#: builtins.c:1527
+#: builtins.c:1531
#, fuzzy
msgid ""
"Report time consumed by pipeline's execution.\n"
" el resumen de tiempos en un formato ligeramente diferente, usando\n"
" el valor de la variable TIMEFORMAT como el formato de salida."
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
"Ejecuta ÓRDENES selectivamente basado en coincidencias de la PALABRA con\n"
" el PATRÓN. Se utiliza `|' para separar patrones múltiples."
-#: builtins.c:1556
+#: builtins.c:1560
#, fuzzy
msgid ""
"Execute commands based on conditional.\n"
"resultó\n"
" verdadera."
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
"Expande y ejecuta ÓRDENES mientras la orden final en las ÓRDENES\n"
" `while' tenga un estado de salida de cero."
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
"Expande y ejecuta ÓRDENES mientras la orden final en las ÓRDENES\n"
" `until' tengan un estado de salida que no sea cero."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
"Corre un conjunto de órdenes en un grupo. Esta es una forma de redirigir\n"
" un conjunto completo de órdenes."
-#: builtins.c:1623
+#: builtins.c:1641
#, fuzzy
msgid ""
"Resume job in foreground.\n"
" especificación del trabajo se hubiera proporcionado como\n"
" un argumento de `bg'."
-#: builtins.c:1638
+#: builtins.c:1656
#, fuzzy
msgid ""
"Evaluate arithmetic expression.\n"
"Se evalua EXPRESSION de acuerdo a las reglas de evaluación\n"
" aritmética. Equivalente a \"let EXPRESSION\"."
-#: builtins.c:1650
+#: builtins.c:1668
#, fuzzy
msgid ""
"Execute conditional command.\n"
" patrón. Los operadores && y || no evalúan EXPR2 si EXPR1 es\n"
" suficiente para determinar el valor de una expresión."
-#: builtins.c:1676
+#: builtins.c:1694
#, fuzzy
msgid ""
"Common shell variable names and usage.\n"
" \t\tpara decidir cuáles órdenes se deben guardar en la lista de\n"
" \t\thistoria.\n"
-#: builtins.c:1733
+#: builtins.c:1751
#, fuzzy
msgid ""
"Add directories to stack.\n"
" \n"
" Puede ver la pila de directorios con la orden `dirs'."
-#: builtins.c:1767
+#: builtins.c:1785
#, fuzzy
msgid ""
"Remove directories from stack.\n"
" \n"
" Puede ver la pila de directorios con la orden `dirs'."
-#: builtins.c:1797
+#: builtins.c:1815
#, fuzzy
msgid ""
"Display directory stack.\n"
" -N\tmuestra la N-ésima entrada contando desde la derecha de la lista\n"
" mostrada por dirs cuando se invoca sin opciones, empezando de cero."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
#, fuzzy
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" -v, la salida se coloca en el valor de la variable de shell VAR\n"
" en lugar de enviarla a la salida estándard."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
"coincidencias\n"
" contra WORD."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2006-11-11 16:38+0200\n"
"Last-Translator: Toomas Soome <Toomas.Soome@microlink.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
msgid "write error: %s"
msgstr "kirjutamise viga: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: segane töö"
msgid "cannot use `-f' to make functions"
msgstr "võtit `-f' ei saa funktsiooni loomiseks kasutada"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: funktsioon ei ole muudetav"
msgid "%s: cannot delete: %s"
msgstr "%s: ei saa kustutada: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: fail on liiga suur"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: kahendfaili ei õnnestu käivitada"
msgid "expression expected"
msgstr "oodati avaldist"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: vigane võti"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: vigane võti"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: vigane tegevuse nimi"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: pole massiiv"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift arv"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "kirjutamise viga: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: piiratud: käskudes ei saa kasutada sümboleid `/'"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: käsku ei ole"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: halb interpretaator"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: pid puudub"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr ""
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: töö %d on peatatud"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: töö on lõpetatud"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: töö %d on juba taustal"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: hoiatus: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr ""
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s: sedasi ei saa omistada"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "sulgev `%c' puudub %s sees"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "ei leitud: %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "oodati avaldist"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "oodati avaldist"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Return success unless a NAME is not an existing alias."
msgstr ""
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" is that of the last command executed."
msgstr ""
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-03-13 13:10+0100\n"
"Last-Translator: Christophe Combelles <ccomb@free.fr>\n"
"Language-Team: French <traduc@traduc.org>\n"
msgid "write error: %s"
msgstr "erreur d'écriture : %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s : erreur de détermination du répertoire actuel : %s : %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s : spécification de tâche ambiguë"
msgid "cannot use `-f' to make functions"
msgstr "« -f » ne peut pas être utilisé pour fabriquer des fonctions"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s : fonction en lecture seule"
msgid "%s: cannot delete: %s"
msgstr "%s : impossible d'effacer : %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s : le fichier est trop grand"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s : fichier binaire impossible à lancer"
msgid "expression expected"
msgstr "une expression est attendue"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s : spécification de descripteur de fichier non valable"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d : descripteur de fichier non valable : %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s : option non valable"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s : option non valable"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s : nom d'action non valable"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s : n'est pas une variable tableau"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "nombre de « shift »"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
"les options du shell ne peuvent pas être simultanément activées et "
"désactivées"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s : nom d'option du shell non valable"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "l'entrée standard ne peut pas être redirigée depuis /dev/null : %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT : « %c » : caractère de format non valable"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "erreur d'écriture : %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
"%s : restriction : « / » ne peut pas être spécifié dans un nom de commande"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s : commande introuvable"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s : %s : mauvais interpréteur"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "Impossible de dupliquer le fd %d vers le fd %d"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "le processus cloné n°%d apparaît dans la tâche en fonctionnement %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "suppression de la tâche stoppée %d avec le groupe de processus %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid : %ld : n° de processus inexistant"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait : le processus n°%ld n'est pas un fils de ce shell."
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for : aucun enregistrement du processus n°%ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job : la tâche %d est stoppée"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s : la tâche s'est terminée"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s : la tâche %d est déjà en arrière plan"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s : avertissement :"
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "pas de contrôle de tâche dans ce shell"
"Caractère de fin de fichier (EOF) prématuré lors de la recherche d'un « ) » "
"correspondant"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "complètement : fonction « %s » non trouvée"
msgid "$%s: cannot assign in this way"
msgstr "$%s : affectation impossible de cette façon"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "Mauvaise substitution : pas de « %s » de fermeture dans %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "Pas de correspondance : %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "une expression est attendue"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "une expression est attendue"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
" lorsque l'alias est étendu. « alias » renvoie « true » à moins qu'un NAME\n"
" ne soit fourni pour lequel aucun alias n'a été défini."
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
"fournie,\n"
"alors toutes les définitions d'alias sont enlevées."
-#: builtins.c:285
+#: builtins.c:289
#, fuzzy
msgid ""
"Set Readline key bindings and variables.\n"
" et leurs valeurs sous une forme qui peut être "
"utilisée comme entrée."
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
"supérieur.\n"
" Si N est précisé, reprend à N-ième boucle supérieure."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
"supérieur.\n"
" Si N est précisé, reprend à N-ième boucle supérieure."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
#, fuzzy
msgid ""
"Return the context of the current subroutine call.\n"
"revenir en arrière\n"
" avant le cadre actuel ; le cadre supérieur est le cadre 0."
-#: builtins.c:379
+#: builtins.c:383
#, fuzzy
msgid ""
"Change the shell working directory.\n"
" les liens symboliques ; l'option « -L » force le suivi des liens "
"symboliques."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
msgstr ""
"Sans effet : la commande ne fait rien. Le code de sortie zéro est renvoyé."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
#, fuzzy
msgid ""
"Return an unsuccessful result.\n"
" Always fails."
msgstr "Renvoie un résultat d'échec"
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
#, fuzzy
msgid ""
"Set variable values and attributes.\n"
" fonction, ceci a pour effet de rendre les NAME locaux, comme avec la "
"commande «local »."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
#, fuzzy
msgid ""
"Write arguments to the standard output.\n"
"caractères ci-dessus\n"
" avec l'option « -E »."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
#, fuzzy
msgid ""
"Parse option arguments.\n"
"mais\n"
" si plus d'argument sont données, ils sont analysés à la place."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
"Terminer le shell avec le code de retour « N ». Si N est omis, le code\n"
" de retour est celui de la dernière commande exécutée."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
#, fuzzy
msgid ""
"Display or execute commands from the history list.\n"
"la\n"
" dernière commande est ré-exécutée."
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" JOB_SPEC n'est pas fourni, le shell utilise sa propre notion\n"
" de tâche actuelle."
-#: builtins.c:749
+#: builtins.c:753
#, fuzzy
msgid ""
"Move jobs to the background.\n"
" Si JOB_SPEC n'est pas fourni, le shell utilise sa propre notion\n"
" de tâche actuelle."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
#, fuzzy
msgid ""
"Display or manipulate the history list.\n"
" valeurs de temps associées à chaque élément de l'historique. Sinon,\n"
" aucun valeur de temps n'est affichée."
-#: builtins.c:848
+#: builtins.c:852
#, fuzzy
msgid ""
"Display status of jobs.\n"
" par le numéro de processus du leader du groupe de processus pour cette "
"tâche."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
#, fuzzy
msgid ""
"Send a signal to a job.\n"
" processus que vous pouvez créer, vous n'avez pas besoin de générer un\n"
" nouveau processus pour en tuer un autre."
-#: builtins.c:917
+#: builtins.c:921
#, fuzzy
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Si le dernier ARG est évalué à 0, « let » renvoie 1, sinon 0 est renvoyé."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
"ne soit\n"
" fourni pour l'argument « -u »."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
#, fuzzy
msgid ""
"Set or unset values of shell options and positional parameters.\n"
"variables du shell\n"
" sont affichées."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
"position\n"
" lorsque FILENAME est exécuté."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" non-égal, inférieur, inférieur ou égal, supérieur, supérieur ou égal à "
"ARG2."
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
"Ceci est un synonyme de la primitive « test », mais le dernier argument\n"
" doit être le caractère « ] », pour fermer le « [ » correspondant."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
#, fuzzy
msgid ""
"Trap signals and other events.\n"
"au\n"
" shell avec « kill -signal $$ »."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
#, fuzzy
msgid ""
"Modify shell resource limits.\n"
" « -p » qui prend un multiple de 512 octets et « -u » qui prend un nombre\n"
" sans unité."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
#, fuzzy
msgid ""
"Wait for process completion and return exit status.\n"
" spécificateur de tâche. Si c'est un spécificateur de tâche, tous les\n"
" processus présents dans le tube de la tâche sont attendus."
-#: builtins.c:1474
+#: builtins.c:1478
#, fuzzy
msgid ""
"Execute commands for each member in a list.\n"
" utilisé. Pour chaque élément dans WORDS, NAME est défini à cet élément,\n"
" et les COMMANDS sont exécutées."
-#: builtins.c:1488
+#: builtins.c:1492
#, fuzzy
msgid ""
"Arithmetic for loop.\n"
"expression\n"
" omise, elle se comporte comme si elle s'évaluait à 1."
-#: builtins.c:1506
+#: builtins.c:1510
#, fuzzy
msgid ""
"Select words from a list and execute commands.\n"
" Les COMMANDS sont exécutées après chaque sélection jusqu'à ce qu'une\n"
" commande « break » soit exécutée."
-#: builtins.c:1527
+#: builtins.c:1531
#, fuzzy
msgid ""
"Report time consumed by pipeline's execution.\n"
" L'option « -p » affiche le résumé dans un format légèrement différent.\n"
" Elle utilise la valeur de la variable TIMEFORMAT comme format de sortie."
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
" motif PATTERN de correspondance des mots WORDS. Le caractère\n"
" « | » est utilisé pour séparer les différents motifs."
-#: builtins.c:1556
+#: builtins.c:1560
#, fuzzy
msgid ""
"Execute commands based on conditional.\n"
"exécutée\n"
" ou zéro si aucune condition n'était vraie. "
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
" que la commande finale parmi celles de « while » se termine avec un\n"
" code de retour de zéro."
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
" que les commandes de « until » se terminent avec un code de retour\n"
" différent de zéro."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
"Lance un ensemble de commandes d'un groupe. Ceci est une façon de\n"
" rediriger tout un ensemble de commandes."
-#: builtins.c:1623
+#: builtins.c:1641
#, fuzzy
msgid ""
"Resume job in foreground.\n"
"avait\n"
" été fournie comme argument de « bg »."
-#: builtins.c:1638
+#: builtins.c:1656
#, fuzzy
msgid ""
"Evaluate arithmetic expression.\n"
"L'EXPRESSION est évaluée selon les règles de l'évaluation arithmétique.\n"
" C'est équivalent à « let EXPRESSION »."
-#: builtins.c:1650
+#: builtins.c:1668
#, fuzzy
msgid ""
"Execute conditional command.\n"
" est effectuée. Les opérateurs « && » et « || » n'évaluent pas EXPR2 si\n"
" EXPR1 est suffisant pour déterminer la valeur de l'expression."
-#: builtins.c:1676
+#: builtins.c:1694
#, fuzzy
msgid ""
"Common shell variable names and usage.\n"
" \t\tdécider quelles commandes doivent être conservées dans la liste "
"d'historique.\n"
-#: builtins.c:1733
+#: builtins.c:1751
#, fuzzy
msgid ""
"Add directories to stack.\n"
" \n"
" Vous pouvez voir la pile des répertoires avec la commande « dirs »."
-#: builtins.c:1767
+#: builtins.c:1785
#, fuzzy
msgid ""
"Remove directories from stack.\n"
" \n"
" Vous pouvez voir la pile des répertoires avec la commande « dirs »."
-#: builtins.c:1797
+#: builtins.c:1815
#, fuzzy
msgid ""
"Display directory stack.\n"
"la\n"
" liste affichée par « dirs » lorsque celle-ci est appelée sans option."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
#, fuzzy
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
"placée dans\n"
" la variable VAR plutôt que d'être envoyée vers la sortie standard."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
"»\n"
" sont générées."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2002-06-14 09:49GMT\n"
"Last-Translator: Gábor István <stive@mezobereny.hu>\n"
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "Csõ (pipe)hiba %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, fuzzy, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: Nem egyértelmû átirányítás"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s Csak olvasható funkció"
msgid "%s: cannot delete: %s"
msgstr "%s: nem lehet létrehozni: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: nem futtatható bináris fájl"
msgid "expression expected"
msgstr "várható kifejezés"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%c%c: rossz opció"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%c%c: rossz opció"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "rossz jel(signal) szám"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s felszabadított változó"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift [n]"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "Csõ (pipe)hiba %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: fenntartva: parancs nem tartalmazhat '/' karaktert"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: parancs nem található"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: egy könyvtár"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nem másolható a fd %d fd 0: %s-re"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: Nem létezõ pid (%d)!\n"
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "Ismeretlen #%d Szignál"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Kész"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Megállítva"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Megállítva"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Futó"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Kész (%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Kilépés %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Ismeretlen állapot"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(memória kiírás)"
-#: jobs.c:1563
+#: jobs.c:1568
#, fuzzy, c-format
msgid " (wd: %s)"
msgstr "(wd most: %s)\n"
-#: jobs.c:1766
+#: jobs.c:1771
#, fuzzy, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "gyermek-folyamat setpgid (%d -ról %d-ra) hiba %d: %s\n"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, fuzzy, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "várjon:a %d nem utóda ennek a parancsértelmezõnek"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: munkafolyamat megszakadt"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "foglalat %3d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr "(memória kiírás)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd most: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: getpgrp sikertelen: %s"
-#: jobs.c:3618
+#: jobs.c:3623
#, fuzzy
msgid "initialize_job_control: line discipline"
msgstr "initialize_jobs: sor fegyelem %s"
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "initialize_jobs: getpgrp sikertelen: %s"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "nincs munkafolyamat ellenõrzés ezen a parancsértelmezõn"
msgid "unexpected EOF while looking for matching `)'"
msgstr "váratlan EOF amíg vizsgáltam a `%c'-t"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s így nem lehet hozzárendelni"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "rossz behelyettesítés: ne a %s be a %s-t"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr "until PARANCSOK; do PARANCSOK; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function NÉV { PARANCSOK ; } vagy NÉV () { PARANCSOK ; }"
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "{ PARANCSOK }"
-#: builtins.c:202
+#: builtins.c:204
#, fuzzy
msgid "job_spec [&]"
msgstr "fg [munka_folyamat]"
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "várható kifejezés"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "várható kifejezés"
-#: builtins.c:208
+#: builtins.c:210
#, fuzzy
msgid "variables - Names and meanings of some shell variables"
msgstr ""
"A parancsértelmezõ változói felhasználhatók operandusként. A változó neve"
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [könyvtár | +N | -N] [-n]"
-#: builtins.c:215
+#: builtins.c:217
#, fuzzy
msgid "popd [-n] [+N | -N]"
msgstr "popd [+N | -N] [-n]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o hosszú opciók] optnév [optnév...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "type [-apt] név [név ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" Return success unless a NAME is not an existing alias."
msgstr "NÉV eltávolítása a meghatározott aliasok listájából. A -a opció"
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
"Folytatja a következõ egy szinttel magasabban elhelyezkedõ FOR, WHILE vagy "
"UNTIL hurokkal."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
"Folytatja a következõ egy szinttel magasabban elhelyezkedõ FOR, WHILE vagy "
"UNTIL hurokkal."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
" Always succeeds."
msgstr "Nem csinál semmit ez a parancs. A visszatérési értéke 0."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
" is that of the last command executed."
msgstr "Kilép a parancsértelmezõbõl N státusszal. Ha az N-t kihagyja akkor a "
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
"A munka_folyamat-ot az elõtérbe helyezi és jelenlegi folyamatot csinál "
"belõle."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
msgstr ""
"egy ']' szövegkonstansnak kell lennie, hogy párban legyen a nyitó '['-val."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
" Returns the status of the last command executed."
msgstr "Feltételesen futtatja a PARANCSOT ha a SZÓ megegyezik a MINTÁVAL. A"
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
" Returns the status of the last command executed."
msgstr "Kibontja és végrehajtja a PARANCSOT amíg az utolsó parancs a "
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
" Returns the status of the last command executed."
msgstr "Kibontja és végrehajtja a PARANCSOT amíg az utolsó parancs a "
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
" Returns the status of the last command executed."
msgstr "Parancsok halmazát futtatja egy csoportban. Ez az egyik módja az"
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Display the list of currently remembered directories. Directories"
#~ msgstr "Megjeleníti a jelenleg feljegyzett könyvtárakat. Könyvtárak"
msgstr ""
"Project-Id-Version: bash 4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-09-06 17:41+0700\n"
"Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n"
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "gagal menulis: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: error mengambil direktori saat ini: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: spesifikasi pekerjaan ambigu"
msgid "cannot use `-f' to make functions"
msgstr "tidak dapat menggunakan `-f' untuk membuat fungsi"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: fungsi baca-saja"
msgid "%s: cannot delete: %s"
msgstr "%s: tidak dapat menghapus: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: file terlalu besar"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: tidak dapat menjalankan berkas binary"
msgid "expression expected"
msgstr "diduga sebuah ekspresi"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: spesifikasi file deskripsi tidak valid"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: file deskriptor %s tidak valid"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: jumlah baris tidak valid"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: asal array tidak valid"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: nama aksi tidak valid"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "nama variabel array kosong"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "bantuan array variabel dibutuhkan"
msgid "shift count"
msgstr "shift terhitung"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "tidak dapat menset dan menunset opsi shell secara bersamaan"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: nama opsi shell tidak valid"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "tidak dapat menyalurkan masukan standar dari /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': karakter format tidak valid"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "pipe error"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
"%s: dibatasi: tidak dapat menspesifikasikan '/' dalam nama nama perintah"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: perintah tidak ditemukan"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: interpreter buruk"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "tidak dapat menduplikasikan fd %d ke fd %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp pipe"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "forked pid %d terlihat dalam pekerjaan yang sedang berjalan %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "menghapus pekerjaan yang terhenti %d dengan proses grup %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: process %5ld (%s) dalam the_pipeline"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: pid %5ld (%s) ditandai dengan tetap hidup"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: tidak ada pid seperti itu"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "sinyal %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Selesai"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Terhenti"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Terhenti(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Berjalan"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Selesai(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Keluar %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Status tidak diketahui"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(core didump) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (wd: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "anak setpgid (%ld ke %ld)"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld bukan sebuah anak dari shell ini"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Tidak ada catatan untuk proses %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: pekerjaan %d terhenti"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: pekerjaan telah selesai"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: pekerjaan %d sudah berjalan di belakang (background)"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: baris %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (core didump)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd sekarang: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp gagal"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: baris disiplin"
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "tidak dapat menset terminal proses grup (%d)"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "tidak ada pengontrol pekerjaan dalam shell ini"
msgid "unexpected EOF while looking for matching `)'"
msgstr "EOF tidak terduga ketika mencari untuk pencocokan ')'"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion: fungsi `%s' tidak ditemukan"
msgid "$%s: cannot assign in this way"
msgstr "$%s: tidak dapat meng-assign dengan cara ini"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substitusi buruk: tidak ada penutupan \"\" dalam %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "tidak cocok: %s"
msgstr "until PERINTAH; do PERINTAH; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function name { PERINTAH; } atau name () { PERINTAH ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ PERINTAH ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "job_spec [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( expressi ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ expressi ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variabel - Nama dan arti dari beberapa shell variabel"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | dir]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [optname ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v var] format [argumen]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"kata] [-F fungsi] [-C perintah] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"compgen [-abcdefgjksuv] [-o opsi] [-A aksi] [-G globpat] [-W wordlist] [-F "
"fungsi] [-C perintah] [-X filterpat] [-P prefix] [-S suffix] [word]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o opsi] [nama ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n jumlah] [-O asal] [-s jumlah] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
-#: builtins.c:250
+#: builtins.c:242
+#, fuzzy
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n jumlah] [-O asal] [-s jumlah] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
"ada alias yang\n"
" terdefinisi."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" \n"
" Mengembalikan sukses kecuali sebuah NAMA bukan alias yang sudah ada."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind memberikan kembalian 0 kecuali sebuah opsi tidak dikenal "
"diberikan atau sebuah error terjadi."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Status Keluar:\n"
" Status keluar adalah 0 kecuali N tidak lebih besar atau sama dengan 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Status Keluar:\n"
" Status keluar adalah 0 kecuali N tidak lebih besar atau sama dengan 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
"BUILTIN adalah\n"
" bukan sebuah shell builtin.."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
"shell atau EXPR\n"
" tidak valid."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan 0 jika direktori berubah; bukan nol jika tidak."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
"direktori sekarang\n"
" tidak bisa dibaca."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Status Keluar:\n"
" Selalu sukses."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Status Keluar:\n"
" Selalu sukses."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Status Keluar:\n"
" Selalu gagal."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Mengembalikan status keluar dari PERINTAH, atau gagal jika PERINTAH "
"tidak ditemukan."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" \n"
" Kadaluarsa. Lihat `help declare'."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
"error terjadi.\n"
" atau shell tidak menjalankan sebuah fungsi."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan sukses kecuali sebuah penulisan error terjadi."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan sukses kecuali sebuah penulisan error terjadi."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Mengembalikan sukses kecuali NAMA bukan sebuah shell builtin atau sebuah "
"error terjadi."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Mengembalikan status keluar dari perintah atau sukses jika perintah "
"adalah kosong."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
"opsi\n"
" ditemui atau sebuah error terjadi."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
" Mengembalikan sukses kecuali PERINTAH tidak ditemukan atau sebuah "
"redireksi error terjadi."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
"keluaran\n"
" adalah status dari perintah terakhir yang dijalankan."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
"error jika tidak dijalankan\n"
" dalam sebuah login shell."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
" Mengembalikan sukses atau status dari perintah yang dijalankan; tidak-"
"nol jika sebuah error terjadi."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status dari perintah yang ditempatkan di foreground, atau gagal jika "
"sebuah error terjadi."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Mengembalikan sukses kecuali pengontrol pekerjaan tidak aktif atau "
"sebuah error terjadi."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Mengembalikan sukses kecuali NAMA tidak ditemukan atau sebuah opsi tidak "
"valid telah diberikan."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
" Mengembalikan sukses kecuali POLA tidak ditemukan atau opsi tidak valid "
"diberikan."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
"sebuah error terjadi.\n"
" Jika -x digunakan, mengembalikan status keluar dari PERINTAH."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Mengembalikan sukses kecuali ada sebuah opsi tidak valid atau JOBSPEC "
"diberikan."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Jika ARG terakhir dievaluasi ke 0, membiarkan kembali ke 1; 0 "
"dikembalikan Jika tidak."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
"kehabisan waktu,\n"
" atau sebuah berkas deskripsi disupply sebagai sebuah argumen ke opsi -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Mengembalikan N, atau gagal jika shell tidak menjalan sebuah fungsi atau "
"script."
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah NAMA adalah baca-saja."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau NAMA "
"tidak valid."
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Mengembalikan sukses kecual sebuah opsi tidak valid diberikan atau NAMA "
"tidak valid."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan sukses kecuali N adalah negatif atau lebih besar dari $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
"BERKAS; gagal jika\n"
" NAMA BERKAS tidak dapat dibaca."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Mengembalikan sukses kecuali pengontrol pekerjaan tidak aktif atau "
"sebuah error terjadi."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
"EXPR mengevaluasi ke\n"
" salah atau sebuah argumen tidak valid diberikan."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Ini sinonim untuk \"test\" builtin, tetapi argumen terakhir\n"
" harus berupa sebuah literal `]', untuk mencocokan dengan pembukaan `['."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Status Keluar:\n"
" Selalu sukses."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
" Mengembalikan sukses kecuali sebuah SIGSPEC adalah tidak valid atau "
"sebuah opsi tidak valid diberikan."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" Mengembalikan sukses jika seluruh dari NAMA ditemukan; gagal jika ada "
"yang tidak ditemukan."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Mengembalikan sukses kecuali MODE tidak valid atau sebuah opsi tidak "
"valid diberikan."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
"tidak\n"
" valid diberikan."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
"tidak valid\n"
" diberikan."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dijalankan."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dijalankan."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dijalankan."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" Status Keluar:\n"
" Status kembali adalah status kembali dari PIPELINE."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan setatus dari perintah terakhir yang dijalankan."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dijalankan."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dijalankan."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dijalankan."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan sukses kecuali NAMA adalah baca-saja."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari perintah terakhir yang dieksekusi."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan status dari pekerjaan yang dilanjutkan."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Status Keluar:\n"
" Mengembalikan 1 jika EXPRESI dievaluasi ke 0; mengembalikan 0 jika tidak."
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" Status Keluar:\n"
" 0 atau 1 tergantun dari nilai dari EKSPRESI."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
"digunakan untuk menentukan dimana\n"
" \t\tperintah seharusnya disimpan dalam daftar sejarah.\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
"atau pemindahan\n"
" direktori gagal."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
"atau pemindahan\n"
" direktori gagal."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Mengembalikan sukses kecuali ada sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
"tidak valid diberikan\n"
" atau OPTNAME dinonaktifkan."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
"sebuah penulisan atau penempatan\n"
" error terjadi."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"sebuah error terjadi."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
"tidak memiliki\n"
" spesifikasi penyelesaian yang terdefinisi."
-#: builtins.c:1940
+#: builtins.c:1958
#, fuzzy
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau "
"ARRAY adalah baca-saja."
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: GNU bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2000-03-21 19:30+0900\n"
"Last-Translator: Kyoichi Ozaki <k@afromania.org>\n"
"Language-Team: Japanese <ja@li.org>\n"
msgid "write error: %s"
msgstr "¥Ñ¥¤¥×¥¨¥é¡¼: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, fuzzy, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: ¤¢¤¤¤Þ¤¤¤Ê¥ê¥À¥¤¥ì¥¯¥È"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: ÆÉ¤ß¹þ¤ß¤Î¤ß¤Î´Ø¿ô"
msgid "%s: cannot delete: %s"
msgstr "%s: %s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: ¥Ð¥¤¥Ê¥ê¥Õ¥¡¥¤¥ë¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
msgid "expression expected"
msgstr "ɽ¸½¤ò´üÂÔ¤·¤Æ¤Þ¤¹"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%c%c: °¤¤¥ª¥×¥·¥ç¥ó"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%c%c: °¤¤¥ª¥×¥·¥ç¥ó"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "°¤¤¥·¥°¥Ê¥ëÈÖ¹æ"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: Ÿ³«¤µ¤ì¤Æ¤¤¤Ê¤¤ÊÑ¿ô"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift [n]"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "¥Ñ¥¤¥×¥¨¥é¡¼: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: À©¸Â: `/' ¤ò¥³¥Þ¥ó¥É̾¤Ëµ½Ò¤Ç¤¤Þ¤»¤ó"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: ¥³¥Þ¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: ¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "fd %d ¤ò fd 0 ¤ËÊ£À½¤Ç¤¤Þ¤»¤ó: %s"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: ¥×¥í¥»¥¹ID(%d)¤Ï¸ºß¤·¤Þ¤»¤ó!\n"
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "̤ÃΤΥ·¥°¥Ê¥ë #%d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "½ªÎ»"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Ää»ß"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Ää»ß"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "¼Â¹ÔÃæ"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "½ªÎ»(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "½ªÎ» %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "̤ÃΤΥ¹¥Æ¡¼¥¿¥¹"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(¥³¥¢¥À¥ó¥×) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, fuzzy, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "ÂÔµ¡: pid %d ¤³¤Î¥·¥§¥ë¤Î»Ò¥×¥í¥»¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: ¥¸¥ç¥Ö¤Ï½ªÎ»¤·¤Þ¤·¤¿"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "¥¹¥í¥Ã¥È %3d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (¥³¥¢¥À¥ó¥×)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: getpgrp ¼ºÇÔ: %s"
-#: jobs.c:3618
+#: jobs.c:3623
#, fuzzy
msgid "initialize_job_control: line discipline"
msgstr "initialize_jobs: ¥é¥¤¥ó discipline: %s"
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "initialize_jobs: getpgrp ¼ºÇÔ: %s"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "¤³¤Î¥·¥§¥ë¤Ë¤Ï¥¸¥ç¥ÖÀ©¸æ¤¬¤¢¤ê¤Þ¤»¤ó"
msgid "unexpected EOF while looking for matching `)'"
msgstr "´üÂÔ¤·¤Æ¤Ê¤¤¥Õ¥¡¥¤¥ë¤Î½ªÎ»(EOF)¤¬`%c'¤ò¸«ÉÕ¤±¤ë¤Þ¤¨¤ËȯÀ¸"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s: ¤³¤Î¤è¤¦¤Ë»ØÄê¤Ç¤¤Þ¤»¤ó"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "°¤¤ÂåÆþ: `%s' ¤¬ %s ¤Ë¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr "until ¥³¥Þ¥ó¥É·²; do ¥³¥Þ¥ó¥É·²; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function ̾Á° { ¥³¥Þ¥ó¥É·² ; } or ̾Á° () { ¥³¥Þ¥ó¥É·² ; } "
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "{ ¥³¥Þ¥ó¥É·² }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr ""
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "ɽ¸½¤ò´üÂÔ¤·¤Æ¤Þ¤¹"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "ɽ¸½¤ò´üÂÔ¤·¤Æ¤Þ¤¹"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [¥Ç¥£¥ì¥¯¥È¥ê | +N | -N ] [-n]"
-#: builtins.c:215
+#: builtins.c:217
#, fuzzy
msgid "popd [-n] [+N | -N]"
msgstr "popd [+N | -N] [-n]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o Ť¤¥ª¥×¥·¥ç¥ó] optname [optname...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "type [-apt] ̾Á° [̾Á° ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
"[̾Á°]¤òÄêµÁ¤µ¤ì¤Æ¤¤¤ë¥¨¥¤¥ê¥¢¥¹¤«¤éºï½ü¤·¤Ê¤µ¤¤¡£¤â¤·¡¢-a ¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ"
"¤¿¤Ê¤é¡¢"
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" is that of the last command executed."
msgstr ""
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Missing `}'"
#~ msgstr "`}'¤¬¤¢¤ê¤Þ¤»¤ó"
-# translation of bash-3.2.po to Lithuanian
+# translation of bash-4.0-pre1.po to Lithuanian
# Copyright (C) 2008 Free Software Foundation, Inc.
# This file is distributed under the same license as the bash package.
#
# Gintautas Miliauskas <gintas@akl.lt>, 2008.
msgid ""
msgstr ""
-"Project-Id-Version: bash-3.2\n"
+"Project-Id-Version: bash-4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
-"PO-Revision-Date: 2008-07-28 03:07-0400\n"
+"POT-Creation-Date: 2008-08-25 11:13-0400\n"
+"PO-Revision-Date: 2009-02-13 16:28+0200\n"
"Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
-"100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: arrayfunc.c:50
+#: arrayfunc.c:49
msgid "bad array subscript"
msgstr "blogas masyvo indeksas"
-#: arrayfunc.c:313 builtins/declare.def:474
+#: arrayfunc.c:312 builtins/declare.def:467
#, c-format
msgid "%s: cannot convert indexed to associative array"
msgstr ""
-#: arrayfunc.c:479
+#: arrayfunc.c:478
#, fuzzy, c-format
msgid "%s: invalid associative array key"
msgstr "%s: netaisyklingas veiksmo pavadinimas"
-#: arrayfunc.c:481
+#: arrayfunc.c:480
#, c-format
msgid "%s: cannot assign to non-numeric index"
msgstr "%s: nepavyko priskirti prie neskaitinio indekso"
-#: arrayfunc.c:517
+#: arrayfunc.c:516
#, c-format
msgid "%s: %s: must use subscript when assigning associative array"
msgstr ""
-#: bashhist.c:380
+#: bashhist.c:382
#, c-format
msgid "%s: cannot create: %s"
msgstr "%s: nepavyko sukurti: %s"
-#: bashline.c:3413
+#: bashline.c:3190
msgid "bash_execute_unix_command: cannot find keymap for command"
msgstr "bash_execute_unix_command: nepavyko rasti keymapo komandai"
-#: bashline.c:3491
+#: bashline.c:3268
#, c-format
msgid "%s: first non-whitespace character is not `\"'"
msgstr "%s: pirmas ne tarpo simbolis nėra „\"“"
-#: bashline.c:3520
+#: bashline.c:3297
#, c-format
msgid "no closing `%c' in %s"
msgstr "nėra uždarančiojo „%c“ %s"
-#: bashline.c:3554
+#: bashline.c:3331
#, c-format
msgid "%s: missing colon separator"
msgstr "%s: trūksta dvitaškio skirtuko"
-#: builtins/bind.def:120 builtins/bind.def:123
-msgid "line editing not enabled"
-msgstr ""
-
-#: builtins/bind.def:206
+#: builtins/bind.def:199
#, c-format
msgid "`%s': invalid keymap name"
msgstr "„%s“: netaisyklingas keymap'o pavadinimas"
-#: builtins/bind.def:245
+#: builtins/bind.def:238
#, c-format
msgid "%s: cannot read: %s"
msgstr "%s: nepavyko perskaityti: %s"
-#: builtins/bind.def:260
+#: builtins/bind.def:253
#, c-format
msgid "`%s': cannot unbind"
msgstr "„%s“: nepavyko atjungti (unbind)"
-#: builtins/bind.def:295 builtins/bind.def:325
+#: builtins/bind.def:288 builtins/bind.def:318
#, c-format
msgid "`%s': unknown function name"
msgstr "„%s“: nežinomas funkcijos pavadinimas"
-#: builtins/bind.def:303
+#: builtins/bind.def:296
#, c-format
msgid "%s is not bound to any keys.\n"
msgstr "%s nėra priskirtas jokiam klavišui.\n"
-#: builtins/bind.def:307
+#: builtins/bind.def:300
#, c-format
msgid "%s can be invoked via "
msgstr "%s gali būti iškviestas su "
msgid "only meaningful in a `for', `while', or `until' loop"
msgstr "prasminga tik „for“, „while“ arba „until“ cikle"
-#: builtins/caller.def:133
-#, fuzzy
-msgid ""
-"Returns the context of the current subroutine call.\n"
-" \n"
-" Without EXPR, returns "
-msgstr "Grąžina esamos procedūros kontekstą."
-
#: builtins/cd.def:215
msgid "HOME not set"
msgstr "HOME nenustatytas"
msgid "OLDPWD not set"
msgstr "OLDPWD nenustatytas"
-#: builtins/common.c:101
+#: builtins/common.c:107
#, c-format
msgid "line %d: "
msgstr ""
-#: builtins/common.c:139 error.c:260
-#, fuzzy, c-format
-msgid "warning: "
-msgstr "%s: įspėjimas: "
-
-#: builtins/common.c:153
-#, fuzzy, c-format
+#: builtins/common.c:124
+#, c-format
msgid "%s: usage: "
-msgstr "%s: įspėjimas: "
+msgstr "%s: naudojimas: "
-#: builtins/common.c:166 test.c:822
+#: builtins/common.c:137 test.c:822
msgid "too many arguments"
msgstr "per daug argumentų"
-#: builtins/common.c:191 shell.c:493 shell.c:774
+#: builtins/common.c:162 shell.c:493 shell.c:774
#, c-format
msgid "%s: option requires an argument"
msgstr "%s: parametrui reikia argumento"
-#: builtins/common.c:198
+#: builtins/common.c:169
#, c-format
msgid "%s: numeric argument required"
msgstr "%s: reikia skaitinio argumento"
-#: builtins/common.c:205
+#: builtins/common.c:176
#, c-format
msgid "%s: not found"
msgstr "%s: nerasta"
-#: builtins/common.c:214 shell.c:787
+#: builtins/common.c:185 shell.c:787
#, c-format
msgid "%s: invalid option"
-msgstr "%s: nesamas parametras"
+msgstr "%s: negalimas parametras"
-#: builtins/common.c:221
+#: builtins/common.c:192
#, c-format
msgid "%s: invalid option name"
msgstr "%s: netaisyklingas parametro vardas"
-#: builtins/common.c:228 general.c:231 general.c:236
+#: builtins/common.c:199 general.c:231 general.c:236
#, c-format
msgid "`%s': not a valid identifier"
msgstr "`%s': netaisyklingas identifikatorius"
-#: builtins/common.c:238
-#, fuzzy
+#: builtins/common.c:209
msgid "invalid octal number"
-msgstr "netaisyklingas signalo numeris"
+msgstr "netaisyklingas aštuonetainis skaičius"
-#: builtins/common.c:240
-#, fuzzy
+#: builtins/common.c:211
msgid "invalid hex number"
-msgstr "netaisyklingas skaičius"
+msgstr "netaisyklingas šešioliktainis skaičius"
-#: builtins/common.c:242 expr.c:1255
+#: builtins/common.c:213 expr.c:1255
msgid "invalid number"
msgstr "netaisyklingas skaičius"
-#: builtins/common.c:250
+#: builtins/common.c:221
#, c-format
msgid "%s: invalid signal specification"
msgstr "%s: netaisyklinga signalo specifikacija"
-#: builtins/common.c:257
+#: builtins/common.c:228
#, c-format
msgid "`%s': not a pid or valid job spec"
msgstr "„%s“: ne pid'as ar taisyklinga darbo specifikacija"
-#: builtins/common.c:264 error.c:453
+#: builtins/common.c:235 error.c:453
#, c-format
msgid "%s: readonly variable"
msgstr "%s: kintamasis tik skaitymui"
-#: builtins/common.c:272
+#: builtins/common.c:243
#, c-format
msgid "%s: %s out of range"
msgstr "%s: %s išėjo už ribų"
-#: builtins/common.c:272 builtins/common.c:274
+#: builtins/common.c:243 builtins/common.c:245
msgid "argument"
msgstr "argumentas"
-#: builtins/common.c:274
+#: builtins/common.c:245
#, c-format
msgid "%s out of range"
msgstr "%s už ribų"
-#: builtins/common.c:282
+#: builtins/common.c:253
#, c-format
msgid "%s: no such job"
msgstr "%s: nėra tokio darbo"
-#: builtins/common.c:290
+#: builtins/common.c:261
#, c-format
msgid "%s: no job control"
msgstr "%s: nėra darbų valdymo"
-#: builtins/common.c:292
+#: builtins/common.c:263
msgid "no job control"
msgstr "nėra darbų valdymo"
-#: builtins/common.c:302
+#: builtins/common.c:273
#, c-format
msgid "%s: restricted"
msgstr "%s: apribota"
-#: builtins/common.c:304
+#: builtins/common.c:275
msgid "restricted"
msgstr "apribota"
-#: builtins/common.c:312
+#: builtins/common.c:283
#, c-format
msgid "%s: not a shell builtin"
msgstr "%s: ne vidinė aplinkos komanda"
-#: builtins/common.c:321
+#: builtins/common.c:292
#, c-format
msgid "write error: %s"
msgstr "rašymo klaida: %s"
-#: builtins/common.c:553
+#: builtins/common.c:523
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: klaida skaitant esamą aplanką: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:589 builtins/common.c:591
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: dviprasmis darbo aprašymas"
msgid "cannot use `-f' to make functions"
msgstr "negalima naudoti „-f“ funkcijoms kurti"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4696
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkcija tik skaitymui"
-#: builtins/declare.def:461
+#: builtins/declare.def:454
#, c-format
msgid "%s: cannot destroy array variables in this way"
msgstr "%s: negalima tokiu būdu sunaikinti masyvų kintamųjų"
-#: builtins/declare.def:468
+#: builtins/declare.def:461
#, c-format
msgid "%s: cannot convert associative to indexed array"
msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: nepavyko ištrinti: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: failas per didelis"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: negalima vykdyti dvejetainių failų"
msgstr "Yra sustabdytų darbų.\n"
#: builtins/exit.def:122
-#, fuzzy, c-format
+#, c-format
msgid "There are running jobs.\n"
-msgstr "Yra sustabdytų darbų.\n"
+msgstr "Yra veikiančių darbų.\n"
#: builtins/fc.def:261
msgid "no command found"
#: builtins/help.def:168
#, c-format
-msgid ""
-"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'."
-msgstr ""
-"nėra žinyno temų, atitinkančių „%s“. Bandykite „help help“, „man -k %s“ arba "
-"„info %s“."
+msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'."
+msgstr "nėra žinyno temų, atitinkančių „%s“. Bandykite „help help“, „man -k %s“ arba „info %s“."
#: builtins/help.def:185
#, c-format
"A star (*) next to a name means that the command is disabled.\n"
"\n"
msgstr ""
-"Šios aplinkos komandos vidinės. Jei norite pamatyti šį sąrašą, įveskite "
-"„help“.\n"
+"Šios aplinkos komandos vidinės. Jei norite pamatyti šį sąrašą, įveskite „help“.\n"
"Įveskite „help fn“, jei norite sužinoti daugiau apie funkciją „fn“.\n"
"Įveskite „info bash“, jei norite daugiau sužinoti apie aplinką apskritai.\n"
-"Naudokite „man -k“ ir „info“, jei norite sužinoti daugiau apie komandas, "
-"nesančiasšiame sąraše.\n"
+"Naudokite „man -k“ ir „info“, jei norite sužinoti daugiau apie komandas, nesančiasšiame sąraše.\n"
"\n"
"Žvaigždutė (*) prie vardo reiškia, kad komanda išjungta.\n"
"\n"
msgid "history position"
msgstr "istorijos pozicija"
-#: builtins/history.def:365
+#: builtins/history.def:366
#, c-format
msgid "%s: history expansion failed"
msgstr "%s: istorijos išskleidimas nesėkmingas"
msgid "expression expected"
msgstr "tikėtasi išraiškos"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:215 builtins/read.def:271
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: netaisyklinga failo deskriptoriaus specifikacija"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:223 builtins/read.def:278
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: netaisyklingas failo deskriptorius: %s"
msgid "array variable support required"
msgstr ""
-#: builtins/printf.def:367
+#: builtins/printf.def:364
#, c-format
msgid "`%s': missing format character"
msgstr "„%s“: trūksta formato simbolio"
-#: builtins/printf.def:544
+#: builtins/printf.def:541
#, c-format
msgid "`%c': invalid format character"
msgstr "„%c“: netaisyklingas formato simbolis"
-#: builtins/printf.def:571
-#, fuzzy, c-format
+#: builtins/printf.def:568
+#, c-format
msgid "warning: %s: %s"
-msgstr "%s: įspėjimas: "
+msgstr "įspėjimas: %s: %s"
-#: builtins/printf.def:750
+#: builtins/printf.def:747
msgid "missing hex digit for \\x"
msgstr "trūksta šešioliktainio skaitmens išraiškoje \\x"
" \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 ""
" The `dirs' builtin displays the directory stack."
msgstr ""
-#: builtins/read.def:248
+#: builtins/read.def:247
#, c-format
msgid "%s: invalid timeout specification"
msgstr "%s: klaidinga laiko ribos (timeout) specifikacija"
-#: builtins/read.def:574
+#: builtins/read.def:569
#, c-format
msgid "read error: %d: %s"
msgstr "skaitymo klaida: %d: %s"
-#: builtins/return.def:73
+#: builtins/return.def:68
msgid "can only `return' from a function or sourced script"
msgstr "galima grįžti (return) tik iš funkcijos ar scenarijaus"
msgid "shift count"
msgstr "postūmių skaičius"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:250
msgid "cannot set and unset shell options simultaneously"
msgstr "negalima aplinkos nuostatos vienu metu įjungti ir išjungti"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:315
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: netaisyklingas aplinkos nuostatos pavadinimas"
#: builtins/ulimit.def:465 builtins/ulimit.def:765
#, c-format
msgid "%s: cannot modify limit: %s"
-msgstr "%s: nepayko pakeisti limito: %s"
+msgstr "%s: nepavyko pakeisti limito: %s"
#: builtins/umask.def:118
msgid "octal number"
msgid "Aborting..."
msgstr "Nutraukiama..."
+#: error.c:260
+#, c-format
+msgid "warning: "
+msgstr "įspėjimas: "
+
#: error.c:405
msgid "unknown command error"
msgstr "nežinoma komandos klaida"
msgid "\atimed out waiting for input: auto-logout\n"
msgstr "\alaukiant įvedimo baigėsi laikas: automatiškai atsijungta\n"
-#: execute_cmd.c:491
+#: execute_cmd.c:483
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "nepavyko peradresuoti standartinio įvedimo iš /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1079
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c“: netaisyklingas formato simbolis"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1930
#, fuzzy
msgid "pipe error"
msgstr "rašymo klaida: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4243
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: apribota: negalima naudoti „/“ komandų pavadinimuose"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4334
#, c-format
msgid "%s: command not found"
msgstr "%s: komanda nerasta"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4586
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: blogas interpretatorius"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4735
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nepavyko dublikuoti fd %d į fd %d"
#: expr.c:781
msgid "exponent less than 0"
-msgstr "eksponentas mažesnis už 0"
+msgstr "eksponentė mažesnis už 0"
#: expr.c:826
msgid "identifier expected after pre-increment or pre-decrement"
-msgstr ""
-"po prieš-didinimo ar prieš-mažinimo operatoriaus tikėtasi identifikatoriaus"
+msgstr "po prieš-didinimo ar prieš-mažinimo operatoriaus tikėtasi identifikatoriaus"
#: expr.c:854
msgid "missing `)'"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: nepavyko pasiekti aukštesnių aplankų"
-#: input.c:94 subst.c:4559
+#: input.c:94 subst.c:4551
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nepavyko dublikuoti fd %d į fd %d"
msgid "save_bash_input: buffer already exists for new fd %d"
msgstr "save_bash_input: naujam fd %d buferis jau egzistuoja"
-#: jobs.c:466
+#: jobs.c:464
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:879
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:997
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "trinamas sustabdytas darbas %d procesų grupėje %ld"
-#: jobs.c:1105
+#: jobs.c:1102
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1105
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1393
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: tokio pid nėra"
-#: jobs.c:1411
+#: jobs.c:1408
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1422 jobs.c:1447
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1427 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1431
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1435
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1449
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1451
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1454
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1541
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1560
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1761
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2089 nojobs.c:576
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld nėra šios aplinkos dukterinis procesas"
-#: jobs.c:2321
+#: jobs.c:2316
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: nėra proceso %ld įrašo"
-#: jobs.c:2593
+#: jobs.c:2588
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: darbas %d yra sustabdytas"
-#: jobs.c:2815
+#: jobs.c:2810
#, c-format
msgid "%s: job has terminated"
msgstr "%s: darbas užsibaigė"
-#: jobs.c:2824
+#: jobs.c:2819
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: darbas %d jau fone"
-#: jobs.c:3487
-#, fuzzy, c-format
+#: jobs.c:3482
+#, c-format
msgid "%s: line %d: "
-msgstr "%s: įspėjimas: "
+msgstr "%s: %d eilutė: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3496 nojobs.c:805
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3508 jobs.c:3521
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3553
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3613
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3623
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3651
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3656
msgid "no job control in this shell"
msgstr "šioje aplinkoje nėra darbų valdymo"
"malloc: %s:%d: prielaida pažeista\r\n"
#: lib/malloc/malloc.c:313
-#, fuzzy
msgid "unknown"
-msgstr "%s: adresas nežinomas"
+msgstr "nežinoma"
#: lib/malloc/malloc.c:797
msgid "malloc: block on free list clobbered"
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: nukreipimo instrukcija „%d“ už ribų"
-#: parse.y:2986 parse.y:3218
+#: parse.y:2982 parse.y:3204
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "netikėta failo pabaiga ieškant atitinkamo „%c“"
-#: parse.y:3722
+#: parse.y:3708
msgid "unexpected EOF while looking for `]]'"
msgstr "netikėta failo pabaiga ieškant „]]“"
-#: parse.y:3727
+#: parse.y:3713
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "sintaksės klaida sąlygos išraiškoje: netikėta leksema „%s“"
-#: parse.y:3731
+#: parse.y:3717
msgid "syntax error in conditional expression"
msgstr "sintaksės klaida sąlygos išraiškoje"
-#: parse.y:3809
+#: parse.y:3795
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "netikėta leksema „%s“, tikėtasi „)“"
-#: parse.y:3813
+#: parse.y:3799
msgid "expected `)'"
msgstr "tikėtasi „)“"
-#: parse.y:3841
+#: parse.y:3827
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "netikėtas argumentas „%s“ sąlygos unariniam operatoriui"
-#: parse.y:3845
+#: parse.y:3831
msgid "unexpected argument to conditional unary operator"
msgstr "netikėtas argumentas sąlygos unariniam operatoriui"
-#: parse.y:3885
+#: parse.y:3871
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "netikėta leksema „%s“, tikėtasi sąlyginio binarinio operatoriaus"
-#: parse.y:3889
+#: parse.y:3875
msgid "conditional binary operator expected"
msgstr "tikėtasi sąlygos binarinio operatoriaus"
-#: parse.y:3906
+#: parse.y:3892
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "netikėtas argumentas „%s“ sąlygos binariniam operatoriui"
-#: parse.y:3910
+#: parse.y:3896
msgid "unexpected argument to conditional binary operator"
msgstr "netikėtas argumentas sąlygos binariniam operatoriui"
-#: parse.y:3921
+#: parse.y:3907
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "netikėta leksema „%c“ sąlygos komandoje"
-#: parse.y:3924
+#: parse.y:3910
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "netikėta leksema „%s“ sąlygos komandoje"
-#: parse.y:3928
+#: parse.y:3914
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "netikėta leksema %d sąlygos komandoje"
-#: parse.y:5195
+#: parse.y:5181
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "sintaksės klaida prie netikėtos leksemos: „%s“"
-#: parse.y:5213
+#: parse.y:5199
#, c-format
msgid "syntax error near `%s'"
msgstr "sintaksės klaida prie „%s“"
-#: parse.y:5223
+#: parse.y:5209
msgid "syntax error: unexpected end of file"
msgstr "sintaksės klaida: netikėta failo pabaiga"
-#: parse.y:5223
+#: parse.y:5209
msgid "syntax error"
msgstr "sintaksės klaida"
-#: parse.y:5285
+#: parse.y:5271
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Naudokite „%s“, jei norite išeiti iš ap.\n"
-#: parse.y:5447
+#: parse.y:5433
msgid "unexpected EOF while looking for matching `)'"
msgstr "netikėta failo pabaiga ieškant atitinkamo „)“"
msgid "cprintf: `%c': invalid format character"
msgstr "cprintf: „%c“: netaisyklingas formato simbolis"
-#: redir.c:105
+#: redir.c:104
msgid "file descriptor out of range"
msgstr "failo deskriptorius už ribų"
-#: redir.c:148
+#: redir.c:146
#, c-format
msgid "%s: ambiguous redirect"
msgstr "%s: ambiguous redirect"
-#: redir.c:152
+#: redir.c:150
#, c-format
msgid "%s: cannot overwrite existing file"
msgstr "%s: negalima perrašyti egzistuojančio failo"
-#: redir.c:157
+#: redir.c:155
#, c-format
msgid "%s: restricted: cannot redirect output"
msgstr "%s: apribota: negalima peradresuoti išvedimo"
-#: redir.c:162
+#: redir.c:160
#, fuzzy, c-format
msgid "cannot create temp file for here-document: %s"
msgstr "nepavyko sukurti laikino failo „here“ dokumentui: %s"
-#: redir.c:517
+#: redir.c:515
msgid "/dev/(tcp|udp)/host/port not supported without networking"
-msgstr "/dev/(tcp|udp)/komp/prievadas nepalaikoma be tinklo"
+msgstr "/dev/(tcp|udp)/serveris/prievadas nepalaikoma be tinklo"
-#: redir.c:1023
+#: redir.c:992
msgid "redirection error: cannot duplicate fd"
msgstr "nukreipimo klaida: nepavyko dublikuoti fd"
msgid "%c%c: invalid option"
msgstr "%c%c: netaisyklingas parametras"
-#: shell.c:1638
+#: shell.c:1637
msgid "I have no name!"
msgstr "Neturiu vardo!"
-#: shell.c:1778
+#: shell.c:1777
#, c-format
msgid "GNU bash, version %s-(%s)\n"
msgstr ""
-#: shell.c:1779
+#: shell.c:1778
#, c-format
msgid ""
"Usage:\t%s [GNU long option] [option] ...\n"
"Naudojimas:\t%s [GNU ilgas parametras] [parametras] ...\n"
"\t%s [GNU ilgas parametras] [parametras] scenarijaus-failas ...\n"
-#: shell.c:1781
+#: shell.c:1780
msgid "GNU long options:\n"
msgstr "GNU ilgi parametrai:\n"
-#: shell.c:1785
+#: shell.c:1784
msgid "Shell options:\n"
msgstr "Aplinkos parametrai:\n"
-#: shell.c:1786
+#: shell.c:1785
msgid "\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"
-msgstr ""
-"\t-irsD arba -c komanda arba -O shopt_nustatymas\t\t(tik iškvietimui)\n"
+msgstr "\t-irsD arba -c komanda arba -O shopt_nustatymas\t\t(tik iškvietimui)\n"
-#: shell.c:1801
+#: shell.c:1800
#, c-format
msgid "\t-%s or -o option\n"
msgstr "\t-%s arba -o nustatymas\n"
-#: shell.c:1807
+#: shell.c:1806
#, fuzzy, c-format
msgid "Type `%s -c \"help set\"' for more information about shell options.\n"
-msgstr ""
-"Bandykite „%s --help“ arba „%s --usage“, jei norite gauti daugiau "
-"informacijos.\n"
+msgstr "Bandykite „%s --help“ arba „%s --usage“, jei norite gauti daugiau informacijos.\n"
-#: shell.c:1808
+#: shell.c:1807
#, fuzzy, c-format
msgid "Type `%s -c help' for more information about shell builtin commands.\n"
msgstr "Bandykite „ldd --help“, jei norite daugiau informacijos."
-#: shell.c:1809
+#: shell.c:1808
#, c-format
msgid "Use the `bashbug' command to report bugs.\n"
msgstr "Naudokite komandą „bashbug“ klaidoms pranešti.\n"
-#: sig.c:583
+#: sig.c:576
#, c-format
msgid "sigprocmask: %d: invalid operation"
msgstr "sigprocmask: %d: netaisyklinga operacija"
#: siglist.c:74
msgid "ABORT instruction"
-msgstr ""
+msgstr "ABORT instrukcija"
#: siglist.c:78
msgid "EMT instruction"
#: siglist.c:82
msgid "Floating point exception"
-msgstr ""
+msgstr "Slankaus kablelio klaida"
#: siglist.c:86
msgid "Killed"
#: siglist.c:94
msgid "Segmentation fault"
-msgstr ""
+msgstr "Segmentacijos klaida"
#: siglist.c:98
msgid "Bad system call"
#: siglist.c:106
msgid "Alarm clock"
-msgstr ""
+msgstr "Žadintuvas"
#: siglist.c:110
-#, fuzzy
msgid "Terminated"
-msgstr "apribota"
+msgstr "Nutraukta"
#: siglist.c:114
msgid "Urgent IO condition"
#: siglist.c:118
msgid "Stopped (signal)"
-msgstr ""
+msgstr "Sustabdyta (signalas)"
#: siglist.c:126
msgid "Continue"
#: siglist.c:138
msgid "Stopped (tty input)"
-msgstr ""
+msgstr "Sustabdyta (tty įvedimas)"
#: siglist.c:142
msgid "Stopped (tty output)"
-msgstr ""
+msgstr "Sustabdyta (tty išvedimas)"
#: siglist.c:146
msgid "I/O ready"
#: siglist.c:150
msgid "CPU limit"
-msgstr ""
+msgstr "CPU riba"
#: siglist.c:154
msgid "File limit"
-msgstr ""
+msgstr "Failų riba"
#: siglist.c:158
msgid "Alarm (virtual)"
#: siglist.c:166
msgid "Window changed"
-msgstr ""
+msgstr "Langas pakeistas"
#: siglist.c:170
msgid "Record lock"
#: siglist.c:194
msgid "migrate process to another CPU"
-msgstr ""
+msgstr "proceso migravimas į kitą CPU"
#: siglist.c:198
msgid "programming error"
msgid "Unknown Signal #%d"
msgstr ""
-#: subst.c:1181 subst.c:1302
+#: subst.c:1177 subst.c:1298
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "blogas keitinys: trūksta „%s“ %s"
-#: subst.c:2458
+#: subst.c:2450
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: negalima priskirti sąrašo masyvo elementui"
-#: subst.c:4456 subst.c:4472
+#: subst.c:4448 subst.c:4464
msgid "cannot make pipe for process substitution"
msgstr ""
-#: subst.c:4504
+#: subst.c:4496
msgid "cannot make child for process substitution"
msgstr ""
-#: subst.c:4549
+#: subst.c:4541
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr ""
-#: subst.c:4551
+#: subst.c:4543
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr ""
-#: subst.c:4569
+#: subst.c:4561
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
-#: subst.c:4765
+#: subst.c:4757
msgid "cannot make pipe for command substitution"
msgstr ""
-#: subst.c:4799
+#: subst.c:4791
msgid "cannot make child for command substitution"
msgstr ""
-#: subst.c:4816
+#: subst.c:4808
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
-#: subst.c:5318
+#: subst.c:5310
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametras tuščias arba nenustatytas"
-#: subst.c:5608
+#: subst.c:5600
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: posekio išraiška < 0"
-#: subst.c:6660
+#: subst.c:6646
#, c-format
msgid "%s: bad substitution"
msgstr "%s: blogas keitinys"
-#: subst.c:6740
+#: subst.c:6722
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: negalima tokiu būdu priskirti"
-#: subst.c:7479
+#: subst.c:7441
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "blogas keitinys: trūksta „%s“ %s"
-#: subst.c:8354
+#: subst.c:8314
#, c-format
msgid "no match: %s"
msgstr "nėra atitikmenų: %s"
msgid "missing `]'"
msgstr "trūksta „]“"
-#: trap.c:201
+#: trap.c:200
msgid "invalid signal number"
msgstr "netaisyklingas signalo numeris"
-#: trap.c:324
+#: trap.c:323
#, c-format
msgid "run_pending_traps: bad value in trap_list[%d]: %p"
msgstr "run_pending_traps: bloga trap_list[%d] reikšmė: %p"
-#: trap.c:328
+#: trap.c:327
#, c-format
-msgid ""
-"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself"
+msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself"
msgstr "run_pending_traps: signalo doroklė yra SIG_DFL, siunčiamas %d (%s) sau"
-#: trap.c:372
+#: trap.c:371
#, c-format
msgid "trap_handler: bad signal %d"
msgstr "trap_handler: blogas signalas %d"
-#: variables.c:358
+#: variables.c:354
#, c-format
msgid "error importing function definition for `%s'"
msgstr "klaida importuojant funkcijos apibrėžimą „%s“"
-#: variables.c:736
+#: variables.c:732
#, c-format
msgid "shell level (%d) too high, resetting to 1"
msgstr "aplinkos lygmuo (%d) per aukštas, nustatoma į 1"
-#: variables.c:1898
+#: variables.c:1891
msgid "make_local_variable: no function context at current scope"
msgstr ""
-#: variables.c:3127
+#: variables.c:3120
msgid "all_local_variables: no function context at current scope"
msgstr ""
-#: variables.c:3344 variables.c:3353
+#: variables.c:3337 variables.c:3346
#, c-format
msgid "invalid character %d in exportstr for %s"
msgstr "netaisyklingas simbolis %d %s exportstr'e"
-#: variables.c:3359
+#: variables.c:3352
#, c-format
msgid "no `=' in exportstr for %s"
msgstr "%s exportstr'e trūksta „=“"
-#: variables.c:3794
+#: variables.c:3787
msgid "pop_var_context: head of shell_variables not a function context"
msgstr ""
-#: variables.c:3807
+#: variables.c:3800
msgid "pop_var_context: no global_variables context"
msgstr "pop_var_context: nėra global_variables konteksto"
-#: variables.c:3881
+#: variables.c:3874
msgid "pop_scope: head of shell_variables not a temporary environment scope"
msgstr ""
#: version.c:46
-#, fuzzy
-msgid "Copyright (C) 2009 Free Software Foundation, Inc."
-msgstr "Autorinės teisės (C) 2006 Free Software Foundation, Inc.\n"
+msgid "Copyright (C) 2008 Free Software Foundation, Inc."
+msgstr "Autorinės teisės (C) 2008 Free Software Foundation, Inc."
#: version.c:47
-msgid ""
-"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl."
-"html>\n"
+msgid "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n"
msgstr ""
#: version.c:86
msgstr ""
#: builtins.c:51
-msgid ""
-"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-"
-"x keyseq:shell-command] [keyseq:readline-function or readline-command]"
+msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]"
msgstr ""
#: builtins.c:54
msgstr ""
#: builtins.c:121
-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:125
msgstr ""
#: builtins.c:132
-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:134
msgstr ""
#: builtins.c:136
-msgid ""
-"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t "
-"timeout] [-u fd] [name ...]"
+msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]"
msgstr ""
#: builtins.c:138
msgstr ""
#: builtins.c:192
-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:194
msgstr ""
#: builtins.c:204
-#, fuzzy
msgid "(( expression ))"
-msgstr "tikėtasi išraiškos"
+msgstr "(( išraiška ))"
#: builtins.c:206
-#, fuzzy
msgid "[[ expression ]]"
-msgstr "tikėtasi išraiškos"
+msgstr "[[ išraiška ]]"
#: builtins.c:208
msgid "variables - Names and meanings of some shell variables"
msgstr ""
#: builtins.c:227
-msgid ""
-"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
-"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
-"[name ...]"
+msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]"
msgstr ""
#: builtins.c:231
-msgid ""
-"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
-"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
+msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
#: builtins.c:235
msgstr ""
#: builtins.c:238
-msgid ""
-"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
-"quantum] [array]"
+msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]"
msgstr ""
#: builtins.c:250
" -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 ""
"„alias“ be argumentų arba su -p nuostata išspausdina alternatyviųjų\n"
" 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"
" \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"
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.\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"
"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"
" 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.\n"
" \n"
" Exit Status:\n"
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"
"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"
" -c\t\texecute COMMAND with an empty environment\n"
" -l\t\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:685
" Exits the shell with a status of N. If N is omitted, the exit status\n"
" is that of the last command executed."
msgstr ""
-"Išeiti iš aplinkos su klaidos kodu N. Jei N nenurodytas, išeinant "
-"nustatomas\n"
+"Išeiti iš aplinkos su klaidos kodu N. Jei N nenurodytas, išeinant nustatomas\n"
" paskutinės vykdytos komandos klaidos kodas."
#: builtins.c:694
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 ""
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"
" the last command.\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:734
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"
"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\t\tforget the remembered location of each NAME\n"
" PATTERN\tPattern specifiying 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:812
" \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."
" 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"
"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"
+" the last NAME. Only the characters found in $IFS are recognized as word\n"
" delimiters.\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"
" \t\tattempting to read\n"
" -r\t\tdo not allow backslashes to escape any characters\n"
" -s\t\tdo not echo input coming from a terminal\n"
-" -t timeout\ttime out and return failure if a complete line of input "
-"is\n"
+" -t timeout\ttime out and return failure if a complete line of input is\n"
" \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n"
" \t\tvariable is the default timeout. TIMEOUT may be a\n"
-" \t\tfractional number. If TIMEOUT is 0, read returns success only\n"
-" \t\tif input is available on the specified file descriptor. The\n"
-" \t\texit status is greater than 128 if the timeout is exceeded\n"
+" \t\tfractional number. The exit status is greater than 128 if\n"
+" \t\tthe timeout is exceeded\n"
" -u fd\t\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"
+" The return code is zero, unless end-of-file is encountered, read times out,\n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1001
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1014
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" 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"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1096
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" -f\ttreat each NAME as a shell function\n"
" -v\ttreat each NAME as a shell variable\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"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1116
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"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1135
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1156
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1168 builtins.c:1183
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
" Jei nurodyta ARGUMENTŲ, jie tampa poziciniais parametrais iškvietus\n"
" FAILĄ."
-#: builtins.c:1200
+#: builtins.c:1199
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1215
msgid ""
"Evaluate conditional expression.\n"
" \n"
" -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"
" 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"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1291
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1300
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"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1312
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"
" ARG is a command to be read and executed when the shell receives the\n"
" value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n"
" shell and by the commands it invokes.\n"
" \n"
-" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. "
-"If\n"
+" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n"
" a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\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 signal.\n"
" \n"
" Options:\n"
" -l\tprint a list of signal names and their corresponding numbers\n"
" -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n"
" \n"
-" Each SIGNAL_SPEC is either a signal name in <signal.h> or a signal "
-"number.\n"
+" Each SIGNAL_SPEC is either a signal name in <signal.h> 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:1345
+#: builtins.c:1344
msgid ""
"Display information about command type.\n"
" \n"
" 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:1376
+#: builtins.c:1375
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"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1420
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1440
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" Waits for the process identified by 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 a job specification, waits for all "
-"processes\n"
+" status is zero. If ID is a a job specification, waits for all processes\n"
" in the job's pipeline.\n"
" \n"
" Exit Status:\n"
-" Returns the status of ID; fails if ID is invalid or an invalid option "
-"is\n"
+" Returns the status of ID; fails if ID is invalid or an invalid option is\n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1458
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" and the return code is zero. PID must be a process ID.\n"
" \n"
" Exit Status:\n"
-" Returns the status of ID; fails if ID is invalid or an invalid option "
-"is\n"
+" Returns the status of ID; fails if ID is invalid or an invalid option is\n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1473
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1487
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1505
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1526
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1543
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1555
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"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1572
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
"Išskleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iš\n"
" „while“ komandų grąžina klaidos kodą 0."
-#: builtins.c:1585
+#: builtins.c:1584
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
"Išskleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iš\n"
" „until“ komandų grąžina klaidos kodą, nelygų 0."
-#: builtins.c:1597
+#: builtins.c:1596
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"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1610
#, fuzzy
msgid ""
"Group commands as a unit.\n"
"Vykdyti eilę komandų grupėje. Tai yra vienas iš būdų nukreipti\n"
" visos eilės komandų įvedimą/išvedimą."
-#: builtins.c:1623
+#: builtins.c:1622
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1637
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1649
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"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1675
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1732
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1766
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1796
msgid ""
"Display directory stack.\n"
" \n"
" \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.\n"
" \n"
" Exit Status:\n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1825
msgid ""
"Set and unset shell options.\n"
" \n"
" Change the setting of each shell option OPTNAME. Without any option\n"
-" arguments, list all shell options with an indication of whether or not "
-"each\n"
+" arguments, list all shell options with an indication of whether or not each\n"
" is set.\n"
" \n"
" Options:\n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1846
#, fuzzy
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" -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 specifications described in printf"
-"(1)\n"
+" In addition to the standard format specifications described in printf(1)\n"
" and 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"
" \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 ""
"printf formatuoja ir spausdina ARGUMENTUS nurodytu FORMATU. FORMATAS\n"
" Jei pateiktas parametras -v, išvedimas įrašomas į aplinkos kintamąjį\n"
" KINT, užuot spausdinus į standartinį išvedimą."
-#: builtins.c:1874
+#: builtins.c:1873
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"
-" are supplied, existing completion specifications are printed in a way "
-"that\n"
+" For each NAME, specify how arguments are to be completed. If no options\n"
+" are supplied, existing completion specifications are printed in a way that\n"
" allows them to be reused as input.\n"
" \n"
" Options:\n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1896
#, fuzzy
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 supplied, matches "
-"against\n"
+" completions. If the optional WORD argument is supplied, matches against\n"
" WORD are generated.\n"
" \n"
" Exit Status:\n"
" Jei pateiktas nebūtinasis ŽODŽIO argumentas, išvedami įrašai,\n"
" atitinkantys ŽODĮ."
-#: builtins.c:1912
+#: builtins.c:1911
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 begin executed. If no OPTIONs are givenm, "
-"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 begin executed. If no OPTIONs are givenm, 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"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1939
msgid ""
"Read lines from a file into an array variable.\n"
" \n"
-" Read lines from the standard input into the array variable ARRAY, or "
-"from\n"
-" file descriptor FD if the -u option is supplied. The variable MAPFILE "
-"is\n"
+" Read lines from the standard input into the array variable ARRAY, or from\n"
+" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n"
" the default ARRAY.\n"
" \n"
" Options:\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\t\tRemove a trailing newline from each line read.\n"
-" -u fd\t\tRead lines from file descriptor FD instead of the standard "
-"input.\n"
+" -u fd\t\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 "
-"CALLBACK.\n"
+" -c quantum\tSpecify the number of lines read between each call to CALLBACK.\n"
" \n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
" If -C is supplied without -c, the default quantum is 5000.\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."
+" Returns success unless an invald option is given or ARRAY is readonly."
msgstr ""
+#~ msgid "Returns the context of the current subroutine call."
+#~ msgstr "Grąžina esamos procedūros kontekstą."
+
#~ msgid " "
#~ msgstr " "
#~ msgid "can be used used to provide a stack trace."
#~ msgstr "gali būti panaudota generuojant steko išrašą (stack trace)."
-#~ msgid ""
-#~ "The value of EXPR indicates how many call frames to go back before the"
+#~ msgid "The value of EXPR indicates how many call frames to go back before the"
#~ msgstr "EXPR reikšmė nurodo, per kiek kvietimo freimų eiti atgal prieš"
#~ msgid "current one; the top frame is frame 0."
#~ msgid "back up through the list with the `popd' command."
#~ msgstr "sąrašu su „popd“ komanda."
-#~ msgid ""
-#~ "The -l flag specifies that `dirs' should not print shorthand versions"
+#~ msgid "The -l flag specifies that `dirs' should not print shorthand versions"
#~ msgstr "Parametras -l nurodo, kad „dirs“ neturėtų spausdinti sutrumpintų"
-#~ msgid ""
-#~ "of directories which are relative to your home directory. This means"
+#~ msgid "of directories which are relative to your home directory. This means"
#~ msgstr "aplankų, santykinių namų aplinkui, pavadinimų. Tai reiškia, kad"
#, fuzzy
#~ msgid "causes `dirs' to print the directory stack with one entry per line,"
#~ msgstr "„dirs“ išveda aplankų steką po vieną pavadinimą eilutėje,"
-#~ msgid ""
-#~ "prepending the directory name with its position in the stack. The -p"
+#~ msgid "prepending the directory name with its position in the stack. The -p"
#~ msgstr "prieš pavadinimą prirašoma aplanko pozicija steke. Parametras -p"
#~ msgid "flag does the same thing, but the stack position is not prepended."
#~ msgstr "turi tokį patį efektą, tačiau pozicija steke neišvedama."
-#~ msgid ""
-#~ "The -c flag clears the directory stack by deleting all of the elements."
+#~ msgid "The -c flag clears the directory stack by deleting all of the elements."
#~ msgstr "Parametras -c išvalo aplankų steką."
-#~ msgid ""
-#~ "+N displays the Nth entry counting from the left of the list shown by"
+#~ msgid "+N displays the Nth entry counting from the left of the list shown by"
#~ msgstr "+N rodo N-tąjį įrašą skaičiuojant iš kairės sąraše, rodomame"
#~ msgid " dirs when invoked without options, starting with zero."
#~ msgstr " „dirs“, iškviesto be parametrų (skaičiuojama nuo nulio)."
-#~ msgid ""
-#~ "-N displays the Nth entry counting from the right of the list shown by"
+#~ msgid "-N displays the Nth entry counting from the right of the list shown by"
#~ msgstr "-N rodo N-tajį įrašą skaičiuojant iš dešinės sąraše, rodomame"
#~ msgid "Adds a directory to the top of the directory stack, or rotates"
#~ msgstr "steko viršūnėje esančiu."
#~ msgid "+N removes the Nth entry counting from the left of the list"
-#~ msgstr ""
-#~ "+N pašalina N-tąjį įrašą skaičiuojant iš kairės sąraše, išvedamame „dir“"
+#~ msgstr "+N pašalina N-tąjį įrašą skaičiuojant iš kairės sąraše, išvedamame „dir“"
#~ msgid " shown by `dirs', starting with zero. For example: `popd +0'"
#~ msgstr " (skaičiuojama nuo nulio). Pavyzdžiui: „popd +0“"
#~ msgstr " pašalina pirmąjį aplanką, „popd +1“ – antrąjį."
#~ msgid "-N removes the Nth entry counting from the right of the list"
-#~ msgstr ""
-#~ "+N pašalina N-tąjį įrašą skaičiuojant iš dešinės sąraše, išvedamame "
-#~ "„dir“"
+#~ msgstr "+N pašalina N-tąjį įrašą skaičiuojant iš dešinės sąraše, išvedamame „dir“"
#~ msgid " shown by `dirs', starting with zero. For example: `popd -0'"
#~ msgstr " (skaičiuojama nuo nulio). Pavyzdžiui: „popd -0“"
#~ msgid " removes the last directory, `popd -1' the next to last."
#~ msgstr " pašalina paskutinį aplanką, „popd -1“ – priešpaskutinį."
-#~ msgid ""
-#~ "-n suppress the normal change of directory when removing directories"
+#~ msgid "-n suppress the normal change of directory when removing directories"
#~ msgstr " išjungti įprastą darbinio aplanko keitimą šalinant aplankus"
#~ msgid " from the stack, so only the stack is manipulated."
#~ " „local“ gali būti naudojamas tik funkcijose; jis sukuria kintamąjį,\n"
#~ " matomą tik pačioje funkcijoje ir jos dukterinėse funkcijose."
-#~ msgid ""
-#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed."
+#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed."
#~ msgstr ""
-#~ "Išspausdinti ARGUMENTUS. Jei nurodytas -n, nespausdinamas naujos "
-#~ "eilutės\n"
+#~ "Išspausdinti ARGUMENTUS. Jei nurodytas -n, nespausdinamas naujos eilutės\n"
#~ " simbolis pabaigoje."
-#~ msgid ""
-#~ "Read ARGs as input to the shell and execute the resulting command(s)."
+#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)."
#~ msgstr "Skaityti ARGUMENTUS kaip aplinkos komandas ir jas vykdyti."
#~ msgid "Logout of a login shell."
#~ " Jei nurodytas „-v“, unset veiks tik su kintamaisiais. Jei nurodytas\n"
#~ " „-f“, unset veiks tik su funkcijomis. Jei nenurodytas nei vienas iš\n"
#~ " šių parametrų, unset pirmiausiai bandys pašalinti kintamąjį, ir jei\n"
-#~ " tai nepasiseks, bandys pašalinti funkciją. Kai kurie kintamieji "
-#~ "negali\n"
+#~ " tai nepasiseks, bandys pašalinti funkciją. Kai kurie kintamieji negali\n"
#~ " būti pašalinti; žr. „readonly“."
#~ msgid ""
#~ " being a login shell if it is; just suspend anyway."
#~ msgstr ""
#~ "Sustabdyti šios aplinkos darbą, kol bus gautas SIGCONT\n"
-#~ " signalas. Jei nurodyta „-f“, nesiskųsti, jei ši aplinka yra "
-#~ "prisijungimo\n"
+#~ " signalas. Jei nurodyta „-f“, nesiskųsti, jei ši aplinka yra prisijungimo\n"
#~ " aplinka (login shell) ir sustabdyti ją bet kuriuo atveju."
#~ msgid ""
#~ msgid ""
#~ "For each NAME, specify how arguments are to be completed.\n"
-#~ " If the -p option is supplied, or if no options are supplied, "
-#~ "existing\n"
-#~ " completion specifications are printed in a way that allows them to "
-#~ "be\n"
-#~ " reused as input. The -r option removes a completion specification "
-#~ "for\n"
-#~ " each NAME, or, if no NAMEs are supplied, all completion "
-#~ "specifications."
+#~ " If the -p option is supplied, or if no options are supplied, existing\n"
+#~ " completion specifications are printed in a way that allows them to be\n"
+#~ " reused as input. The -r option removes a completion specification for\n"
+#~ " each NAME, or, if no NAMEs are supplied, all completion specifications."
#~ msgstr ""
#~ "Kiekvienam VARDUI nurodyti, kaip argumentai turėtų būti užbaigti.\n"
#~ " Jei pateiktas -p nustatymas arba nepateikta jokių nustatymų,\n"
msgstr ""
"Project-Id-Version: bash-4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-09-21 19:58+0200\n"
"Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
msgid "write error: %s"
msgstr "schrijffout: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: fout tijdens bepalen van huidige map: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: taakaanduiding is niet eenduidig"
msgid "cannot use `-f' to make functions"
msgstr "'-f' kan niet gebruikt worden om een functie te definiëren"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: is een alleen-lezen functie"
msgid "%s: cannot delete: %s"
msgstr "Kan %s niet verwijderen: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: bestand is te groot"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: kan een binair bestand niet uitvoeren"
msgid "expression expected"
msgstr "uitdrukking werd verwacht"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: ongeldige aanduiding van bestandsdescriptor"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: ongeldige bestandsdescriptor: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: ongeldig regelaantal"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: ongeldig array-begin"
# Quantum is een hoeveelheid regels, een getal.
# Callback is de aan te roepen functie, maar onnodig in de vertaling.
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: ongeldige hoeveelheid"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "lege naam van array-variabele"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "ondersteuning van arrayvariabelen is vereist"
msgid "shift count"
msgstr "shift-aantal"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "kan shell-opties niet tegelijk inschakelen en uitschakelen"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: ongeldige shell-optienaam"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "kan standaardinvoer niet omleiden vanaf /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: '%c': ongeldig opmaakteken"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "pijpfout"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: beperkte modus: '/' in opdrachtnamen is niet toegestaan"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: opdracht niet gevonden"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: ongeldige interpreter"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "kan bestandsdescriptor %d niet dupliceren naar bestandsdescriptor %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline(): procesgroep van pijp"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "afgesplitst PID %d hoort bij draaiende taak %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "verwijderen van gepauzeerde taak %d met procesgroep %ld..."
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process(): proces %5ld (%s) in de pijplijn"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process(): PID %5ld (%s) staat gemarkeerd als nog actief"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid(): PID %ld bestaat niet"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signaal %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Klaar"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Gepauzeerd"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Gepauzeerd(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Wordt uitgevoerd"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Klaar(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Exit %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Onbekende afsluitwaarde"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(geheugendump gemaakt) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (werkmap: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "instellen van procesgroep %2$ld van dochter %1$ld"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait(): PID %ld is geen dochterproces van deze shell"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for(): proces %ld is nergens geregistreerd"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job(): taak %d is gepauzeerd"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: taak is afgesloten"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: taak %d draait al op de achtergrond"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: regel %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (geheugendump gemaakt)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(werkmap is nu: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp() is mislukt"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: lijnprotocol"
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid()"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "kan procesgroep (%d) van terminal niet instellen"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "er is geen taakbesturing in deze shell"
msgid "unexpected EOF while looking for matching `)'"
msgstr "onverwacht bestandseinde tijdens zoeken naar bijpassende ')'"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion(): functie '%s' niet gevonden"
msgid "$%s: cannot assign in this way"
msgstr "$%s: kan niet op deze manier toewijzen"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "ongeldige vervanging: geen afsluitende '`' in %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "geen overeenkomst: %s"
msgstr "until OPDRACHTEN; do OPDRACHTEN; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function NAAM { OPDRACHTEN ; } of NAAM () { OPDRACHTEN ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ OPDRACHTEN ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "TAAKAANDUIDING [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( EXPRESSIE ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ EXPRESSIE ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variables - enkele shell-variabelen"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | MAP]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [OPTIENAAM...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v VARIABELE] OPMAAK [ARGUMENTEN]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
" [-W WOORDENLIJST] [-F FUNCTIE] [-C OPDRACHT]\n"
" [-X FILTERPATROON] [-P PREFIX] [-S SUFFIX] [NAAM...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
" [-W WOORDENLIJST] [-F FUNCTIE] [-C OPDRACHT]\n"
" [-X FILTERPATROON] [-P PREFIX] [-S SUFFIX] [WOORD]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o OPTIE] [NAAM...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n AANTAL] [-O BEGIN] [-s AANTAL] [-t] [-u BESTANDSDESCRIPTOR]\n"
" [-C FUNCTIE] [-c HOEVEELHEID] [ARRAY]"
-#: builtins.c:250
+#: builtins.c:242
+#, fuzzy
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n AANTAL] [-O BEGIN] [-s AANTAL] [-t] [-u BESTANDSDESCRIPTOR]\n"
+" [-C FUNCTIE] [-c HOEVEELHEID] [ARRAY]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij er een NAAM zonder VERVANGING gegeven is."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij NAAM geen bestaande alias is."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
"fout\n"
" optrad."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Als N gegeven is, dan worden N niveaus van lussen beëindigd.\n"
" De afsluitwaarde is 0, tenzij N kleiner dan 1 is."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Als N gegeven is, dan wordt N niveaus hoger doorgegaan. De "
"afsluitwaarde is 0, tenzij N kleiner dan 1 is."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" De afsluitwaarde is die van de uitgevoerde shell-functie, of 1\n"
" of 1 als INGEBOUWDE_SHELLFUNCTIE geen ingebouwde shell-functie is."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" De afsluitwaarde is 0, tenzij de shell momenteel geen functie uitvoert\n"
" of EXPRESSIE ongeldig is."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
"\n"
" De afsluitwaarde is 0 als de gewenste map ingesteld kon worden, anders 1."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd\n"
" of de huidige map niet bepaald kon worden."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Always succeeds."
msgstr "Doet niets; de opdracht heeft geen effect; de afsluitwaarde is 0."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr "Geeft afsluitwaarde 0, horend bij \"gelukt\"."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr "Geeft afsluitwaarde 1, horend bij \"mislukt\"."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" De afsluitwaarde is die van de uitgevoerde OPDRACHT,\n"
" of 1 als de OPDRACHT niet gevonden is."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
"Waarden en attributen van variabelen instellen.\n"
" Verouderd. Zie 'help declare'."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd, er een\n"
" fout optrad, of de shell geen functie aan het uitvoeren is."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij een schrijffout optreedt."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij een schrijffout optreedt."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" De afsluitwaarde is 0, tenzij NAAM geen ingebouwde shell-opdracht is of\n"
" een fout optreedt."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
"opdracht\n"
" leeg is."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" Normaliter ontleedt 'getopts' de positionele parameters: $0...$9.\n"
" Maar als er argumenten gegeven worden, dan worden deze ontleed."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
" De afsluitwaarde is 0, tenzij OPDRACHT niet gevonden wordt of er een\n"
" omleidingsfout optreedt."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" Beëindigt de shell met een afsluitwaarde van N. Zonder N is de\n"
" afsluitwaarde die van de laatst uitgevoerde opdracht."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" Beëindigt een login-shell met een afsluitwaarde van N. Geeft een\n"
" foutmelding als de huidige shell geen login-shell is."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
" De afsluitwaarde die van de uitgevoerde opdracht, of 0, of niet-nul als\n"
" er een fout optreedt."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
"er\n"
" een fout optreedt."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" De afsluitwaarde is 0 tenzij taakbeheer uitgeschakeld is of er een fout\n"
" optreedt."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" De afsluitwaarde is 0, tenzij NAAM niet gevonden wordt of een ongeldige\n"
" optie gegeven werd."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"ongeldige\n"
" optie gegeven werd."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" fout optreedt. Als '-x' gebruikt is, dan is de afsluitwaarde die van\n"
" OPDRACHT."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie of TAAKAANDUIDING\n"
" gegeven werd."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Als het laatste ARGUMENT evalueert tot 0, dan is de afsluitwaarde van\n"
" 'let' 1; anders 0."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" de tijdslimiet overschreden werd, of een ongeldige bestandsdescriptor\n"
" als argument van '-u' gegeven werd."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" uitvoeren is."
# Voor de duidelijkheid is de tejstvolgorde veranderd.
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een\n"
" NAAM alleen-lezen is."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij een ongeldige optie of NAAM gegeven werd."
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij een ongeldige optie of NAAM gegeven werd."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
"\n"
" De afsluitwaarde is 0 tenzij N negatief is of groter dan $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
"gegeven\n"
" bestand, of 1 als dit bestand niet gelezen kan worden."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" De afsluitwaarde is 0 tenzij taakbeheer uitgeschakeld is of er een fout\n"
" optreedt."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" De afsluitwaarde is 0 als EXPRESSIE waar is, 1 als EXPRESSIE onwaar is,\n"
" en 2 als een ongeldig argument gegeven werd."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Dit is een synoniem voor de ingebouwde functie 'test', behalve dat\n"
" het laatste argument een ']' moet zijn, horend bij de begin-'['."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
"\n"
" De afsluitwaarde is altijd 0."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie of SIGNAALAANDUIDING\n"
" gegeven werd."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" als de naam onbekend is\\ \n"
" De afsluitwaarde is 0 als elke NAAM gevonden werd, anders 1."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een\n"
" fout optreedt."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" De afsluitwaarde is 0, tenzij MODUS ongeldig is of een ongeldige optie\n"
" gegeven werd."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" De afsluitwaarde is die van ID, 1 als ID ongeldig si, of 2 als een\n"
" ongeldige optie gegeven werd."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" De afsluitwaarde is die van ID, 1 als ID ongeldig si, of 2 als een\n"
" ongeldige optie gegeven werd."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" dat element en worden de OPDRACHTEN uitgevoerd. \n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
"\n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
"\n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" overdraagbare standaardopmaak.\n"
" De afsluitwaarde is die van de PIJPLIJN."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
"\n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
"uitgevoerde\n"
" deelopdracht, of nul als geen enkele 'if' of 'elif' nul opleverde."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
"\n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
"\n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
"\n"
" De afsluitwaarde is 0, tenzij NAAM onveranderbaar is."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
"\n"
" De afsluitwaarde is die van de laatst uitgevoerde opdracht."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
"\n"
" De afsluitwaarde is die van de hervatte taak."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
"\n"
" De afsluitwaarde is 1 als de EXPRESSIE tot 0 evalueert; anders 0."
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
"\n"
" De afsluitwaarde is 0 of 1, afhankelijk van EXPRESSIE."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
"het\n"
" geschiedeniscommentaarteken, gewoonlijk '#'\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" mapwijziging mislukte. De opdracht 'dirs' geeft de huidige "
"mappenstapel weer."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldig argument gegeven werd of de\n"
" mapwijziging mislukte."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
"optie\n"
" gegeven werd."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
"een\n"
" fout optreedt."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of voor\n"
" NAAM is geen completeringsvoorschrift gedefinieerd."
-#: builtins.c:1940
+#: builtins.c:1958
#, fuzzy
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" De afsluitwaarde is 0, tenzij ARRAY alleen-lezen is of een ongeldige\n"
" optie gegeven werd."
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "%s: invalid number"
#~ msgstr "%s: ongeldig getal"
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2007-11-30 08:49+0100\n"
"Last-Translator: Andrzej M. Krzysztofowicz <ankry@mif.pg.gda.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "b³±d zapisu: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: b³±d przy okre¶laniu katalogu bie¿±cego: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: niejednoznaczne okre¶lenie zadania"
msgid "cannot use `-f' to make functions"
msgstr "nie mo¿na u¿ywaæ `-f' do tworzenia funkcji"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkcja tylko do odczytu"
msgid "%s: cannot delete: %s"
msgstr "%s: nie mo¿na usun±æ: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: plik jest za du¿y"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: nie mo¿na uruchomiæ pliku binarnego"
msgid "expression expected"
msgstr "spodziewano siê wyra¿enia"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: nieprawid³owo okre¶lony deskryptor pliku"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: nieprawid³owy deskryptor pliku: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: nieprawid³owa opcja"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: nieprawid³owa opcja"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: nieprawid³owa nazwa akcji"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: nie jest zmienn± tablicow±"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "licznik przesuniêcia"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "nie mo¿na opcji pow³oki jednocze¶nie ustawiæ i uniewa¿niæ"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: nieprawid³owa nazwa opcji pow³oki"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "nie mo¿na przekierowaæ standardowego wej¶cia z /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': nieprawid³owy znak formatuj±cy"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "b³±d zapisu: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: ograniczony: nie mo¿na podawaæ `/' w nazwach poleceñ"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: nie znaleziono polecenia"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: z³y interpreter"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nie mo¿na skopiowaæ deskryptora pliku %d do %d"
msgstr ""
# ???
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "proces o PID %d wystêpuje w dzia³aj±cym zadaniu %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "usuwanie zatrzymanego zadania %d z grup± procesów %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: brak takiego PID-u"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: PID %ld nie jest potomkiem tej pow³oki"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Brak rekordu dla procesu %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: zadanie %d jest zatrzymane"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: zadanie zosta³o przerwane"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: zadanie %d ju¿ pracuje w tle"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: uwaga: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "w tej pow³oce nie ma kontroli zadañ"
msgid "unexpected EOF while looking for matching `)'"
msgstr "nieoczekiwany EOF podczas poszukiwania pasuj±cego `)'"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "uzupe³nienie: nie znaleziono funkcji `%s'"
msgid "$%s: cannot assign in this way"
msgstr "$%s: nie mo¿na przypisywaæ w ten sposób"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "z³e podstawienie: brak zamykaj±cego `%s' w %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "brak pasuj±cego: %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "spodziewano siê wyra¿enia"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "spodziewano siê wyra¿enia"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
" s³owa. Polecenie alias zwraca prawdê, chyba ¿e poda siê NAME, dla\n"
" którego nie zdefiniowano aliasu."
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
"Usuwa wszystkie NAME z listy zdefiniowanych aliasów. Je¶li podano opcjê -a,\n"
" usuwane s± wszystkie definicje aliasów."
-#: builtins.c:285
+#: builtins.c:289
#, fuzzy
msgid ""
"Set Readline key bindings and variables.\n"
"jako\n"
" dane wej¶ciowe."
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
"Rozpoczêcie nastêpnej iteracji pêtli FOR, WHILE lub UNTIL zawier±jacej\n"
" polecenie. Je¶li podano N, iteracja dotyczy pêtli N-tego poziomu."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
"Rozpoczêcie nastêpnej iteracji pêtli FOR, WHILE lub UNTIL zawier±jacej\n"
" polecenie. Je¶li podano N, iteracja dotyczy pêtli N-tego poziomu."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
#, fuzzy
msgid ""
"Return the context of the current subroutine call.\n"
" Warto¶æ EXPR okre¶la o ile ramek wywo³añ wzglêdem bie¿±cej ramki\n"
" nale¿y siê cofn±æ; numer najwy¿szej ramki to 0."
-#: builtins.c:379
+#: builtins.c:383
#, fuzzy
msgid ""
"Change the shell working directory.\n"
" katalogów zamiast ¶ledzenia dowi±zañ symbolicznych; opcja -L wymusza\n"
" ¶ledzenie dowi±zañ symbolicznych."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
"¯adnego efektu; polecenie nic nie robi. Jako kod zakoñczenia\n"
" zwracane jest zero."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
#, fuzzy
msgid ""
"Return an unsuccessful result.\n"
" Always fails."
msgstr "Zwracany jest niepomy¶lny wynik zakoñczenia."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
#, fuzzy
msgid ""
"Set variable values and attributes.\n"
" U¿ycie `+' zamiast `-' powoduje wy³±czenie danego atrybutu. U¿yte\n"
" w funkcji czyni wszystkie NAME lokalnymi, podobnie jak polecenie `local'."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
#, fuzzy
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Za pomoc± opcji -E mo¿na jawnie wy³±czyæ interpretacjê powy¿szych znaków."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
"Opuszczenie pow³oki z kodem zakoñczenia N. Je¶li N pominiêto, kodem\n"
" zakoñczenia bêdzie kod zakoñczenia ostatniego wykonanego polecenia."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
#, fuzzy
msgid ""
"Display or execute commands from the history list.\n"
" `r cc' uruchamia ostatnie polecenie zaczynaj±ce siê od `cc' a napisanie\n"
" `r' uruchamia ponownie ostatnie polecenie."
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" zadaniem. Je¶li nie podano JOB_SPEC, u¿yte zostanie zadanie bie¿±ce\n"
" w rozumieniu pow³oki"
-#: builtins.c:749
+#: builtins.c:753
#, fuzzy
msgid ""
"Move jobs to the background.\n"
" z `&'. Je¶li nie podano JOB_SPEC, u¿yte zostanie zadanie bie¿±ce\n"
" w rozumieniu pow³oki"
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
#, fuzzy
msgid ""
"Display status of jobs.\n"
" ka¿dej z wystêpuj±cych w ARGS specyfikacji zadañ numerem PID procesu\n"
" wiod±cego danego zadania."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
#, fuzzy
msgid ""
"Send a signal to a job.\n"
" oraz, w przypadku osi±gniêcia ograniczenia na liczbê procesów, nie\n"
" powoduje potrzeby uruchamiania dodatkowego procesu, aby jaki¶ ubiæ."
-#: builtins.c:917
+#: builtins.c:921
#, fuzzy
msgid ""
"Evaluate arithmetic expressions.\n"
" Je¶li warto¶ci± ostatniego argumentu jest 0, let zwraca 1;\n"
" w pozosta³ych przypadkach zwracane jest 0."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
"deskryptor\n"
" pliku."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
#, fuzzy
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" pozycyjnymi i s± one przypisane, kolejno, do $1, $2, .. $n. Gdy nie\n"
" zostan± podane ¿adne argumenty, wypisywane s± wszystkie zmienne pow³oki."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
" w $PATH. Je¶li podane zostan± jakiekolwiek ARGUMENTS, staj± siê\n"
" parametrami pozycyjnymi podczas uruchomienia FILENAME."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" równy, nierówny, mniejszy ni¿, mniejszy lub równy, wiêkszy ni¿ lub\n"
" wiêkszy lub równy arg2."
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
"Jest to synonim dla wbudowanego polecenia \"test\", ale wymagaj±cy, by\n"
" ostatnim argumentem by³ `]' pasuj±cy do pocz±tkowego `['."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
#, fuzzy
msgid ""
"Trap signals and other events.\n"
" nazw sygna³ów wraz z odpowiadaj±cymi im numerami. Nale¿y zauwa¿yæ, ¿e\n"
" sygna³ mo¿na wys³aæ do pow³oki poleceniem \"kill -signal $$\"."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
#, fuzzy
msgid ""
"Modify shell resource limits.\n"
" -p, które jest w jednostkach 512-bajtowych oraz -u, które jest\n"
" bezwymiarow± liczb± procesów."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
#, fuzzy
msgid ""
"Wait for process completion and return exit status.\n"
" procesu lub specyfikacj± zadania; gdy jest specyfikacj± zadania,\n"
" oczekiwanie dotyczy wszystkich procesów w potoku zadania."
-#: builtins.c:1474
+#: builtins.c:1478
#, fuzzy
msgid ""
"Execute commands for each member in a list.\n"
" Dla ka¿dego elementu WORDS, NAME jest ustawiane na ten element\n"
" i uruchamiane s± COMMANDS."
-#: builtins.c:1488
+#: builtins.c:1492
#, fuzzy
msgid ""
"Arithmetic for loop.\n"
" EXP1, EXP2 i EXP3 s± wyra¿eniami arytmetycznymi. Je¶li które¶ z wyra¿eñ\n"
" zostanie pominiête, zachowanie jest takie, jaby mia³o ono warto¶æ 1."
-#: builtins.c:1506
+#: builtins.c:1510
#, fuzzy
msgid ""
"Select words from a list and execute commands.\n"
" wiersz jest zachowywany w zmiennej REPLY. Po ka¿dym wyborze uruchamiane\n"
" s± polecenia COMMANDS a¿ do polecenia break."
-#: builtins.c:1527
+#: builtins.c:1531
#, fuzzy
msgid ""
"Report time consumed by pipeline's execution.\n"
" podsumowania czasów w nieco innej postaci. U¿ywana jest wtedy warto¶æ\n"
" zmiennej TIMEFORMAT jako format danych wyj¶ciowych."
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
"pasuje\n"
" do wzorca PATTERN. Znak `|' s³u¿y do rozdzielania wielu wzorców."
-#: builtins.c:1556
+#: builtins.c:1560
#, fuzzy
msgid ""
"Execute commands based on conditional.\n"
" uruchomionego polecenia lub zero, gdy ¿aden ze sprawdzanych warunków\n"
" nie by³ prawdziwy."
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
"Rozwijanie i uruchamianie poleceñ COMMANDS tak d³ugo, dopóki ostatnie\n"
" polecenie w `while' COMMANDS koñczy siê z kodem zero."
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
"Rozwijanie i uruchamianie poleceñ COMMANDS tak d³ugo, dopóki ostatnie\n"
" polecenie w `until' COMMANDS koñczy siê z kodem niezerowym."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
"Uruchomienie zbioru poleceñ jako grupy. W ten sposób mo¿na przekierowaæ\n"
" ca³y zbiór poleceñ."
-#: builtins.c:1623
+#: builtins.c:1641
#, fuzzy
msgid ""
"Resume job in foreground.\n"
"dla\n"
" `bg'."
-#: builtins.c:1638
+#: builtins.c:1656
#, fuzzy
msgid ""
"Evaluate arithmetic expression.\n"
"Obliczenie wyra¿enia EXPRESSION zgodnie z zasadami obliczania wyra¿eñ\n"
" arytmetycznych. Równowa¿ne \"let EXPRESSION\"."
-#: builtins.c:1650
+#: builtins.c:1668
#, fuzzy
msgid ""
"Execute conditional command.\n"
" wzorca. Operatory && i || nie opliczaj± EXPR2, je¶li obliczenie EXPR1\n"
" wystarcza do okre¶lenia warto¶ci wyra¿enia."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
#, fuzzy
msgid ""
"Add directories to stack.\n"
" \n"
" Zawarto¶æ stosu katalogów mo¿na zobaczyæ za pomoc± polecenia `dirs'."
-#: builtins.c:1767
+#: builtins.c:1785
#, fuzzy
msgid ""
"Remove directories from stack.\n"
" \n"
" Zawarto¶æ stosu katalogów mo¿na zobaczyæ za pomoc± polecenia `dirs'."
-#: builtins.c:1797
+#: builtins.c:1815
#, fuzzy
msgid ""
"Display directory stack.\n"
" -N\tWypisanie N-tej pozycji licz±c od prawej strony listy wypisywanej\n"
" \tprzez dirs wywo³ane bez opcji, pocz±wszy od zera."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
" Gdy podany jest opcjonalny argument WORD, generowane s± uzupe³nienia\n"
" pasuj±ce do WORD."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2002-05-08 13:50GMT -3\n"
"Last-Translator: Halley Pacheco de Oliveira <halleypo@ig.com.br>\n"
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
msgid "write error: %s"
msgstr "erro de `pipe': %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, fuzzy, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: Redirecionamento ambíguo"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: função somente para leitura"
msgid "%s: cannot delete: %s"
msgstr "%s: impossível criar: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: impossível executar o arquivo binário"
msgid "expression expected"
msgstr "esperado uma expressão"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%c%c: opção incorreta"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%c%c: opção incorreta"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "número do sinal incorreto"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: variável não vinculada"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift [n]"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "erro de `pipe': %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restrição: não é permitido especificar `/' em nomes de comandos"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: comando não encontrado"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: é um diretório"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "impossível duplicar fd (descritor de arquivo) %d para fd 0: %s"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: o identificador do processo (pid) não existe (%d)!\n"
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "Sinal desconhecido #%d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Concluído"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Parado"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Parado"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Executando"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Concluído(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Fim da execução com status %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Status desconhecido"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(imagem do núcleo gravada)"
-#: jobs.c:1563
+#: jobs.c:1568
#, fuzzy, c-format
msgid " (wd: %s)"
msgstr "(wd agora: %s)\n"
-#: jobs.c:1766
+#: jobs.c:1771
#, fuzzy, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "`setpgid' filho (%d para %d) erro %d: %s\n"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, fuzzy, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: o pid %d não é um filho deste `shell'"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: o trabalho terminou"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "encaixe (slot) %3d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (imagem do núcleo gravada)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd agora: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: getpgrp falhou: %s"
-#: jobs.c:3618
+#: jobs.c:3623
#, fuzzy
msgid "initialize_job_control: line discipline"
msgstr "initialize_jobs: disciplina da linha: %s"
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "initialize_jobs: getpgrp falhou: %s"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "nenhum controle de trabalho nesta `shell'"
msgid "unexpected EOF while looking for matching `)'"
msgstr "encontrado EOF não esperado enquanto procurava por `%c'"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s: impossível atribuir desta maneira"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substituição incorreta: nenhum `%s' em %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr "until COMANDOS; do COMANDOS; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function NOME { COMANDOS ; } ou NOME () { COMANDOS ; }"
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "{ COMANDOS }"
-#: builtins.c:202
+#: builtins.c:204
#, fuzzy
msgid "job_spec [&]"
msgstr "fg [JOB-ESPECIFICADO]"
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "esperado uma expressão"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "esperado uma expressão"
-#: builtins.c:208
+#: builtins.c:210
#, fuzzy
msgid "variables - Names and meanings of some shell variables"
msgstr "As variáveis da `shell' podem ser operandos. O nome da variável é"
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [DIR | +N | -N] [-n]"
-#: builtins.c:215
+#: builtins.c:217
#, fuzzy
msgid "popd [-n] [+N | -N]"
msgstr "popd [+N | -N] [-n]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o OPÇÃO-LONGA] NOME-OPÇÃO [NOME-OPÇÃO...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "type [-apt] NOME [NOME ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
msgstr ""
"Remove NOMEs da lista de aliases definidos. Se a opção -a for fornecida,"
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr "Prossegue no próximo ciclo do laço FOR, WHILE ou UNTIL envolvente."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr "Prossegue no próximo ciclo do laço FOR, WHILE ou UNTIL envolvente."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
msgstr ""
"Nenhum efeito; o comando não faz nada. Retorna zero no código de saída."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
" is that of the last command executed."
msgstr "Sair da `shell' com status igual a N. Se N for omitido, o status"
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
msgstr ""
"Colocar JOB-ESPECIFICADO no primeiro plano, e torná-lo o trabalho atual."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" be a literal `]', to match the opening `['."
msgstr "argumento deve ser o literal `]', para fechar o `[' de abertura."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
msgstr ""
"Executar seletivamente COMANDOS tomando por base a correspondência entre"
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
" Returns the status of the last command executed."
msgstr "Expande e executa COMANDOS enquanto o comando final nos"
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
" Returns the status of the last command executed."
msgstr "Expande e executa COMANDOS enquanto o comando final nos"
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
" Returns the status of the last command executed."
msgstr "Executa um conjunto de comandos agrupando-os. Esta é uma forma de"
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Display the list of currently remembered directories. Directories"
#~ msgstr "Exibe a lista atual de diretórios memorizados. Os diretórios são"
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 1997-08-17 18:42+0300\n"
"Last-Translator: Eugen Hoanca <eugenh@urban-grafx.ro>\n"
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "eroare de legãturã (pipe): %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, fuzzy, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: Redirectare ambiguã"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: funcþie doar în citire (readonly)"
msgid "%s: cannot delete: %s"
msgstr "%s: nu s-a putut crea: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: nu se poate executa fiºierul binar"
msgid "expression expected"
msgstr "se aºteaptã expresie"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%c%c: opþiune invalidã"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%c%c: opþiune invalidã"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "numãr de semnal invalid"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: variabilã fãrã limitã"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift [n]"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "eroare de legãturã (pipe): %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: limitat: nu se poate specifica `/' în numele comenzilor"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: comandã negãsitã"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: este director"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nu se poate duplica fd %d în fd 0: %s"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, fuzzy, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: Nu existã pid-ul (%d)!\n"
-#: jobs.c:1411
+#: jobs.c:1416
#, fuzzy, c-format
msgid "Signal %d"
msgstr "Semnal Necunoscut #%d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Finalizat"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Stopat"
-#: jobs.c:1434
+#: jobs.c:1439
#, fuzzy, c-format
msgid "Stopped(%s)"
msgstr "Stopat"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "În rulare"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Finalizat(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Ieºire %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Stare necunoscutã"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(core dumped) "
-#: jobs.c:1563
+#: jobs.c:1568
#, fuzzy, c-format
msgid " (wd: %s)"
msgstr "(wd actual: %s)\n"
-#: jobs.c:1766
+#: jobs.c:1771
#, fuzzy, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "setpgid copil (de la %d la %d) a întâlnit o eroare %d: %s\n"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, fuzzy, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "aºteptaþi: pid-ul %d nu este rezultat(child) al acestui shell"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: jobul a fost terminat"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "slot %3d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (core dumped)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd actual: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
#, fuzzy
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_jobs: getpgrp eºuat: %s"
-#: jobs.c:3618
+#: jobs.c:3623
#, fuzzy
msgid "initialize_job_control: line discipline"
msgstr "initialize_jobs: disciplinã linie: %s"
-#: jobs.c:3628
+#: jobs.c:3633
#, fuzzy
msgid "initialize_job_control: setpgid"
msgstr "initialize_jobs: getpgrp eºuat: %s"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "nici un control de job în acest shell"
msgid "unexpected EOF while looking for matching `)'"
msgstr "EOF brusc în cãutare dupã `%c'"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr "$%s: nu se poate asigna în acest mod"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substituþie invalidã: nu existã ')' de final în %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr "until COMENZI; do COMENZI; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
#, fuzzy
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function NUME { COMENZI ; } sau NUME () { COMENZI ; }"
-#: builtins.c:200
+#: builtins.c:202
#, fuzzy
msgid "{ COMMANDS ; }"
msgstr "{ COMENZI }"
-#: builtins.c:202
+#: builtins.c:204
#, fuzzy
msgid "job_spec [&]"
msgstr "fg [job_spec]"
-#: builtins.c:204
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "se aºteaptã expresie"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "se aºteaptã expresie"
-#: builtins.c:208
+#: builtins.c:210
#, fuzzy
msgid "variables - Names and meanings of some shell variables"
msgstr "Variabilele shell-ului sunt admise ca operanzi. Numele variabilei"
-#: builtins.c:211
+#: builtins.c:213
#, fuzzy
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [dir | +N | -N] [-n]"
-#: builtins.c:215
+#: builtins.c:217
#, fuzzy
msgid "popd [-n] [+N | -N]"
msgstr "popd [+N | -N] [-n]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
#, fuzzy
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o opþiune lungã] nume_opt [nume_opt...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
#, fuzzy
msgid "compopt [-o|+o option] [name ...]"
msgstr "type [-apt] nume [nume ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Return success unless a NAME is not an existing alias."
msgstr ""
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
msgstr ""
"Nici un efect, comanda nu face nimic. Un cod de ieºire zero este returnat."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
" is that of the last command executed."
msgstr "Iese din shell cu starea lui N. Dacã N este omis, starea de ieºire"
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Missing `}'"
#~ msgstr "`}' lipsã"
msgstr ""
"Project-Id-Version: GNU bash 3.1-release\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2006-01-05 21:28+0300\n"
"Last-Translator: Evgeniy Dushistov <dushistov@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
msgid "write error: %s"
msgstr "ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÔÅËÕÝÅÊ ÄÉÒÅËÔÏÒÉÉ: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr ""
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: ÄÏÓÔÕÐÎÁÑ ÔÏÌØËÏ ÎÁ ÞÔÅÎÉÅ ÆÕÎËÃÉÑ"
msgid "%s: cannot delete: %s"
msgstr "%s: ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: ÓÌÉÛËÏÍ ÂÏÌØÛÏÊ ÆÁÊÌ"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: ÎÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ ÂÉÎÁÒÎÙÊ ÆÁÊÌ"
msgid "expression expected"
msgstr "ÏÖÉÄÁÌÏÓØ ×ÙÒÁÖÅÎÉÅ"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÏÅ ÏÐÉÓÁÎÉÅ ÆÁÊÌÏ×ÏÇÏ ÄÅÓËÒÉÐÔÏÒÁ"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: ÎÅÄÏÐÕÓÔÉÍÙÊ ÄÅÓËÒÉÐÔÏÒ ÆÁÊÌÁ: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: ÎÅÐÒÁ×ÉÌØÎÁÑ ÏÐÃÉÑ"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: ÎÅÐÒÁ×ÉÌØÎÁÑ ÏÐÃÉÑ"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÏÅ ÞÉÓÌÏ"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: ÎÅ ÐÅÒÅÍÅÎÎÁÑ-ÍÁÓÓÉ×"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr ""
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ ÏÐÃÉÉ ÏÂÏÌÏÞËÉ"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: ËÏÍÁÎÄÁ ÎÅ ÎÁÊÄÅÎÁ"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: ÐÌÏÈÏÊ ÉÎÔÅÒÐÒÅÔÁÔÏÒ"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "ÎÅ ÍÏÇÕ ÄÕÂÌÉÒÏ×ÁÔØ fd %d × fd %d"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr ""
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr ""
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr ""
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ:"
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr ""
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr ""
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "ÎÅÔ ÚÁËÒÙ×ÁÀÝÅÇÏ `%c' × %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "ÎÅÔ ÓÏ×ÐÁÄÅÎÉÑ Ó: %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "ÏÖÉÄÁÌÏÓØ ×ÙÒÁÖÅÎÉÅ"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "ÏÖÉÄÁÌÏÓØ ×ÙÒÁÖÅÎÉÅ"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" defined."
msgstr ""
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Return success unless a NAME is not an existing alias."
msgstr ""
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
" îÅÔ ËÁËÏÇÏ-ÌÉÂÏ ÜÆÆÅËÔÁ; ËÏÍÁÎÄÁ ÎÉÞÅÇÏ ÎÅ ÄÅÌÁÅÔ. îÕÌØ ×ÏÚ×ÒÁÝÁÅÔÓÑ × "
"ËÁÞÅÓÔ×Å ÒÅÚÕÌØÔÁÔÁ."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
#, fuzzy
msgid ""
"Return an unsuccessful result.\n"
" Always fails."
msgstr "÷ÏÚ×ÒÁÝÁÅÔ ÒÅÚÕÌØÔÁÔ: ÎÅÕÄÁÞÁ."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" is that of the last command executed."
msgstr ""
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
" åÓÌÉ ÎÅÏÂÑÚÁÔÅÌØÎÙÊ ÁÒÇÕÍÅÎÔ óìï÷ï ÂÙÌ ÉÓÐÏÌØÚÏ×ÁÎ, ÔÏ ÂÕÄÕÔ "
"ÓÇÅÎÅÒÉÒÏ×ÁÎÙ ÔÏÌØËÏ ÓÏ×ÐÁÄÅÎÉÑ Ó óìï÷ï."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "Without EXPR, returns returns \"$line $filename\". With EXPR,"
#~ msgstr "âÅÚ ÷ùòáö ×ÏÚ×ÒÁÝÁÅÔ \"$ÓÔÒÏËÁ $ÉÍÑÆÁÊÌÁ\". ó ÷ùòáö,"
msgstr ""
"Project-Id-Version: bash 4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-08-25 11:13-0400\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2009-02-07 15:11+0100\n"
"Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: arrayfunc.c:49
+#: arrayfunc.c:50
msgid "bad array subscript"
msgstr "chybný index poľa"
-#: arrayfunc.c:312 builtins/declare.def:467
+#: arrayfunc.c:313 builtins/declare.def:474
#, c-format
msgid "%s: cannot convert indexed to associative array"
msgstr "%s: nie je možné previesť indexované pole na asociatívne"
-#: arrayfunc.c:478
+#: arrayfunc.c:479
#, c-format
msgid "%s: invalid associative array key"
msgstr "%s: neplatný kľúč asociatívneho poľa"
-#: arrayfunc.c:480
+#: arrayfunc.c:481
#, c-format
msgid "%s: cannot assign to non-numeric index"
msgstr "%s: nie je možné priradiť nenumerickému indexu"
-#: arrayfunc.c:516
+#: arrayfunc.c:517
#, c-format
msgid "%s: %s: must use subscript when assigning associative array"
msgstr "%s: %s: pri priraďovaní asociatívnemu poľu je potrebné použiť index"
-#: bashhist.c:382
+#: bashhist.c:380
#, c-format
msgid "%s: cannot create: %s"
msgstr "%s: nie je možné vytvoriť: %s"
-#: bashline.c:3190
+#: bashline.c:3413
msgid "bash_execute_unix_command: cannot find keymap for command"
-msgstr "bash_execute_unix_command: nie je možné nájsť klávesovú mapu pre príkaz"
+msgstr ""
+"bash_execute_unix_command: nie je možné nájsť klávesovú mapu pre príkaz"
-#: bashline.c:3268
+#: bashline.c:3491
#, c-format
msgid "%s: first non-whitespace character is not `\"'"
msgstr "%s: prvý znak (okrem bielych znakov) nie je „\"“"
-#: bashline.c:3297
+#: bashline.c:3520
#, c-format
msgid "no closing `%c' in %s"
msgstr "chýba zatvárajúca „%c“ v %s"
-#: bashline.c:3331
+#: bashline.c:3554
#, c-format
msgid "%s: missing colon separator"
msgstr "%s: chýba oddeľovač dvojbodka"
-#: builtins/bind.def:199
+#: builtins/bind.def:120 builtins/bind.def:123
+msgid "line editing not enabled"
+msgstr ""
+
+#: builtins/bind.def:206
#, c-format
msgid "`%s': invalid keymap name"
msgstr "„%s“: neplatný názov klávesovej mapy"
-#: builtins/bind.def:238
+#: builtins/bind.def:245
#, c-format
msgid "%s: cannot read: %s"
msgstr "%s: nie je možné prečítať: %s"
-#: builtins/bind.def:253
+#: builtins/bind.def:260
#, c-format
msgid "`%s': cannot unbind"
msgstr "„%s“: nie je možné zrušiť väzbu (unbind)"
-#: builtins/bind.def:288 builtins/bind.def:318
+#: builtins/bind.def:295 builtins/bind.def:325
#, c-format
msgid "`%s': unknown function name"
msgstr "„%s“: neznámy názov funkcie"
-#: builtins/bind.def:296
+#: builtins/bind.def:303
#, c-format
msgid "%s is not bound to any keys.\n"
msgstr "%s nie je zviazaný (bind) s žiadnymi klávesmi.\n"
-#: builtins/bind.def:300
+#: builtins/bind.def:307
#, c-format
msgid "%s can be invoked via "
msgstr "%s je možné vyvolať ako "
msgid "only meaningful in a `for', `while', or `until' loop"
msgstr "dáva zmysel iba v cykle „for“, „while“ alebo „until“"
+#: builtins/caller.def:133
+#, fuzzy
+msgid ""
+"Returns the context of the current subroutine call.\n"
+" \n"
+" Without EXPR, returns "
+msgstr "Vracia kontext aktuálneho volania podprocedúry."
+
#: builtins/cd.def:215
msgid "HOME not set"
msgstr "HOME nebola nastavená"
msgid "OLDPWD not set"
msgstr "OLDPWD nebola nastavená"
-#: builtins/common.c:107
+#: builtins/common.c:101
#, c-format
msgid "line %d: "
msgstr "riadok %d: "
-#: builtins/common.c:124
+#: builtins/common.c:139 error.c:260
+#, c-format
+msgid "warning: "
+msgstr "upozornenie: "
+
+#: builtins/common.c:153
#, c-format
msgid "%s: usage: "
msgstr "%s: použitie "
-#: builtins/common.c:137 test.c:822
+#: builtins/common.c:166 test.c:822
msgid "too many arguments"
msgstr "príliš veľa argumentov"
-#: builtins/common.c:162 shell.c:493 shell.c:774
+#: builtins/common.c:191 shell.c:493 shell.c:774
#, c-format
msgid "%s: option requires an argument"
msgstr "%s: voľba vyžaduje argument"
-#: builtins/common.c:169
+#: builtins/common.c:198
#, c-format
msgid "%s: numeric argument required"
msgstr "%s: vyžaduje sa numerický argument"
-#: builtins/common.c:176
+#: builtins/common.c:205
#, c-format
msgid "%s: not found"
msgstr "%s: nenájdené"
-#: builtins/common.c:185 shell.c:787
+#: builtins/common.c:214 shell.c:787
#, c-format
msgid "%s: invalid option"
msgstr "%s: neplatná voľba"
-#: builtins/common.c:192
+#: builtins/common.c:221
#, c-format
msgid "%s: invalid option name"
msgstr "%s: neplatný názov voľby"
-#: builtins/common.c:199 general.c:231 general.c:236
+#: builtins/common.c:228 general.c:231 general.c:236
#, c-format
msgid "`%s': not a valid identifier"
msgstr "„%s“: nie je platný identifikátor"
-#: builtins/common.c:209
+#: builtins/common.c:238
msgid "invalid octal number"
msgstr "neplatné osmičkové číslo"
-#: builtins/common.c:211
+#: builtins/common.c:240
msgid "invalid hex number"
msgstr "neplatné šestnástkové číslo"
-#: builtins/common.c:213 expr.c:1255
+#: builtins/common.c:242 expr.c:1255
msgid "invalid number"
msgstr "neplatné číslo"
-#: builtins/common.c:221
+#: builtins/common.c:250
#, c-format
msgid "%s: invalid signal specification"
msgstr "%s: neplatné určenie signálu"
-#: builtins/common.c:228
+#: builtins/common.c:257
#, c-format
msgid "`%s': not a pid or valid job spec"
msgstr "„%s“: nie je pid ani platný špecifikátor úlohy"
-#: builtins/common.c:235 error.c:453
+#: builtins/common.c:264 error.c:453
#, c-format
msgid "%s: readonly variable"
msgstr "%s: premenná len na čítanie"
-#: builtins/common.c:243
+#: builtins/common.c:272
#, c-format
msgid "%s: %s out of range"
msgstr "%s: %s je mimo rozsahu"
-#: builtins/common.c:243 builtins/common.c:245
+#: builtins/common.c:272 builtins/common.c:274
msgid "argument"
msgstr "argument"
-#: builtins/common.c:245
+#: builtins/common.c:274
#, c-format
msgid "%s out of range"
msgstr "%s mimo rozsahu"
-#: builtins/common.c:253
+#: builtins/common.c:282
#, c-format
msgid "%s: no such job"
msgstr "%s: taká úloha neexistuje"
-#: builtins/common.c:261
+#: builtins/common.c:290
#, c-format
msgid "%s: no job control"
msgstr "%s: riadenie úloh nedostupné"
-#: builtins/common.c:263
+#: builtins/common.c:292
msgid "no job control"
msgstr "riadenie úloh nedostupné"
-#: builtins/common.c:273
+#: builtins/common.c:302
#, c-format
msgid "%s: restricted"
msgstr "%s: obmedzené"
-#: builtins/common.c:275
+#: builtins/common.c:304
msgid "restricted"
msgstr "obmedzené"
-#: builtins/common.c:283
+#: builtins/common.c:312
#, c-format
msgid "%s: not a shell builtin"
msgstr "%s: nie je vstavaný príkaz (builtin) shellu"
-#: builtins/common.c:292
+#: builtins/common.c:321
#, c-format
msgid "write error: %s"
msgstr "chyba zapisovania: %s"
-#: builtins/common.c:523
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: chyba pri zisťovaní aktuálneho adresára: %s: %s\n"
-#: builtins/common.c:589 builtins/common.c:591
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: nejednoznačné určenie úlohy"
msgid "cannot use `-f' to make functions"
msgstr "nie je možné použiť „-f“ pre tvorbu funkcií"
-#: builtins/declare.def:365 execute_cmd.c:4696
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkcia iba na čítanie"
-#: builtins/declare.def:454
+#: builtins/declare.def:461
#, c-format
msgid "%s: cannot destroy array variables in this way"
msgstr "%s: nie je možné takto robiť deštrukciu premenných polí"
-#: builtins/declare.def:461
+#: builtins/declare.def:468
#, c-format
msgid "%s: cannot convert associative to indexed array"
msgstr "%s: nie je možné previesť asociatívne pole na indexované"
msgid "%s: cannot delete: %s"
msgstr "%s: nie je možné zmazať: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: súbor je príliš veľký"
-#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: nie je možné vykonať binárny súbor"
#: builtins/help.def:168
#, c-format
-msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'."
+msgid ""
+"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'."
msgstr ""
"pre „%s“ neboli nájdené zodpovedajúce témy pomocníka.\n"
"Skúste „help help“ alebo „man -k %s“ alebo „info %s“."
"A star (*) next to a name means that the command is disabled.\n"
"\n"
msgstr ""
-"Tieto príkazy shellu sú definované interne. Napísaním „help“ zobrazíte tento zoznam.\n"
+"Tieto príkazy shellu sú definované interne. Napísaním „help“ zobrazíte tento "
+"zoznam.\n"
"Napísaním „help názov“ zistíte viac o funkcii „názov“.\n"
"Napísaním „info bash“ zistíte viac o shelli vo všeobecnosti.\n"
-"Napísaním „man -k“ alebo „info“ zistíte viac príkazoch, ktoré nie sú v zozname.\n"
+"Napísaním „man -k“ alebo „info“ zistíte viac príkazoch, ktoré nie sú v "
+"zozname.\n"
"\n"
"Hviezdička (*) vedľa názvu znamená, že príkaz je vypnutý.\n"
"\n"
msgid "history position"
msgstr "poloha histórie"
-#: builtins/history.def:366
+#: builtins/history.def:365
#, c-format
msgid "%s: history expansion failed"
msgstr "%s: rozšírenie histórie zlyhalo"
msgid "expression expected"
msgstr "očakával sa výraz"
-#: builtins/mapfile.def:215 builtins/read.def:271
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: neplatná špecifikácia popisovača súboru"
-#: builtins/mapfile.def:223 builtins/read.def:278
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: neplatný popisovač súboru: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: neplatný počet riadkov"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: neplatný začiatok poľa"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: neplatné kvantum spätného volania"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "názov prázdnej premennej poľa"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "vyžaduje sa podpora premennej poľa"
-#: builtins/printf.def:364
+#: builtins/printf.def:367
#, c-format
msgid "`%s': missing format character"
msgstr "„%s“: chýba formátovací znak"
-#: builtins/printf.def:541
+#: builtins/printf.def:544
#, c-format
msgid "`%c': invalid format character"
msgstr "„%c“: neplatný formátovací znak"
-#: builtins/printf.def:568
+#: builtins/printf.def:571
#, c-format
msgid "warning: %s: %s"
msgstr "upozornenie: %s: %s"
-#: builtins/printf.def:747
+#: builtins/printf.def:750
msgid "missing hex digit for \\x"
msgstr "chýba hexadecimálna číslica v \\x"
" \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 ""
"Zobrazí zoznam momentálne zapamätaných adresárov. Adresáre\n"
" \n"
" Zásobník adresárov môžete zobraziť vstavaným príkazom „dirs“."
-#: builtins/read.def:247
+#: builtins/read.def:248
#, c-format
msgid "%s: invalid timeout specification"
msgstr "%s: neplatná špecifikácia expirácie (timeout)"
-#: builtins/read.def:569
+#: builtins/read.def:574
#, c-format
msgid "read error: %d: %s"
msgstr "chyba pri čítaní: %d: %s"
-#: builtins/return.def:68
+#: builtins/return.def:73
msgid "can only `return' from a function or sourced script"
-msgstr "návrat („return“) je možné vykonať iba z funkcie alebo skriptu vyvolaného pomocou „source“"
+msgstr ""
+"návrat („return“) je možné vykonať iba z funkcie alebo skriptu vyvolaného "
+"pomocou „source“"
#: builtins/set.def:768
msgid "cannot simultaneously unset a function and a variable"
msgid "shift count"
msgstr "posun o"
-#: builtins/shopt.def:250
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "nie je možné zároveň nastaviť aj zrušiť voľby shellu"
-#: builtins/shopt.def:315
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: neplatný názov voľby shellu"
msgid "Aborting..."
msgstr "Ruší sa..."
-#: error.c:260
-#, c-format
-msgid "warning: "
-msgstr "upozornenie: "
-
#: error.c:405
msgid "unknown command error"
msgstr "chyba neznámeho príkazu"
msgid "\atimed out waiting for input: auto-logout\n"
msgstr "\ačas vypršal pri čakaní na vstup: automatické odhlásenie\n"
-#: execute_cmd.c:483
+#: execute_cmd.c:491
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "nie je možné presmerovať štandardný vstup z /dev/null: %s"
-#: execute_cmd.c:1079
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c“: neplatný formátovácí znak"
-#: execute_cmd.c:1930
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "chyba rúry"
-#: execute_cmd.c:4243
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: obmedzené: nie jemožné uviesť „/“ v názvoch príkazov"
-#: execute_cmd.c:4334
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: príkaz nenájdený"
-#: execute_cmd.c:4586
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: chybný interpreter"
-#: execute_cmd.c:4735
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nie je možné duplikovať fd %d na fd %d"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: nie je možné pristupovať k rodičovským adresárom"
-#: input.c:94 subst.c:4551
+#: input.c:94 subst.c:4559
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nie j emožné resetovať nodelay režim fd %d"
msgid "save_bash_input: buffer already exists for new fd %d"
msgstr "save_bash_input: bufer už existuje pre nový fd %d"
-#: jobs.c:464
+#: jobs.c:466
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp rúra"
-#: jobs.c:879
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "pid %d získaný pomocou fork sa vyskytuje v bežiacej úlohe %d"
-#: jobs.c:997
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "mažem zastavenú úlohu %d so skupinou procesu %ld"
-#: jobs.c:1102
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: proces %5ld (%s) v the_pipeline"
-#: jobs.c:1105
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: pid %5ld (%s) je stále označený ako živý"
-#: jobs.c:1393
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: taký pid neexistuje"
-#: jobs.c:1408
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signál %d"
-#: jobs.c:1422 jobs.c:1447
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Hotovo"
-#: jobs.c:1427 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Zastavené"
-#: jobs.c:1431
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Zastavené(%s)"
-#: jobs.c:1435
+#: jobs.c:1443
msgid "Running"
msgstr "Beží"
-#: jobs.c:1449
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Hotovo(%d)"
-#: jobs.c:1451
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Ukončenie %d"
-#: jobs.c:1454
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Neznámy stav"
-#: jobs.c:1541
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(bol uložený výpis pamäte) "
-#: jobs.c:1560
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (wd: %s)"
-#: jobs.c:1761
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "setpgid detského procesu (%ld to %ld)"
-#: jobs.c:2089 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld nie je dieťa tohto shellu"
-#: jobs.c:2316
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Neexistuje záznam o procese %ld"
-#: jobs.c:2588
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: úloha %d je zastavená"
-#: jobs.c:2810
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: úloha skončila"
-#: jobs.c:2819
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: úloha %d už je v pozadí"
-#: jobs.c:3482
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: riadok %d: "
-#: jobs.c:3496 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (bol uložený výpis pamäte)"
-#: jobs.c:3508 jobs.c:3521
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd teraz: %s)\n"
-#: jobs.c:3553
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: funkcia getpgrp zlyhala"
-#: jobs.c:3613
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: riadkový systém"
-#: jobs.c:3623
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3651
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "nie je možné nastaviť skupinu procesu terminálu (%d)"
-#: jobs.c:3656
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "v tomto shelli nie je riadenie úloh"
#: make_cmd.c:651
#, c-format
msgid "here-document at line %d delimited by end-of-file (wanted `%s')"
-msgstr "here-document na riadku %d oddelený znakom konca riadku (očakávalo sa „%s”)"
+msgstr ""
+"here-document na riadku %d oddelený znakom konca riadku (očakávalo sa „%s”)"
#: make_cmd.c:746
#, c-format
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: inštrukcia presmerovania „%d“ mimo rozsahu"
-#: parse.y:2982 parse.y:3204
+#: parse.y:2986 parse.y:3218
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "neočakávaný koniec súboru počas hľadania zodpovedajúceho „%c“"
-#: parse.y:3708
+#: parse.y:3722
msgid "unexpected EOF while looking for `]]'"
msgstr "neočakávaný koniec súboru počas hľadania „]]“"
-#: parse.y:3713
+#: parse.y:3727
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "chyba syntaxe v podmienečnom príkaze: neočakávaný token „%s“"
-#: parse.y:3717
+#: parse.y:3731
msgid "syntax error in conditional expression"
msgstr "chyba syntaxe v podmienečnom príkaze"
-#: parse.y:3795
+#: parse.y:3809
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "neočakávaný token „%s“, očakávalo sa `)'"
-#: parse.y:3799
+#: parse.y:3813
msgid "expected `)'"
msgstr "očakávalo sa `)'"
-#: parse.y:3827
+#: parse.y:3841
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "neočakávaný argument „%s“ podmienečného unárneho operátora"
-#: parse.y:3831
+#: parse.y:3845
msgid "unexpected argument to conditional unary operator"
msgstr "neočakávaný argument podmienečného unárneho operátora"
-#: parse.y:3871
+#: parse.y:3885
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "neočakávaný token „%s“, očakáva sa podmienečný binárny operátor"
-#: parse.y:3875
+#: parse.y:3889
msgid "conditional binary operator expected"
msgstr "očakáva sa podmienečný binárny operátor"
-#: parse.y:3892
+#: parse.y:3906
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "neočakávaný argument „%s“ v podmienečnom binárnom operátore"
-#: parse.y:3896
+#: parse.y:3910
msgid "unexpected argument to conditional binary operator"
msgstr "neočakávaný argument v podmienečnom binárnom operátore"
-#: parse.y:3907
+#: parse.y:3921
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "neočakávaný token „%c“ v podmienečnom príkaze"
-#: parse.y:3910
+#: parse.y:3924
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "neočakávaný token „%s“ v podmienečnom príkaze"
-#: parse.y:3914
+#: parse.y:3928
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "neočakávaný token %d v podmienečnom príkaze"
-#: parse.y:5181
+#: parse.y:5195
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "chyba syntaxe neďaleko neočakávaného tokenu „%s“"
-#: parse.y:5199
+#: parse.y:5213
#, c-format
msgid "syntax error near `%s'"
msgstr "chyba syntaxe neďaleko „%s“"
-#: parse.y:5209
+#: parse.y:5223
msgid "syntax error: unexpected end of file"
msgstr "chyba syntaxe: neočakávaný koniec súboru"
-#: parse.y:5209
+#: parse.y:5223
msgid "syntax error"
msgstr "chyba syntaxe"
-#: parse.y:5271
+#: parse.y:5285
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Na opustenie shellu použite „%s“.\n"
-#: parse.y:5433
+#: parse.y:5447
msgid "unexpected EOF while looking for matching `)'"
msgstr "neočakávaný koniec súboru počas hľadania zodpovedajúceho „)“"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "dokončovanie: funkcia „%s“ nebola nájdená"
msgid "cprintf: `%c': invalid format character"
msgstr "cprintf: „%c“: neplatný formátovací znak"
-#: redir.c:104
+#: redir.c:105
msgid "file descriptor out of range"
msgstr "popisovač súboru mimo rozsahu"
-#: redir.c:146
+#: redir.c:148
#, c-format
msgid "%s: ambiguous redirect"
msgstr "%s: nejednoznačné presmerovanie"
-#: redir.c:150
+#: redir.c:152
#, c-format
msgid "%s: cannot overwrite existing file"
msgstr "%s: nie je možné prepísať existujúci súbor"
-#: redir.c:155
+#: redir.c:157
#, c-format
msgid "%s: restricted: cannot redirect output"
msgstr "%s: ombedzené: nie je možné presmerovať výstup"
-#: redir.c:160
+#: redir.c:162
#, c-format
msgid "cannot create temp file for here-document: %s"
msgstr "nie je možné vytvoriť odkladací súbor pre here-document: %s"
-#: redir.c:515
+#: redir.c:517
msgid "/dev/(tcp|udp)/host/port not supported without networking"
msgstr "/dev/(tcp|udp)/host/port nie je podporovaný bez podpory sietí"
-#: redir.c:992
+#: redir.c:1023
msgid "redirection error: cannot duplicate fd"
msgstr "chyba presmerovania: nie je možné duplikovať fd"
msgid "%c%c: invalid option"
msgstr "%c%c: neplatná voľba"
-#: shell.c:1637
+#: shell.c:1638
msgid "I have no name!"
msgstr "Nemám meno!"
-#: shell.c:1777
+#: shell.c:1778
#, c-format
msgid "GNU bash, version %s-(%s)\n"
msgstr "GNU bash, verzia %s-(%s)\n"
-#: shell.c:1778
+#: shell.c:1779
#, c-format
msgid ""
"Usage:\t%s [GNU long option] [option] ...\n"
"Použitie:\t%s [GNU dlhá voľba] [voľba] ...\n"
"\t%s [GNU dlhá voľba] [voľba] súbor-skriptu ...\n"
-#: shell.c:1780
+#: shell.c:1781
msgid "GNU long options:\n"
msgstr "GNU dlhé voľby:\n"
-#: shell.c:1784
+#: shell.c:1785
msgid "Shell options:\n"
msgstr "Voľby shellu:\n"
-#: shell.c:1785
+#: shell.c:1786
msgid "\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"
msgstr "\t-irsD alebo -c príkaz alebo -O krátka_voľba\t\t(iba vyvolanie)\n"
-#: shell.c:1800
+#: shell.c:1801
#, c-format
msgid "\t-%s or -o option\n"
msgstr "\t-%s alebo -o voľba\n"
-#: shell.c:1806
+#: shell.c:1807
#, c-format
msgid "Type `%s -c \"help set\"' for more information about shell options.\n"
-msgstr "Napísaním „%s -c \"help set\"“ získate viac informácií o voľbách shellu.\n"
+msgstr ""
+"Napísaním „%s -c \"help set\"“ získate viac informácií o voľbách shellu.\n"
-#: shell.c:1807
+#: shell.c:1808
#, c-format
msgid "Type `%s -c help' for more information about shell builtin commands.\n"
-msgstr "Napísaním „%s -c help“ získate viac informácií o vstavaných príkazoch (builtins) shellu.\n"
+msgstr ""
+"Napísaním „%s -c help“ získate viac informácií o vstavaných príkazoch "
+"(builtins) shellu.\n"
-#: shell.c:1808
+#: shell.c:1809
#, c-format
msgid "Use the `bashbug' command to report bugs.\n"
msgstr "Na ohlasovanie chýb použite príkaz „bashbug“.\n"
-#: sig.c:576
+#: sig.c:583
#, c-format
msgid "sigprocmask: %d: invalid operation"
msgstr "sigprocmask: %d: neplatná operácia"
msgid "Unknown Signal #%d"
msgstr "Neznámy signál #%d"
-#: subst.c:1177 subst.c:1298
+#: subst.c:1181 subst.c:1302
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "chybná substitúcia: chýba „%s“ v %s"
-#: subst.c:2450
+#: subst.c:2458
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: nie je možné priradiť zoznam položke poľa"
-#: subst.c:4448 subst.c:4464
+#: subst.c:4456 subst.c:4472
msgid "cannot make pipe for process substitution"
msgstr "nie je možné vytvoriť rúru pre substitúciu procesov"
-#: subst.c:4496
+#: subst.c:4504
msgid "cannot make child for process substitution"
msgstr "nie je možné vytvoriť potomka pre substitúciu procesov"
-#: subst.c:4541
+#: subst.c:4549
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "nie je možné otvoriť pomenovanú rúru %s na čítanie"
-#: subst.c:4543
+#: subst.c:4551
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "nie je možné otvoriť pomenovanú rúru %s na zápis"
-#: subst.c:4561
+#: subst.c:4569
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "nie je možné duplikovať pomenovanú rúru %s ako fd %d"
-#: subst.c:4757
+#: subst.c:4765
msgid "cannot make pipe for command substitution"
msgstr "nie je možné vytvoriť rúru pre substitúciu príkazov"
-#: subst.c:4791
+#: subst.c:4799
msgid "cannot make child for command substitution"
msgstr "nie je možné vytvoriť potomka pre substitúciu príkazov"
-#: subst.c:4808
+#: subst.c:4816
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: nie je možné duplikovať rúru ako fd 1"
-#: subst.c:5310
+#: subst.c:5318
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parameter je null alebo nenastavený"
-#: subst.c:5600
+#: subst.c:5608
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: výraz podreťazca < 0"
-#: subst.c:6646
+#: subst.c:6660
#, c-format
msgid "%s: bad substitution"
msgstr "%s: chybná substitúcia"
-#: subst.c:6722
+#: subst.c:6740
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: nie je možné vykonať priradenie takýmto spôsobom"
-#: subst.c:7441
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "chybná substitúcia: : v reťazci %s chýba uzatvárajúci „`”"
-#: subst.c:8314
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "bez zhody: %s"
msgid "missing `]'"
msgstr "chýba „]“"
-#: trap.c:200
+#: trap.c:201
msgid "invalid signal number"
msgstr "neplatné číslo signálu"
-#: trap.c:323
+#: trap.c:324
#, c-format
msgid "run_pending_traps: bad value in trap_list[%d]: %p"
msgstr "run_pending_traps: chybná hodnota v trap_list[%d]: %p"
-#: trap.c:327
+#: trap.c:328
#, c-format
-msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself"
-msgstr "run_pending_traps: obsluha signálu je SIG_DFL, znovu posielam %d (%s) sebe"
+msgid ""
+"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself"
+msgstr ""
+"run_pending_traps: obsluha signálu je SIG_DFL, znovu posielam %d (%s) sebe"
-#: trap.c:371
+#: trap.c:372
#, c-format
msgid "trap_handler: bad signal %d"
msgstr "trap_handler: chybný signál %d"
-#: variables.c:354
+#: variables.c:358
#, c-format
msgid "error importing function definition for `%s'"
msgstr "chyba pri importe definície funkcie „%s“"
-#: variables.c:732
+#: variables.c:736
#, c-format
msgid "shell level (%d) too high, resetting to 1"
msgstr "úroveň shellu (%d) je príliš vysoká, nastavujem späť na 1"
-#: variables.c:1891
+#: variables.c:1898
msgid "make_local_variable: no function context at current scope"
msgstr "make_local_variable: v aktuálnom rozsahu sa nenachádza kontext funkcie"
-#: variables.c:3120
+#: variables.c:3127
msgid "all_local_variables: no function context at current scope"
msgstr "all_local_variables: v aktuálnom rozsahu sa nenachádza kontext funkcie"
-#: variables.c:3337 variables.c:3346
+#: variables.c:3344 variables.c:3353
#, c-format
msgid "invalid character %d in exportstr for %s"
msgstr "neplatný znak %d v exportstr %s"
-#: variables.c:3352
+#: variables.c:3359
#, c-format
msgid "no `=' in exportstr for %s"
msgstr "žiadne „=“ v exportstr %s"
-#: variables.c:3787
+#: variables.c:3794
msgid "pop_var_context: head of shell_variables not a function context"
msgstr "pop_var_context: hlavička shell_variables nie je kontext funkcie"
-#: variables.c:3800
+#: variables.c:3807
msgid "pop_var_context: no global_variables context"
msgstr "pop_var_context: chýba kontext global_variables"
-#: variables.c:3874
+#: variables.c:3881
msgid "pop_scope: head of shell_variables not a temporary environment scope"
msgstr "pop_scope: hlavička shell_variables nie je dočasný rozsah prostredia"
#: version.c:46
-msgid "Copyright (C) 2008 Free Software Foundation, Inc."
+#, fuzzy
+msgid "Copyright (C) 2009 Free Software Foundation, Inc."
msgstr "Copyright (C) 2008 Free Software Foundation, Inc."
#: version.c:47
-msgid "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n"
-msgstr "Licencia GPLv3+: GNU GPL verzie 3 alebo novšia http://gnu.org/licenses/gpl.html\n"
+msgid ""
+"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl."
+"html>\n"
+msgstr ""
+"Licencia GPLv3+: GNU GPL verzie 3 alebo novšia http://gnu.org/licenses/gpl."
+"html\n"
#: version.c:86
#, c-format
#: xmalloc.c:150
#, c-format
msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)"
-msgstr "xmalloc: %s:%d: nie je možné alokovať %lu bajtov (%lu bajtov alokovaných)"
+msgstr ""
+"xmalloc: %s:%d: nie je možné alokovať %lu bajtov (%lu bajtov alokovaných)"
#: xmalloc.c:152
#, c-format
#: xmalloc.c:174
#, c-format
msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)"
-msgstr "xrealloc: %s:%d: nie je možné realokovať %lu bajtov (%lu bajtov alokovaných)"
+msgstr ""
+"xrealloc: %s:%d: nie je možné realokovať %lu bajtov (%lu bajtov alokovaných)"
#: xmalloc.c:176
#, c-format
msgstr "unalias [-a] názov [názov ...]"
#: builtins.c:51
-msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]"
-msgstr "bind [-lpvsPVS] [-m kláv_mapa] [-f názov_súboru] [-q názov] [-u názov] [-r postup_kláv] [-x postup_kláv:príkaz_shellu] [postup_kláv:funkcia_readline alebo príkaz-readline]"
+msgid ""
+"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-"
+"x keyseq:shell-command] [keyseq:readline-function or readline-command]"
+msgstr ""
+"bind [-lpvsPVS] [-m kláv_mapa] [-f názov_súboru] [-q názov] [-u názov] [-r "
+"postup_kláv] [-x postup_kláv:príkaz_shellu] [postup_kláv:funkcia_readline "
+"alebo príkaz-readline]"
#: builtins.c:54
msgid "break [n]"
#: builtins.c:103
msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]"
-msgstr "fc [-e enázov] [-lnr] [prvý] [posledný] alebo fc -s [vzor=opak] [príkaz]"
+msgstr ""
+"fc [-e enázov] [-lnr] [prvý] [posledný] alebo fc -s [vzor=opak] [príkaz]"
#: builtins.c:107
msgid "fg [job_spec]"
msgstr "help [-ds] [vzor ...]"
#: builtins.c:121
-msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]"
-msgstr "history [-c] [-d ofset] [n] alebo history -anrw [názov_súboru] alebo history -ps arg [arg...]"
+msgid ""
+"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg "
+"[arg...]"
+msgstr ""
+"history [-c] [-d ofset] [n] alebo history -anrw [názov_súboru] alebo history "
+"-ps arg [arg...]"
#: builtins.c:125
msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]"
msgstr "disown [-h] [-ar] [špec_úlohy ...]"
#: builtins.c:132
-msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]"
-msgstr "kill [-s špec_signálu | -n číslo_signálu | -špec_signálu] pid | špec_úlohy ... alebo kill -l [špec_signálu]"
+msgid ""
+"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l "
+"[sigspec]"
+msgstr ""
+"kill [-s špec_signálu | -n číslo_signálu | -špec_signálu] pid | "
+"špec_úlohy ... alebo kill -l [špec_signálu]"
#: builtins.c:134
msgid "let arg [arg ...]"
msgstr "let arg [arg ...]"
#: builtins.c:136
-msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]"
-msgstr "read [-ers] [-a pole] [-d oddeľovač] [-i text] [-n nznakov] [-p výzva] [-t zdržadnie] [-u fd] [názov ...]"
+msgid ""
+"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t "
+"timeout] [-u fd] [name ...]"
+msgstr ""
+"read [-ers] [-a pole] [-d oddeľovač] [-i text] [-n nznakov] [-p výzva] [-t "
+"zdržadnie] [-u fd] [názov ...]"
#: builtins.c:138
msgid "return [n]"
msgstr "case SLOVO in [VZOR [| VZOR]...) PRÍKAZY ;;]... esac"
#: builtins.c:192
-msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi"
-msgstr "if PRÍKAZY; then PRÍKAZY; [ elif PRÍKAZY; then PRÍKAZY; ]... [ else PRÍKAZY; ] fi"
+msgid ""
+"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else "
+"COMMANDS; ] fi"
+msgstr ""
+"if PRÍKAZY; then PRÍKAZY; [ elif PRÍKAZY; then PRÍKAZY; ]... [ else "
+"PRÍKAZY; ] fi"
#: builtins.c:194
msgid "while COMMANDS; do COMMANDS; done"
msgstr "until PRÍKAZY; do PRÍKAZY; done"
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
-msgstr "function názov_funkcie { PRÍKAZY ; } alebo názov_funkcie () { PRÍKAZY ; }"
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
#: builtins.c:200
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgstr ""
+"function názov_funkcie { PRÍKAZY ; } alebo názov_funkcie () { PRÍKAZY ; }"
+
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ PRÍKAZY ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "špec_úlohy [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( výraz ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ výraz ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "premenné - Názvy a významy niektorých premenných shellu"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | adr]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [názov_voľby ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v var] formát [argumenty]"
-#: builtins.c:227
-msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]"
-msgstr "complete [-abcdefgjksuv] [-pr] [-o voľba] [-A operácia] [-G glob_vzor] [-W zoznam_slov] [-F funkcia] [-C príkaz] [-X vzor_filtra] [-P predpona] [-S prípona] [názov ...]"
+#: builtins.c:229
+msgid ""
+"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
+"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
+"[name ...]"
+msgstr ""
+"complete [-abcdefgjksuv] [-pr] [-o voľba] [-A operácia] [-G glob_vzor] [-W "
+"zoznam_slov] [-F funkcia] [-C príkaz] [-X vzor_filtra] [-P predpona] [-S "
+"prípona] [názov ...]"
-#: builtins.c:231
-msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
-msgstr "compgen [-abcdefgjksuv] [-o voľba] [-A operácia] [-G glob_vzor] [-W zoznam_slov] [-F funkcia] [-C príkaz] [-X vzor_filtra] [-P predpona] [-S prípona] [slovo]"
+#: builtins.c:233
+msgid ""
+"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
+"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
+msgstr ""
+"compgen [-abcdefgjksuv] [-o voľba] [-A operácia] [-G glob_vzor] [-W "
+"zoznam_slov] [-F funkcia] [-C príkaz] [-X vzor_filtra] [-P predpona] [-S "
+"prípona] [slovo]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o voľba] [názov ...]"
-#: builtins.c:238
-msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]"
-msgstr "mapfile [-n počet] [-O začiatok] [-s počet] [-t] [-u fd] [-C spätné_volanie] [-c kvantum] [pole]"
+#: builtins.c:240
+msgid ""
+"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n počet] [-O začiatok] [-s počet] [-t] [-u fd] [-C spätné_volanie] "
+"[-c kvantum] [pole]"
+
+#: builtins.c:242
+#, fuzzy
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n počet] [-O začiatok] [-s počet] [-t] [-u fd] [-C spätné_volanie] "
+"[-c kvantum] [pole]"
-#: builtins.c:250
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" -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 ""
"Definovať alebo zobraziť aliasy.\n"
" \tznova použiť\n"
" \n"
" Návratová hodnota:\n"
-" Vráti vždy pravdu ak nebol zadaný NÁZOV, pre ktorý nie je definovaný alias."
+" Vráti vždy pravdu ak nebol zadaný NÁZOV, pre ktorý nie je definovaný "
+"alias."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak nebol zadaný NÁZOV, pre ktorý nie je definovaný alias."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" 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"
" -P Vypíše názvy funkcií a väzby.\n"
" -p Vypíše názvy funkcií a väzby v tvare, ktorý je\n"
" možné znova použiť ako vstup.\n"
-" -S Vypíše klávesové sekvencie, ktoré vyvolávajú makrá a\n"
+" -S Vypíše klávesové sekvencie, ktoré vyvolávajú makrá "
+"a\n"
" ich hodnoty\n"
-" -s Vypíše klávesové sekvencie, ktoré vyvolávajú makrá a\n"
+" -s Vypíše klávesové sekvencie, ktoré vyvolávajú makrá "
+"a\n"
" ich hodnoty\n"
" v tvare, ktorý je možné znova použiť ako vstup.\n"
" -V Vypíše názvy premenných a hodnoty\n"
-" -v Vypíše názvy premenných a hodnoty v tvare, ktorý je\n"
+" -v Vypíše názvy premenných a hodnoty v tvare, ktorý "
+"je\n"
" -q názov-funkcie Zistí, ktoré klávesy vyvolávajú túto funkciu.\n"
-" -u názov-funkcie Zruší väzby všetkých kláves naviazaných na túto funkciu\n"
+" -u názov-funkcie Zruší väzby všetkých kláves naviazaných na túto "
+"funkciu\n"
" možné znova použiť ako vstup.\n"
" -r kláv_sek Odstráni väzbu pre kláv_sek.\n"
" -f súboru Načíta klávesové väzby z SÚBORU.\n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Návratová hodnota:\n"
" Návratová hodnota je 0 ak N nie je väčšie alebo rovné 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak N nie je väčšie alebo rovné 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \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"
" \n"
" Vykoná vstavenú funkciu shellu s argumentami ARG bez vykonania\n"
" vyhľadania príkazu. To sa hodí, keď chcete reimplementovať vstavanú\n"
-" funkciu shellu ako funkciu shellu, ale potrebujete vstavanú funkciu volať\n"
+" funkciu shellu ako funkciu shellu, ale potrebujete vstavanú funkciu "
+"volať\n"
" v rámci vašej funkcie.\n"
" \n"
" Návratová hodnota:\n"
-" Vracia návratový kód vstavanej funkcie shellu alebo 0 ak argument nie je\n"
+" Vracia návratový kód vstavanej funkcie shellu alebo 0 ak argument nie "
+"je\n"
" vstavaná funkcia shellu."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak shell nevykonáva funkciu shellu a EXPR nie je neplatný."
-#: builtins.c:379
+#: builtins.c:383
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.\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"
" \n"
" Zmení aktuálny adresár na ADR. Premenná $HOME je štandardný ADR.\n"
" \n"
-" Premenná CDPATH definuje cesty, v ktorých sa hľadá adresár obsahujúci ADR.\n"
+" Premenná CDPATH definuje cesty, v ktorých sa hľadá adresár obsahujúci "
+"ADR.\n"
" Alternatívne názvy adresárov v CDPATH sú oddelené dvojbodkou (:).\n"
" Prázdny (null) názov adresára zodpovedá aktuálnemu adresáru, t.j. „.“.\n"
" Ak ADR začína lomkou (/), CDPATH sa nepoužije.\n"
" Návratová hodnota:\n"
" Vráti 0 ak bol aktuálny adresár zmenený, inak nenulovú hodnotu."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" Vracia 0 ak nie je zadaná neplatná voľba alebo nie je možné\n"
" prečítať aktuálny adresár."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Návratová hodnota:\n"
" Vždy vráti pravda."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Návratová hodnota:\n"
" Vždy vráti 0."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Návratová hodnota:\n"
" Vždy vráti nepravda."
-#: builtins.c:453
+#: builtins.c:457
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"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu PRÍKAZu alebo zlyhá ak nenájde PRÍKAZ."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" 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.\n"
" \n"
" Exit Status:\n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" \n"
" Zastaralé. Pozri „help declare“."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" Vráti 0 ak nebola zadaná neplatná voľba, nevyskytla sa chyba a\n"
" shell práve nevykonáva funkciu."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak sa nevyskytla sa chyba pri zápise."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak sa nevyskytla sa chyba pri zápise."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak NÁZOV nie je vstavaná funkcia shellu a nevyskytla sa chyba."
-#: builtins.c:610
+#: builtins.c:614
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"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu príkazu alebo 0 ak je príkaz prázdny."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" Vráti 0 ak je voľba nájdená; zlyhá po dosiahnutí konca reťazca volieb\n"
" alebo ak sa vyskytne chyba."
-#: builtins.c:664
+#: builtins.c:668
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"
" -c\t\texecute COMMAND with an empty environment\n"
" -l\t\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 ""
"Nahradiť shell zadaným príkazom.\n"
" \n"
" Vráti 0 ak sa nestane, že PRÍKAZ nebol nájdený a nevyskytne sa chyba\n"
" presmerovania."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" Ukončí shell s návratovou hodnotou N. Ak sa N vynechá, návratová\n"
" hodnota sa nastaví podľa stavu posledného vykonaného príkazu."
-#: builtins.c:694
+#: builtins.c:698
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 ""
"Ukončiť login shell.\n"
" Ukončí login shell s návratovou hodnotou N. Vráti chybu ak nie je\n"
" spustený v login shelli."
-#: builtins.c:704
+#: builtins.c:708
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"
" the last command.\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 ""
"Zobraziť alebo vykonať príkazy z histórie.\n"
" \n"
" S formátom „fc -s [pat=rep ...] [príkaz]“ sa znova vykoná uvedený\n"
" príkaz po vykonaní náhrady OLD=NEW.\n"
" \n"
-" Užitočný alias, ktorý sa dá s týmto použiť, je r='fc -s', takže napísaním\n"
-" „r cc“ spustíte posledný príkaz začínajúci „cc“ a napísaním „r“ opätovne\n"
+" Užitočný alias, ktorý sa dá s týmto použiť, je r='fc -s', takže "
+"napísaním\n"
+" „r cc“ spustíte posledný príkaz začínajúci „cc“ a napísaním „r“ "
+"opätovne\n"
" vykonáte posledný príkaz.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 alebo stav vykonaného príkazu; nenulovú hodnotu ak sa vyskytne\n"
" chyba."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Stav príkazu umiestneného do popredia; nenulovú hodnotu ak sa vyskytne\n"
" chyba."
-#: builtins.c:749
+#: builtins.c:753
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"
" Návratová hodnota:\n"
" Vráti 0 ak nie je riadenie úloh vypnuté a nevyskytne sa chyba."
-#: builtins.c:763
+#: builtins.c:767
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\t\tforget the remembered location of each NAME\n"
" \n"
" Voľby:\n"
" -d\tzabudnúť zapamätanné umiestnenia každého NÁZVU\n"
-" -l\tzobraziť vo formáte, ktoré je možné znova použiť ako \t\tvstup\n"
+" -l\tzobraziť vo formáte, ktoré je možné znova použiť ako \t"
+"\tvstup\n"
" -p cesta\tpoužiť CESTU ako plnú cestu k NÁZVU\n"
" -r\tzabudnúť všetky zapamätané umiestnenia\n"
" -t\tvypísať zapamätané umiestnenia každého NÁZVU, pred\n"
" Vráti 0 ak sa nestalo, že NÁZOV nebol nájdený a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
" PATTERN\tPattern specifiying 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 ""
"Zobraziť informácie o vstavaných príkazoch.\n"
" \n"
" Vráti 0 ak sa nestalo, že VZOR nebol nájdený a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" \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."
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba.\n"
" Ak je použitá voľba -x, vráti sa návratová hodnota PRÍKAZu."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná JOBSPEC."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Evaluate each ARG as an arithmetic expression. Evaluation is done in\n"
" fixed-width integers with no check for overflow, though division by 0\n"
" is trapped and flagged as an error. The following list of operators is\n"
-" grouped into levels of equal-precedence operators. The levels are listed\n"
+" 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"
" Návratová hodnota:\n"
" Ak sa posledný ARG vyhodnotí na 0, let vráti 1; 0 inak sa vráti 0."
-#: builtins.c:962
+#: builtins.c:966
+#, fuzzy
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"
+" the last NAME. Only the characters found in $IFS are recognized as "
+"word\n"
" delimiters.\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"
" \t\tattempting to read\n"
" -r\t\tdo not allow backslashes to escape any characters\n"
" -s\t\tdo not echo input coming from a terminal\n"
-" -t timeout\ttime out and return failure if a complete line of input is\n"
+" -t timeout\ttime out and return failure if a complete line of input "
+"is\n"
" \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n"
" \t\tvariable is the default timeout. TIMEOUT may be a\n"
-" \t\tfractional number. The exit status is greater than 128 if\n"
-" \t\tthe timeout is exceeded\n"
+" \t\tfractional number. If TIMEOUT is 0, read returns success only\n"
+" \t\tif input is available on the specified file descriptor. The\n"
+" \t\texit status is greater than 128 if the timeout is exceeded\n"
" -u fd\t\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"
+" The return code is zero, unless end-of-file is encountered, read times "
+"out,\n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
"Načítať riadok zo štandardného vstupu a rozdeliť ho do polí.\n"
" \n"
" Zo štandardného vstupu sa načíta jeden riadok. Riadok sa rozdelí do\n"
-" polí ako pri delení na slová a prvé slovo sa priradí prvému NÁZVU, druhé\n"
+" polí ako pri delení na slová a prvé slovo sa priradí prvému NÁZVU, "
+"druhé\n"
" slovo druhému NÁZVU atď. až zvyšné slová sa priradia poslednému\n"
" NÁZVU. Iba znaky, ktoré sa nachádzajú v $IFS sa považujú za\n"
" oddeľovače slov.\n"
" REPLY.\n"
" \n"
" Voľby:\n"
-" -a pole\tvšetky načítané slová sa priradia postupne indexom poľa POLE, počínajúc nulou.\n"
+" -a pole\tvšetky načítané slová sa priradia postupne indexom poľa POLE, "
+"počínajúc nulou.\n"
" -d\tpokračovanie čítania až kým sa nevyskytne prvý znak znak DELIM\n"
" namiesto znaku nového riadka.\n"
" -e a shell je interaktívny, na načítanie riadka sa použije readline.\n"
" Vráti 0 ak sa nenarazí pri čítaní nakoniec súboru, nevyprší čas na\n"
" čítanie a ako argument -u nebol je zadaný neplatný popisovač."
-#: builtins.c:1001
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Návratová hodnota:\n"
" Vráti N alebo zlyhá ak shell nevykonáva funkciu či skript."
-#: builtins.c:1014
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" 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"
" history zapnúť históriu príkazov\n"
" ignoreeof shell sa neukončí po načítaní znaku EOF\n"
" interactive-comments\n"
-" umožní výskyt komentárov v interaktívnych príkazoch\n"
+" umožní výskyt komentárov v interaktívnych "
+"príkazoch\n"
" keyword rovnaké ako -k\n"
" monitor rovnaké ako -m\n"
" noclobber rovnaké ako -C\n"
" posledného príkazu, ktorý skončil s nenulovou\n"
" hodnotou, alebo nula ak žiadny príkaz nevrátil\n"
" nenulovú hodnotu\n"
-" posix zmeniť správanie bash, kde sa štandardné správanie\n"
-" líši od štandardu 1003.2 tak, aby mu zodpovedalo\n"
+" posix zmeniť správanie bash, kde sa štandardné "
+"správanie\n"
+" líši od štandardu 1003.2 tak, aby mu "
+"zodpovedalo\n"
" privileged rovnaké ako -p\n"
" verbose rovnaké ako -v\n"
" vi použiť rozhranie na úpravu príkazového riadka\n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba."
-#: builtins.c:1096
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" -f\ttreat each NAME as a shell function\n"
" -v\ttreat each NAME as a shell variable\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"
" Vráti 0 ak sa nestalo, že je NÁZOV iba na čítanie a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:1116
+#: builtins.c:1121
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"
" Vráti 0 ak sa nestalo, že je NÁZOV neplatný a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:1135
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
msgstr ""
"Označiť premenné shellu ako nemeniteľné.\n"
" \n"
-" Označí každý NÁZOV ako len na čítanie (atribút readonly); hodnoty týchto\n"
+" Označí každý NÁZOV ako len na čítanie (atribút readonly); hodnoty "
+"týchto\n"
" NÁZVOV nie je možné ďalej meniť priradením. Ak je zadaná HODNOTA,\n"
" pred označením ako readonly priradiť premenej HODNOTU.\n"
" \n"
" Vráti 0 ak sa nestalo, že je NÁZOV neplatný a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:1156
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak sa nestalo, že je N záporné alebo väčšie ako $#."
-#: builtins.c:1168 builtins.c:1183
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" Vráti návratovú hodnotu posledného príkazu v SÚBORe; zlyhá ak nie je\n"
" možné SÚBOR načítať."
-#: builtins.c:1199
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak sa nestalo, že je vypnuté riadenie úloh a nevyskytla sa chyba."
-#: builtins.c:1215
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" -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"
" 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"
" -w SÚBOR Pravda ak je pre vás súbor zapisovateľný.\n"
" -x SÚBOR Pravda ak je pre vás súbor vykonateľný.\n"
" -O SÚBOR Pravda ak ste účinným vlastníkom súboru.\n"
-" -G SÚBOR Pravda ak je vaša skupina účinným vlastníkom súboru.\n"
+" -G SÚBOR Pravda ak je vaša skupina účinným vlastníkom "
+"súboru.\n"
" -N SÚBOR Pravda ak bol súbor od posledného čítania zmenený.\n"
" \n"
" SÚBOR1 -nt SÚBOR2 Pravda ak je SÚBOR1 novší ako SÚBOR2 (podľa\n"
" REŤAZEC1 != REŤAZEC2\n"
" Pravda ak sa reťazce nerovnajú.\n"
" REŤAZEC1 < REŤAZEC2\n"
-" Pravda ak je REŤAZEC1 pre REŤAZCOM2 v lexikografickom poradí.\n"
+" Pravda ak je REŤAZEC1 pre REŤAZCOM2 v lexikografickom "
+"poradí.\n"
" REŤAZEC1 > REŤAZEC2\n"
-" Pravda ak je REŤAZEC1 po REŤAZCI2 v lexikografickom poradí.\n"
+" Pravda ak je REŤAZEC1 po REŤAZCI2 v lexikografickom "
+"poradí.\n"
" \n"
" Iné operátory:\n"
" \n"
" Vráti 0 ak VÝR vyhodnotí ako pravdivý; zlyhá ako sa VÝR vyhodnotí\n"
" ako nepravdivý alebo je zadaný neplatný argument."
-#: builtins.c:1291
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Toto je synonymum vsatavanej funkcie „test“, ale posledný\n"
" argument musí byť literál „]“, ktorý uzatvára otvárajúcu „[“."
-#: builtins.c:1300
+#: builtins.c:1305
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"
" Návratová hodnota:\n"
" Vždy vráti 0."
-#: builtins.c:1312
+#: builtins.c:1317
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"
" ARG is a command to be read and executed when the shell receives the\n"
" value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n"
" shell and by the commands it invokes.\n"
" \n"
-" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n"
+" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. "
+"If\n"
" a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\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 signal.\n"
" \n"
" Options:\n"
" -l\tprint a list of signal names and their corresponding numbers\n"
" -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n"
" \n"
-" Each SIGNAL_SPEC is either a signal name in <signal.h> or a signal number.\n"
+" Each SIGNAL_SPEC is either a signal name in <signal.h> 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 ""
"Zachytiť signály a iné udalosti.\n"
" \n"
-" Definuje a aktivuje spustenie obsluhy udalosti, keď shell dostane signál SIGNAL_SPEC alebo iných podmienok.\n"
+" Definuje a aktivuje spustenie obsluhy udalosti, keď shell dostane "
+"signál SIGNAL_SPEC alebo iných podmienok.\n"
" \n"
" Príkaz ARG sa načíta a vykoná, keď shell dostane signál(y) SIGNAL_SPEC.\n"
" Ak ARG chýba (a je uvedený jediný SIGNAL_SPEC) alebo je „-“,\n"
" \n"
" Každý SIGNAL_SPEC je buď názov signálu ako v <signal.h> alebo číslo\n"
" signálu. V názvoch signálov sa nerozlišuje veľkosť písmen a predpona\n"
-" SIG je nepovinná. Signál je možné shellu poslať príkazom „kill -signal $$“.\n"
+" SIG je nepovinná. Signál je možné shellu poslať príkazom „kill -signal $"
+"$“.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak sa nestalo, že je SIGSPEC neplatný a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:1344
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" 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 ""
"Zobraziť informácie o type príkazu.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak boli nájdené všetky NÁZVY; zlyhá ak nie."
-#: builtins.c:1375
+#: builtins.c:1380
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"
" \n"
" Ak je zadaný LIMIT, je to nová hodnota zadaného prostriedku;\n"
" špeciálne hodnoty LIMIT sú „soft“, „hard“ a „unlimited“, ktoré\n"
-" znamenajú aktuálny mäkký limit, aktuálny tvrdý limit resp. žiadny limit.\n"
+" znamenajú aktuálny mäkký limit, aktuálny tvrdý limit resp. žiadny "
+"limit.\n"
" Inak sa vypíše aktuálna hodnota zadaného prostriedku.\n"
" Ak nie je zadaná žiada voľba, predpokladá sa -f.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:1420
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Vráti 0 ak sa nestalo, že je REŽIM neplatný a nebola zadaná\n"
" neplatná voľba."
-#: builtins.c:1440
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" Waits for the process identified by 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 a job specification, waits for all processes\n"
+" status is zero. If ID is a a job specification, waits for all "
+"processes\n"
" in the job's pipeline.\n"
" \n"
" Exit Status:\n"
-" Returns the status of ID; fails if ID is invalid or an invalid option is\n"
+" Returns the status of ID; fails if ID is invalid or an invalid option "
+"is\n"
" given."
msgstr ""
"Čakať na dokončenie úlohy a vrátiť návratovú hodnotu.\n"
" \n"
-" Počká na proces s identifikátorom ID, čo môže byť PID alebo špecifikácia\n"
-" úlohy a oznámi stav jeho ukončenia. Ak nie je ID zadaný, počká na všetky\n"
+" Počká na proces s identifikátorom ID, čo môže byť PID alebo "
+"špecifikácia\n"
+" úlohy a oznámi stav jeho ukončenia. Ak nie je ID zadaný, počká na "
+"všetky\n"
" momentálne aktívne detské procesy vo fronte úloh.\n"
" \n"
" Návratová hodnota:\n"
" Vráti stav ID; zlyhá ak je ID neplatný alebo bola zadaná\n"
" neplatná voľba."
-#: builtins.c:1458
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" and the return code is zero. PID must be a process ID.\n"
" \n"
" Exit Status:\n"
-" Returns the status of ID; fails if ID is invalid or an invalid option is\n"
+" Returns the status of ID; fails if ID is invalid or an invalid option "
+"is\n"
" given."
msgstr ""
"Čakať na ukončenie zadaného procesu a vypísať jeho návratovú hodnotu.\n"
" Vráti stav ID; zlyhá ak je ID neplatný alebo bola zadaná neplatná\n"
" voľba."
-#: builtins.c:1473
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1487
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1505
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1526
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" Návratová hodnota:\n"
" Návratová hodnota je návratová hodnota RÚRY."
-#: builtins.c:1543
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1555
+#: builtins.c:1560
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"
msgstr ""
"Vykonať príkazy na základe podmienky.\n"
" \n"
-" Vykoná sa zoznam „if PRÍKAZY“. Ak je jeho návratová hodnota nula, vykoná\n"
+" Vykoná sa zoznam „if PRÍKAZY“. Ak je jeho návratová hodnota nula, "
+"vykoná\n"
" sa zoznam „then PRÍKAZY“. Inak sa postupne vykoná každý zoznam\n"
-" „elif PRÍKAZY“ a ak je jeho návratová hodnota nula, vykoná sa zodpovedajúci\n"
-" zoznam „then PRÍKAZY“ a príkaz if skončí. Inak sa vykoná „else PRÍKAZY“,\n"
-" ak je prítomný. Návratová hodnota celej konštrukcie je návratová hodnota\n"
+" „elif PRÍKAZY“ a ak je jeho návratová hodnota nula, vykoná sa "
+"zodpovedajúci\n"
+" zoznam „then PRÍKAZY“ a príkaz if skončí. Inak sa vykoná „else "
+"PRÍKAZY“,\n"
+" ak je prítomný. Návratová hodnota celej konštrukcie je návratová "
+"hodnota\n"
" posledného vykonaného príkazu alebo nula ak sa žiadna podmienka\n"
" nevyhodnotila na pravdu.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1572
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1584
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1596
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
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"
msgstr ""
"Definovať funkciu shellu.\n"
" \n"
-" Vytvorí funkciu shellu NÁZOV. Keď sa spustí ako jednoduchý príkaz, NÁZOV\n"
-" spustí PRÍKAZy v kontexte vulajúceho shellu. Keď sa spustí v tvare NÁZOV,\n"
-" argumenty sa odovzdajú funkcii ako $1...$n a názov funkcie je $FUNCNAME.\n"
+" Vytvorí funkciu shellu NÁZOV. Keď sa spustí ako jednoduchý príkaz, "
+"NÁZOV\n"
+" spustí PRÍKAZy v kontexte vulajúceho shellu. Keď sa spustí v tvare "
+"NÁZOV,\n"
+" argumenty sa odovzdajú funkcii ako $1...$n a názov funkcie je "
+"$FUNCNAME.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak sa nestalo, že je NÁZOV iba na čítanie."
-#: builtins.c:1610
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu posledného vykonaného príkazu."
-#: builtins.c:1622
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Návratová hodnota:\n"
" Vráti návratovú hodnotu obnovenej úlohy."
-#: builtins.c:1637
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 1 ak sa VÝRAZ vyhodnotí na 0; inak vráti 0."
-#: builtins.c:1649
+#: builtins.c:1668
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"
" \n"
" \t( VÝRAZ )\tVracia hodnoru výrazu VÝRAZ\n"
" \t! VÝRAZ\tPravdivý, ak je VÝRAZ nepravdivý; inak pravdivý\n"
-" \tVÝR1 && VÝR2\tPravdivý ak je VÝR1 a zároveň VÝR2 pravdivý; inak nepravdivý\n"
-" \tVÝR1 || VÝR2\tPravdivý ak je VÝR1 alebo VÝR2 pravdivý; inak nepravdivý\n"
+" \tVÝR1 && VÝR2\tPravdivý ak je VÝR1 a zároveň VÝR2 pravdivý; inak "
+"nepravdivý\n"
+" \tVÝR1 || VÝR2\tPravdivý ak je VÝR1 alebo VÝR2 pravdivý; inak "
+"nepravdivý\n"
" \n"
" Ak sú použité operátory „==“ a „!=“, reťazec napravo od operátora\n"
" sa použije ako vzor a vykoná sa hľadanie zhody reťazcov. Operátory\n"
" Návratová hodnota:\n"
" Vráti 0 alebo 1 v závislosti na hodnote VÝRAZu."
-#: builtins.c:1675
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" HISTIGNORE\tBodkočiarkami oddelený zoznam vzoriek, ktoré\n"
" \t\tsa používajú na rozhodovanie, či sa príkaz uloží do histórie.\n"
-#: builtins.c:1732
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" Vráti 0 ak nebol zadaný neplatný argument a nevyskytla sa\n"
" chyba pri zmene adresára."
-#: builtins.c:1766
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" Vráti 0 ak nebol zadaný neplatný argument a nevyskytla sa\n"
" chyba pri zmene adresára."
-#: builtins.c:1796
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" \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.\n"
" \n"
" Exit Status:\n"
" Návratová hodnota:\n"
" Vráti 0 ak nebol zadaný neplatný argument a nevyskytla sa chyba."
-#: builtins.c:1825
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" Change the setting of each shell option OPTNAME. Without any option\n"
-" arguments, list all shell options with an indication of whether or not each\n"
+" arguments, list all shell options with an indication of whether or not "
+"each\n"
" is set.\n"
" \n"
" Options:\n"
" Vráti 0 ak je OPTNAME zapnuté; zlyhá ak bola zadaná\n"
" neplatná voľba alebo OPTNAME je vypnuté."
-#: builtins.c:1846
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" -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 specifications described in printf(1)\n"
+" In addition to the standard format specifications described in printf"
+"(1)\n"
" and 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"
" \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 ""
"printf formátuje a vypisuje ARGUMENTY podľa FORMÁTu.\n"
" \n"
-" FORMÁT je reťazec znakov, ktorý obsahuje tri typy objektov: čisté znaky,\n"
+" FORMÁT je reťazec znakov, ktorý obsahuje tri typy objektov: čisté "
+"znaky,\n"
" ktoré sa jednoducho skopírujú na štandardný výstup, únikové klauzuly,\n"
" ktoré sa nahradia zodpovedajúcim výstupom a skopírujú na štandardný\n"
" výstup a špecifikácie formátu, z ktorých každá spôsobí vypísanie\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba pri\n"
" zápise či priradení."
-#: builtins.c:1873
+#: builtins.c:1892
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"
-" are supplied, existing completion specifications are printed in a way that\n"
+" For each NAME, specify how arguments are to be completed. If no "
+"options\n"
+" are supplied, existing completion specifications are printed in a way "
+"that\n"
" allows them to be reused as input.\n"
" \n"
" Options:\n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:1896
+#: builtins.c:1915
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 supplied, matches against\n"
+" completions. If the optional WORD argument is supplied, matches "
+"against\n"
" WORD are generated.\n"
" \n"
" Exit Status:\n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba."
-#: builtins.c:1911
+#: builtins.c:1930
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 begin executed. If no OPTIONs are givenm, 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 begin executed. If no OPTIONs are givenm, "
+"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"
" Vráti 0 ak nebola zadaná neplatná voľba a NÁZOV nemá definovanú\n"
" špecifikáciu dopĺňania."
-#: builtins.c:1939
+#: builtins.c:1958
+#, fuzzy
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
-" Read lines from the standard input into the array variable ARRAY, or from\n"
-" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n"
+" Read lines from the standard input into the array variable ARRAY, or "
+"from\n"
+" file descriptor FD if the -u option is supplied. The variable MAPFILE "
+"is\n"
" the default ARRAY.\n"
" \n"
" Options:\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\t\tRemove a trailing newline from each line read.\n"
-" -u fd\t\tRead lines from file descriptor FD instead of the standard input.\n"
+" -u fd\t\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 CALLBACK.\n"
+" -c quantum\tSpecify the number of lines read between each call to "
+"CALLBACK.\n"
" \n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\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 invald option is given or ARRAY is readonly."
+" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
"Načítať riadky zo súboru do premennej poľa.\n"
" \n"
" MAPFILE\n"
" \n"
" Voľby:\n"
-" -n počet\tSkopírovať najviac POČET riadkov. Ak je POČER 0, všetky riadky.\n"
+" -n počet\tSkopírovať najviac POČET riadkov. Ak je POČER 0, všetky "
+"riadky.\n"
" -O začiatok\tZačať priraďovanie položiek POĽA na indexe ZAČIATOK.\n"
" \t\tPredvolený index je 0.\n"
" -s počet\tIgnorovať prvých prečítaných POČET riadkov.\n"
" -t\t\tOdstrániť znak nového riadka z konca každého načítaného riadka.\n"
" -u fd\t\tNačítať riadky z popisovača FD namiest štandardného vstupu.\n"
-" -C callback\tVyhodnotiť CALLBACK po prečítaní každých QUANTUM riadkov.\n"
+" -C callback\tVyhodnotiť CALLBACK po prečítaní každých QUANTUM "
+"riadkov.\n"
" -c quantum\tUrčuje počet riadkov, ktoré sa majú prečítať pred každým\n"
" \t\tvolaním CALLBACK.\n"
" \n"
" Návratová hodnota:\n"
" Vráti 0 ak nebola zadaná neplatná voľba a POLE nie je len na čítanie."
-#~ msgid "Returns the context of the current subroutine call."
-#~ msgstr "Vracia kontext aktuálneho volania podprocedúry."
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
#~ msgid " "
#~ msgstr " "
#~ msgid "can be used used to provide a stack trace."
#~ msgstr "je možné využiť pre trasovanie zásobníka."
-#~ msgid "The value of EXPR indicates how many call frames to go back before the"
+#~ msgid ""
+#~ "The value of EXPR indicates how many call frames to go back before the"
#~ msgstr "Hodnota VÝR určuje o koľko rámcov volania sa vrátiť"
#~ msgid "current one; the top frame is frame 0."
#~ msgid "back up through the list with the `popd' command."
#~ msgstr "sa môžete dostať príkazom „popd“."
-#~ msgid "The -l flag specifies that `dirs' should not print shorthand versions"
+#~ msgid ""
+#~ "The -l flag specifies that `dirs' should not print shorthand versions"
#~ msgstr "Voľba -l hovorí, že „dirs“ by nemal vypísovať skrátené verzie"
-#~ msgid "of directories which are relative to your home directory. This means"
-#~ msgstr "adresárov, ktoré sa vzťahujú k vášmu domovskému adresáru. To znamená,"
+#~ msgid ""
+#~ "of directories which are relative to your home directory. This means"
+#~ msgstr ""
+#~ "adresárov, ktoré sa vzťahujú k vášmu domovskému adresáru. To znamená,"
#~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag"
#~ msgstr "že „~/bin“ sa može zobraziť ako „/homes/bfox/bin“. Voľba -v"
#~ msgid "causes `dirs' to print the directory stack with one entry per line,"
-#~ msgstr "hovorí, aby „dirs“ vypísal zásobník adresárov s jednou položkou na riadok,"
+#~ msgstr ""
+#~ "hovorí, aby „dirs“ vypísal zásobník adresárov s jednou položkou na riadok,"
-#~ msgid "prepending the directory name with its position in the stack. The -p"
+#~ msgid ""
+#~ "prepending the directory name with its position in the stack. The -p"
#~ msgstr "a pred názov adresára vypísal jeho polohu v zásobníku. Voľba -p"
#~ msgid "flag does the same thing, but the stack position is not prepended."
#~ msgstr "robí presne to isté, len sa nepridáva poloha v zásobníku."
-#~ msgid "The -c flag clears the directory stack by deleting all of the elements."
+#~ msgid ""
+#~ "The -c flag clears the directory stack by deleting all of the elements."
#~ msgstr "Voľba -c čistí zásobník adresárov odstránením všetkých prvkov."
-#~ msgid "+N displays the Nth entry counting from the left of the list shown by"
+#~ msgid ""
+#~ "+N displays the Nth entry counting from the left of the list shown by"
#~ msgstr "+N zobrazí N-tú položku zľava zoznamu zobrazenú pomocou"
#~ msgid " dirs when invoked without options, starting with zero."
#~ msgstr " dirs vyvolaného bez volieb, počínajúc nulou."
-#~ msgid "-N displays the Nth entry counting from the right of the list shown by"
+#~ msgid ""
+#~ "-N displays the Nth entry counting from the right of the list shown by"
#~ msgstr "+N zobrazí N-tú položku sprava zoznamu zobrazenú pomocou"
#~ msgid "Adds a directory to the top of the directory stack, or rotates"
#~ msgid " removes the last directory, `popd -1' the next to last."
#~ msgstr " odstráni posledný adresár, „popd -1“ predposledný."
-#~ msgid "-n suppress the normal change of directory when removing directories"
+#~ msgid ""
+#~ "-n suppress the normal change of directory when removing directories"
#~ msgstr "-n potlačiť normálnu zmenu adresára pri odoberaní adresárov"
#~ msgid " from the stack, so only the stack is manipulated."
#~ msgid ""
#~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell\n"
#~ " function called `ls', and you wish to call the command `ls', you can\n"
-#~ " say \"command ls\". If the -p option is given, a default value is used\n"
-#~ " for PATH that is guaranteed to find all of the standard utilities. If\n"
-#~ " the -V or -v option is given, a string is printed describing COMMAND.\n"
+#~ " say \"command ls\". If the -p option is given, a default value is "
+#~ "used\n"
+#~ " for PATH that is guaranteed to find all of the standard utilities. "
+#~ "If\n"
+#~ " the -V or -v option is given, a string is printed describing "
+#~ "COMMAND.\n"
#~ " The -V option produces a more verbose description."
#~ msgstr ""
#~ "Spustí PRÍKAZ s ARG ignorujúc funkcie shellu. Ak máte funkciu shellu\n"
#~ " \n"
#~ " -a\tto make NAMEs arrays (if supported)\n"
#~ " -f\tto select from among function names only\n"
-#~ " -F\tto display function names (and line number and source file name if\n"
+#~ " -F\tto display function names (and line number and source file name "
+#~ "if\n"
#~ " \tdebugging) without definitions\n"
#~ " -i\tto make NAMEs have the `integer' attribute\n"
#~ " -r\tto make NAMEs readonly\n"
#~ " and definition. The -F option restricts the display to function\n"
#~ " name only.\n"
#~ " \n"
-#~ " Using `+' instead of `-' turns off the given attribute instead. When\n"
+#~ " Using `+' instead of `-' turns off the given attribute instead. "
+#~ "When\n"
#~ " used in a function, makes NAMEs local, as with the `local' command."
#~ msgstr ""
#~ "Deklaruje premenné a/alebo im dodá argumenty. Ak nie sú zadané\n"
#~ " \n"
#~ " -a\tna vytvorenie polí NÁZVOV (ak sú podporované)\n"
#~ " -f\tna výber iba spomedzi názvov funkcií\n"
-#~ " -F\tna zobrazenie názvov funkcií (a čísla riadku a zdrojového súboru\n"
+#~ " -F\tna zobrazenie názvov funkcií (a čísla riadku a zdrojového "
+#~ "súboru\n"
#~ " \tpre ladenie) bez definícií\n"
#~ " -i\taby mali NÁZVY atribút „integer“\n"
#~ " -r\taby boli NÁZVY len na čítanie\n"
#~ " -t\taby mali NÁZVY atribút „trace“\n"
#~ " -x\taby sa NÁZVY exportovali\n"
#~ " \n"
-#~ " Premenné s atribútom integer vykonávajú aritmetické vyhodnocovanie (pozri\n"
+#~ " Premenné s atribútom integer vykonávajú aritmetické vyhodnocovanie "
+#~ "(pozri\n"
#~ " „let“) po priradení výrazu premennej.\n"
#~ " \n"
#~ " Pri zobrazovaní hodnôt premenných, -f zobrazí názov a definíciu\n"
#~ " je možné použiť iba v rámci funkcie; spôsobí obmedzenie viditeľnosti\n"
#~ " premennej NÁZOV iba na túto funkciu a jej potomkov."
-#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed."
-#~ msgstr "Vypíše ARGumenty. S voľbou -n bude posledný znak nového riadka potlačený."
+#~ msgid ""
+#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed."
+#~ msgstr ""
+#~ "Vypíše ARGumenty. S voľbou -n bude posledný znak nového riadka potlačený."
#~ msgid ""
#~ "Enable and disable builtin shell commands. This allows\n"
#~ " previously loaded with -f. If no non-option names are given, or\n"
#~ " the -p option is supplied, a list of builtins is printed. The\n"
#~ " -a option means to print every builtin with an indication of whether\n"
-#~ " or not it is enabled. The -s option restricts the output to the POSIX.2\n"
-#~ " `special' builtins. The -n option displays a list of all disabled builtins."
+#~ " or not it is enabled. The -s option restricts the output to the "
+#~ "POSIX.2\n"
+#~ " `special' builtins. The -n option displays a list of all disabled "
+#~ "builtins."
#~ msgstr ""
#~ "Zapína a vypína vstavené (builtin) príkazy shellu. Toto vám umožní\n"
#~ " použiť príkaz s rovnakým názvom ako má vstavaný príkaz shellu\n"
#~ " vstavaný príkaz, ktorý bol predtým načítaný pomocou -f. Ak nie sú\n"
#~ " zadané žiadne názvy okrem volieb alebo je zadaná voľba -p , vypíše\n"
#~ " sa zoznam vstavaných príkazov. Voľba -a znamená, že sa má vypísať\n"
-#~ " každý vstavaný príkaz a či je zapnutý alebo vypnutý. Voľba -s obmedzí\n"
-#~ " výstup na POSIX.2 „special“ vstavané príkazy. Voľba -n zobrazí zoznam\n"
+#~ " každý vstavaný príkaz a či je zapnutý alebo vypnutý. Voľba -s "
+#~ "obmedzí\n"
+#~ " výstup na POSIX.2 „special“ vstavané príkazy. Voľba -n zobrazí "
+#~ "zoznam\n"
#~ " všetkých vypnutých vstavaných príkazov."
-#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)."
+#~ msgid ""
+#~ "Read ARGs as input to the shell and execute the resulting command(s)."
#~ msgstr "Prečíta ARGumenty ako vstup do shellu a vykoná výsledné príkazy."
#~ msgid ""
#~ " remembered. If the -p option is supplied, PATHNAME is used as the\n"
#~ " full pathname of NAME, and no path search is performed. The -r\n"
#~ " option causes the shell to forget all remembered locations. The -d\n"
-#~ " option causes the shell to forget the remembered location of each NAME.\n"
+#~ " option causes the shell to forget the remembered location of each "
+#~ "NAME.\n"
#~ " If the -t option is supplied the full pathname to which each NAME\n"
-#~ " corresponds is printed. If multiple NAME arguments are supplied with\n"
-#~ " -t, the NAME is printed before the hashed full pathname. The -l option\n"
-#~ " causes output to be displayed in a format that may be reused as input.\n"
-#~ " If no arguments are given, information about remembered commands is displayed."
+#~ " corresponds is printed. If multiple NAME arguments are supplied "
+#~ "with\n"
+#~ " -t, the NAME is printed before the hashed full pathname. The -l "
+#~ "option\n"
+#~ " causes output to be displayed in a format that may be reused as "
+#~ "input.\n"
+#~ " If no arguments are given, information about remembered commands is "
+#~ "displayed."
#~ msgstr ""
-#~ "Pre každý NÁZOV sa určí a zapamätá plná cesta k príkazu. Ak je daná voľba -p\n"
-#~ " CESTA sa použije ako plná cesta k NÁZOV a nevykoná sa hľadanie cesty.\n"
+#~ "Pre každý NÁZOV sa určí a zapamätá plná cesta k príkazu. Ak je daná voľba "
+#~ "-p\n"
+#~ " CESTA sa použije ako plná cesta k NÁZOV a nevykoná sa hľadanie "
+#~ "cesty.\n"
#~ " Voľba -r spôsobí, že shell zabudne všetky zapamätané miesta.\n"
#~ " Voľba -d spôsobí, že shell zabudne zapamätané miesto každého NÁZVU.\n"
#~ " Ak je zadaná voľba -t, vypíše sa plná cesta zodpovedajúca každému\n"
#~ msgid ""
#~ "By default, removes each JOBSPEC argument from the table of active jobs.\n"
-#~ " If the -h option is given, the job is not removed from the table, but is\n"
+#~ " If the -h option is given, the job is not removed from the table, but "
+#~ "is\n"
#~ " marked so that SIGHUP is not sent to the job if the shell receives a\n"
-#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove all\n"
-#~ " jobs from the job table; the -r option means to remove only running jobs."
+#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove "
+#~ "all\n"
+#~ " jobs from the job table; the -r option means to remove only running "
+#~ "jobs."
#~ msgstr ""
#~ "Štandardne odstráni argument JOBSPEC z tabuľky aktívnych úloh.\n"
-#~ " Ak je uvedená voľba „-h“, úloha sa neodstráni z tabuľky, ale označí sa\n"
+#~ " Ak je uvedená voľba „-h“, úloha sa neodstráni z tabuľky, ale označí "
+#~ "sa\n"
#~ " tak, že SIGHUP sa nepošle úlohe, ak shell dostane SIGHUP. Voľba „-a“\n"
#~ " bez uvedenej JOBSPEC znamená odstránenie všetkých úloh z tabuľky\n"
#~ " úloh; voľba „-r“ znamená odstrániť iba bežiace úlohy."
#~ "The given NAMEs are marked readonly and the values of these NAMEs may\n"
#~ " not be changed by subsequent assignment. If the -f option is given,\n"
#~ " then functions corresponding to the NAMEs are so marked. If no\n"
-#~ " arguments are given, or if `-p' is given, a list of all readonly names\n"
+#~ " arguments are given, or if `-p' is given, a list of all readonly "
+#~ "names\n"
#~ " is printed. The `-a' option means to treat each NAME as\n"
#~ " an array variable. An argument of `--' disables further option\n"
#~ " processing."
#~ msgstr ""
#~ "Zadané NÁZVY sa označia iba na čítanie a hodnoty týchto NÁZVOV nebude\n"
-#~ " možné zmeniť ďalším priradením. Ak je zadaná voľba -f, označia sa takto\n"
+#~ " možné zmeniť ďalším priradením. Ak je zadaná voľba -f, označia sa "
+#~ "takto\n"
#~ " funkcie zodpovedajúce NÁZVU. Ak nie sú zadané žiadne argumenty alebo\n"
-#~ " je zadané „-p“, vypíše sa zoznam všetkých názvov len na čítanie. Voľba „-a“\n"
+#~ " je zadané „-p“, vypíše sa zoznam všetkých názvov len na čítanie. "
+#~ "Voľba „-a“\n"
#~ " znamená, že sa každá premenná NÁZOV bude považovať za pole. Argument\n"
#~ " „--“ vypína spracovanie ďalších volieb."
#~ "For each NAME, indicate how it would be interpreted if used as a\n"
#~ " command name.\n"
#~ " \n"
-#~ " If the -t option is used, `type' outputs a single word which is one of\n"
-#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is an\n"
-#~ " alias, shell reserved word, shell function, shell builtin, disk file,\n"
+#~ " If the -t option is used, `type' outputs a single word which is one "
+#~ "of\n"
+#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is "
+#~ "an\n"
+#~ " alias, shell reserved word, shell function, shell builtin, disk "
+#~ "file,\n"
#~ " or unfound, respectively.\n"
#~ " \n"
#~ " If the -p flag is used, `type' either returns the name of the disk\n"
#~ " file that would be executed, or nothing if `type -t NAME' would not\n"
#~ " return `file'.\n"
#~ " \n"
-#~ " If the -a flag is used, `type' displays all of the places that contain\n"
+#~ " If the -a flag is used, `type' displays all of the places that "
+#~ "contain\n"
#~ " an executable named `file'. This includes aliases, builtins, and\n"
#~ " functions, if and only if the -p flag is not also used.\n"
#~ " \n"
#~ " The -f flag suppresses shell function lookup.\n"
#~ " \n"
-#~ " The -P flag forces a PATH search for each NAME, even if it is an alias,\n"
-#~ " builtin, or function, and returns the name of the disk file that would\n"
+#~ " The -P flag forces a PATH search for each NAME, even if it is an "
+#~ "alias,\n"
+#~ " builtin, or function, and returns the name of the disk file that "
+#~ "would\n"
#~ " be executed."
#~ msgstr ""
#~ "Pre každý NÁZOV určí ako by sa interpretoval, keby sa použil ako\n"
#~ " \n"
#~ " Ak je použitá voľba -t, „type“ vypíše jediné slovo, ktoré je jedno z\n"
#~ " „alias“, „keyword“, „function“, „builtin“, „file“ alebo „“, ak NÁZOV\n"
-#~ " je alias, vyhradené slovo shellu, funkcia shellu, vstavaný príkaz shellu,\n"
+#~ " je alias, vyhradené slovo shellu, funkcia shellu, vstavaný príkaz "
+#~ "shellu,\n"
#~ " súbor na disku resp. nezistený typ.\n"
#~ " \n"
#~ " Ak je použitá voľba -p, „type“ vypíše buď názov súboru na disku,\n"
#~ " „file“.\n"
#~ " \n"
#~ " Ak je použitá voľba -a, „type“ vypíše všetky miesta, ktoré obsahujú\n"
-#~ " spustiteľný súbor s názvom Ak je použitá voľba -t, „file“. Sem patria\n"
-#~ " aliasy, vstavané premenné a funkcie ak a iba ak nie je zároveň zadaný\n"
+#~ " spustiteľný súbor s názvom Ak je použitá voľba -t, „file“. Sem "
+#~ "patria\n"
+#~ " aliasy, vstavané premenné a funkcie ak a iba ak nie je zároveň "
+#~ "zadaný\n"
#~ " prepínač -p.\n"
#~ " \n"
#~ " Voľba -f potlačí vyhľadávanie funkcií shellu.\n"
#~ " \n"
#~ " Voľba -P vynúti vyhľadanie každého NÁZVU v ceste (premenná PATH),\n"
-#~ " aj ak je to alias, vstavaný príkaz shellu alebo funkcia a vráti názov\n"
+#~ " aj ak je to alias, vstavaný príkaz shellu alebo funkcia a vráti "
+#~ "názov\n"
#~ " súboru na disku, ktorý by sa vykonal."
#~ msgid ""
#~ "The user file-creation mask is set to MODE. If MODE is omitted, or if\n"
-#~ " `-S' is supplied, the current value of the mask is printed. The `-S'\n"
-#~ " option makes the output symbolic; otherwise an octal number is output.\n"
+#~ " `-S' is supplied, the current value of the mask is printed. The `-"
+#~ "S'\n"
+#~ " option makes the output symbolic; otherwise an octal number is "
+#~ "output.\n"
#~ " If `-p' is supplied, and MODE is omitted, the output is in a form\n"
#~ " that may be used as input. If MODE begins with a digit, it is\n"
-#~ " interpreted as an octal number, otherwise it is a symbolic mode string\n"
+#~ " interpreted as an octal number, otherwise it is a symbolic mode "
+#~ "string\n"
#~ " like that accepted by chmod(1)."
#~ msgstr ""
#~ "Používateľská maska pre tvorbu súborov sa nastaví na REŽIM. Ak\n"
#~ " vynecháte REŽIM alebo zadáte „-S“, vypíše sa aktuálna hodnota masky.\n"
-#~ " Voľba „-S“ vypisuje symbolický výstup; inak sa vypisuje číslo v osmičkovej\n"
-#~ " sústave. Ak je zadaná voľba „-p“ a REŽIM sa vynechá, výstup je v tvare,\n"
-#~ " ktorý je možné použiť ako vstup. Ak REŽIM začína číslicou, interpretuje sa\n"
-#~ " ako číslo v osmičkovej sústave, inak je to symbolický reťazec režimu,\n"
+#~ " Voľba „-S“ vypisuje symbolický výstup; inak sa vypisuje číslo v "
+#~ "osmičkovej\n"
+#~ " sústave. Ak je zadaná voľba „-p“ a REŽIM sa vynechá, výstup je v "
+#~ "tvare,\n"
+#~ " ktorý je možné použiť ako vstup. Ak REŽIM začína číslicou, "
+#~ "interpretuje sa\n"
+#~ " ako číslo v osmičkovej sústave, inak je to symbolický reťazec "
+#~ "režimu,\n"
#~ " v tvare, aký prijíma chmod(1)."
#~ msgid ""
#~ msgid ""
#~ "For each NAME, specify how arguments are to be completed.\n"
-#~ " If the -p option is supplied, or if no options are supplied, existing\n"
-#~ " completion specifications are printed in a way that allows them to be\n"
-#~ " reused as input. The -r option removes a completion specification for\n"
-#~ " each NAME, or, if no NAMEs are supplied, all completion specifications."
+#~ " If the -p option is supplied, or if no options are supplied, "
+#~ "existing\n"
+#~ " completion specifications are printed in a way that allows them to "
+#~ "be\n"
+#~ " reused as input. The -r option removes a completion specification "
+#~ "for\n"
+#~ " each NAME, or, if no NAMEs are supplied, all completion "
+#~ "specifications."
#~ msgstr ""
#~ "Pre každý NÁZOV určí, koľko argumentov sa má doplniť.\n"
-#~ " Ak je daná voľba -p alebo žiadne voľby, vypíšu sa existujúce špecifikácie doplnení v takom formáte, že je ich možné použiť na\n"
+#~ " Ak je daná voľba -p alebo žiadne voľby, vypíšu sa existujúce "
+#~ "špecifikácie doplnení v takom formáte, že je ich možné použiť na\n"
#~ " vstupe. Voľba -r odstráni špecifikáciu doplnenia pre každý NÁZOV,\n"
#~ " alebo, ak nebol uvedený žiadny NÁZOV, pre všetky špecifikácie."
msgstr ""
"Project-Id-Version: bash 4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-09-15 13:09+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
msgid "write error: %s"
msgstr "skrivfel: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: fel när aktuell katalog hämtades: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: tvetydig jobbspecifikation"
msgid "cannot use `-f' to make functions"
msgstr "det går inte att använda \"-f\" för att göra funktioner"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: endast läsbar funktion"
msgid "%s: cannot delete: %s"
msgstr "%s: kan inte ta bort: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: filen är för stor"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: det kår inte att köra binär fil"
msgid "expression expected"
msgstr "uttryck förväntades"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: ogiltig filidentifierarspecifikation"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: ogiltig filbeskrivare: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: ogiltigt radantal"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: ogiltig vektorstart"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: ogiltigt återanropskvanta"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "tomt vektorvariabelnamn"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "stöd för vektorvariabler krävs"
msgid "shift count"
msgstr "skiftantal"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "det går inte att sätta och ta bort skalflaggor samtidigt"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: ogiltigt skalflaggsnamn"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "det går inte att omdiregera standard in från /dev/null: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: \"%c\": ogiltigt formateringstecken"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "rörfel"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: begränsat: det går inte att ange \"/\" i kommandonamn"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: kommandot finns inte"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: felaktig tolk"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "det går inte att duplicera fb %d till fb %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp rör"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "avgrenad pid %d fins i körande jobb %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "tar bort stoppat jobb %d med processgrupp %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: process %5ld (%s) i the_pipeline"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: pid %5ld (%s) markerad som fortfarande vid liv"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: ingen sådan pid"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Signal %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Klart"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Stoppat"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Stoppat(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Kör"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Klart(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Avslut %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Okänd status"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(minnesutskrift skapad) "
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (ak: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "barns setpgid (%ld till %ld)"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld är inte ett barn till detta skal"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Ingen uppgift om process %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: jobb %d är stoppat"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: jobbet har avslutat"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: jobb %d är redan i bakgrunden"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: rad %d: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (minnesutskrift skapad)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(ak nu: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp misslyckades"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: linjedisciplin"
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "det går inte att sätta terminalprocessgrupp (%d)"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "ingen jobbstyrning i detta skal"
msgid "unexpected EOF while looking for matching `)'"
msgstr "oväntat filslut när matchande \")\" söktes"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "komplettering: funktion \"%s\" finns inte"
msgid "$%s: cannot assign in this way"
msgstr "$%s: det går inte att tilldela på detta sätt"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "felaktig ersättning: ingen avslutande \"`\" i %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "ingen match: %s"
msgstr "until KOMMANDON; do KOMMANDON; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr "function namn { KOMMANDON ; } or namn () { KOMMANDON ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ KOMMANDON ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "jobbspec [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( uttryck ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ uttryck ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "variabler - Namn och betydelse av några skalvariabler"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | kat]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [flgnamn ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v var] format [argument]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"ordlista] [-F funktion] [-C kommando] [-X filtermnst] [-P prefix] [-S "
"suffix] [namn ...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"ordlista] [-F funktion] [-C kommando] [-X filtermnst] [-P prefix] [-S "
"suffix] [ord]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o flagga] [namn ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n antal] [-O start] [-s antal] [-t] [-u fb] [-C återanrop] [-c "
"kvanta] [vektor]"
-#: builtins.c:250
+#: builtins.c:242
+#, fuzzy
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n antal] [-O start] [-s antal] [-t] [-u fb] [-C återanrop] [-c "
+"kvanta] [vektor]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
" alias returnerar sant om inte ett NAMN ges för vilket inget alias har\n"
" definierats."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" \n"
" Returnerar framgång om inte ett NAMN inte är ett existerande alias."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" Slutstatus:\n"
" bind returnerar 0 om inte en okänd flagga ges eller ett fel inträffar."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" Slutstatus:\n"
" Returvärdet är 0 förutsatt att N är större eller lika med 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" Slutstatus:\n"
" Slutstatus är 0 förutsatt att N är större eller lika med 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
"inte\n"
" är inbyggd i skalet."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" Returnerar 0 om inte skalet inte kör en skalfunktion eller UTTR är\n"
" ogiltigt."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Slutstatus:\n"
" Returnerar 0 om katalogen är ändrad; skilt från noll annars."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
"katalogen\n"
" inte kan läsas."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Slutstatus:\n"
" Lyckas alltid."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Slutstatus:\n"
" Lyckas alltid."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Slutstatus:\n"
" Misslyckas alltid."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
"inte\n"
" finns."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller ett fel "
"inträffar."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" \n"
" Föråldrat. Se \"help declare\"."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges, ett fel inträffar\n"
" eller skalet inte exekverar en funktion."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte ett skrivfel inträffar."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte ett skrivfel inträffar."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returnerar framgång om inte NAMN inte är inbyggd i skalet eller ett fel\n"
" inträffar."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Slutstatus:\n"
" Returnerar slutstatus av kommandot eller framgång om kommandot är tomt."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" Returnerar framgång om en flagga hittas, misslyckas om slutet av\n"
" flaggorna nås eller ett fel inträffar."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
" Returnerar framgång om inte KOMMANDO inte finns eller ett fel vid\n"
" omdirigering inträffar."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" Avslutar skalet med statusen N. Om N utelämnas är slutstatusen den\n"
" hos det sist körda kommandot."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" Avslutar ett inloggningsskal med slutstatus N. Returnerar ett fel om\n"
" det inte körs i ett inloggningsskal."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
" Returnerar framgång eller status på exekverat kommando, skilt från noll\n"
" om ett fel inträffar."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status på kommandot som placerades i förgrunden, eller misslyckande om\n"
" ett fel inträffar."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
"fel\n"
" inträffar."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte NAMN inte hittas eller en ogiltig flagga ges."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
" Returnerar framgång om inte MÖNSTER inte finns eller en ogiltig flagga "
"ges."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller ett fel "
"inträffar."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
"inträffar.\n"
" Om -x används returneras slutstatus från KOMMANDO."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte en ogiltig flagga eller JOBBSPEC ges."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga angivits eller ett fel\n"
" inträffar."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" Om det sista ARG beräknas till 0, returnerar let 1; let returnerar 0 "
"annars."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" Returkoden är noll om inte filslut nås, läsningens tidsgräns överskrids\n"
" eller en ogiltig filbeskrivare ges som argument till -u."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returnerar N, eller misslyckande om skalet inte kör en funktion eller\n"
" skript."
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte en ogiltig flagga ges."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller NAMN endast är\n"
" läsbart."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte en ogiltig flagga ges eller NAMN är ogiltigt."
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte en ogiltig flagga ges eller NAMN är ogiltigt."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte N är negativt eller större än $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" Returnerar status på det sista kommandot som körs i FILNAMN, misslyckas\n"
" om FILNAMN inte kan läsas."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
"fel\n"
" inträffar."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" Returnerar framgång om UTTR beräknas till sant. Misslyckas ifall UTTR\n"
" beräknas till falskt eller ett ogiltigt argument ges."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
"argumentet\n"
" måste vara en bokstavlig \"]\", för att matcha den inledande \"[\"."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Slutstatus:\n"
" Lyckas alltid."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"flagga\n"
" ges."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om alla NAMNen finns, misslyckas om något inte finns."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga anges eller ett fel "
"inträffar."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
"flagga\n"
" ges."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
"ogiltig\n"
" flagga ges."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
"ogiltig\n"
" flagga ges."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Slutstatus:\n"
" Returnerar status för det sist exekverade kommandot."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Slutstatus:\n"
" Returnerar statusen från det sist exekverade kommandot."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Sluttatus:\n"
" Returnerar statusen från det sist exekverade kommandot."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" Slutstatus:\n"
" Returstatusen är returstatusen från RÖR."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Slutstatus:\n"
" Returnerar statusen från det sist exekverade kommandot."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Slutstatus:\n"
" Returnerar status från det sist exekverade kommandot."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Slutstatus:\n"
" Returnerar statusen från det sist exekverade kommandot."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Slutstatus:\n"
" Returnerar statusen från det sist exekverade kommandot."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Slutstatus:\n"
" Returnerar framgång om inte NAMN endast är läsbart."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Slutstatus:\n"
" Returnerar stutusen från det sist exekverade kommandot."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Slutstatus:\n"
" Returnerar statusen på det återupptagna jobbet."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Slutstatus:\n"
" Returnerar 1 om UTTRYCK beräknas till 0, returnerar 0 annars."
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" Slutstatus:\n"
" 0 eller 1 beroende på värdet av UTTRYCK."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" HISTIGNORE\tEn kolonseparerad lista av mönster som används för att\n"
" \t\tbestämma vilka kommandon som skall sparas i historielistan.\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" Returnerar framgång om inte ett ogiltigt argument ges eller bytet av\n"
" katalog misslyckas."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" Returnerar framgång om inte ett ogiltigt argument ges eller bytet av\n"
" katalog misslyckas."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller ett fel "
"inträffar."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" Returnerar framgång om FLGNAMN är aktiverat, misslyckas om en ogiltig\n"
" flagga ges eller FLGNAMN är avaktiverat."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller ett skriv-\n"
" eller tilldelningsfel inträffar."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller ett fel "
"inträffar."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller ett fel "
"inträffar."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" Returnerar framgång om inte en ogiltig flagga ges eller NAMN inte har\n"
" någon kompletteringsspecifikaation definierad."
-#: builtins.c:1940
+#: builtins.c:1958
#, fuzzy
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Slutstatus:\n"
" Returnerar framgång om inte en ogiltig flagga ges eller VEKTOR är\n"
" oföränderlig."
+
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2006-10-30 20:00+0200\n"
"Last-Translator: Nilgün Belma Bugüner <nilgun@buguner.name.tr>\n"
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
msgid "write error: %s"
msgstr "yazma hatası: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: geçerli dizin alınırken hata: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: iş belirtimi belirsiz"
msgid "cannot use `-f' to make functions"
msgstr "işlev yapmak için `-f' kullanılamaz"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: salt okunur işlev"
msgid "%s: cannot delete: %s"
msgstr "%s: silinemiyor: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: dosya çok büyük"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: ikili dosya çalıştırılamıyor"
msgid "expression expected"
msgstr "ifade bekleniyordu"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: dosya tanıtıcı belirtimi geçersiz"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: dosya tanıtıcı geçersiz: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s: seçenek geçersiz"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s: seçenek geçersiz"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: eylem adı geçersiz"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
#, fuzzy
msgid "empty array variable name"
msgstr "%s: bir dizi değişkeni değil"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr "shift sayısı"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "kabuk seçenekleri aynı anda hem atanıp hem de iptal edilemez"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: kabuk seçenek ismi geçersiz"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "/dev/null'dan standart girdiye yönlendirme yapılamaz: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': biçim karakteri geçersiz"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "yazma hatası: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: kısıtlı: komut adında `/' kullanamazsınız"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: komut yok"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: hatalı yorumlayıcı"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "fd %d, fd %d olarak yinelenemiyor"
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "çatallanan pid %d, çalışan iş %d içinde görünüyor"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "durdurulan %2$ld süreç gruplu iş %1$d siliniyor"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: böyle bir pid yok"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld bu kabuğun bir alt sürecine ait değil"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: süreç %ld için kayıt yok"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: iş %d durdu"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: iş sonlanmış"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: iş %d zaten artalanda"
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s: uyarı: "
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "bu kabukta iş denetimi yok"
msgid "unexpected EOF while looking for matching `)'"
msgstr "`)' için eşleşme aranırken beklenmedik dosya sonu"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion: `%s' işlevi yok"
msgid "$%s: cannot assign in this way"
msgstr "$%s: bu yolla atama yapılmaz"
-#: subst.c:7479
+#: subst.c:7499
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "hatalı ikame: %2$s içinde kapatan `%1$s' yok"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "eşleşme yok: %s"
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
+msgid "job_spec [&]"
+msgstr ""
+
+#: builtins.c:206
#, fuzzy
msgid "(( expression ))"
msgstr "ifade bekleniyordu"
-#: builtins.c:206
+#: builtins.c:208
#, fuzzy
msgid "[[ expression ]]"
msgstr "ifade bekleniyordu"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
" sonraki sözcüğün takma ad ikamesi için sınanmasına sebep olur.\n"
" Hiçbir şeyin rumuzu olmayan bir İSİM verilmedikçe alias doğru döndürür."
-#: builtins.c:272
+#: builtins.c:276
#, fuzzy
msgid ""
"Remove each NAME from the list of defined aliases.\n"
"verilmişse,\n"
" tüm rümuz tanımları silinir."
-#: builtins.c:285
+#: builtins.c:289
#, fuzzy
msgid ""
"Set Readline key bindings and variables.\n"
" -s Makroları çağıran tuş dizilerini ve değerlerini\n"
" girdi olarak kullanılabilir biçimde listeler."
-#: builtins.c:322
+#: builtins.c:326
#, fuzzy
msgid ""
"Exit for, while, or until loops.\n"
" FOR, WHILE veya UNTIL döngülerinin sonraki yinelemesinden devam edilir.\n"
" N verilirse dışa doğru N. döngüden devam edilir. N >= 1 olmalıdır."
-#: builtins.c:334
+#: builtins.c:338
#, fuzzy
msgid ""
"Resume for, while, or until loops.\n"
" FOR, WHILE veya UNTIL döngülerinin sonraki yinelemesinden devam edilir.\n"
" N verilirse dışa doğru N. döngüden devam edilir. N >= 1 olmalıdır."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
#, fuzzy
msgid ""
"Return the context of the current subroutine call.\n"
"döneceğini\n"
" belirtir; tepe çerçeve 0. çerçevedir."
-#: builtins.c:379
+#: builtins.c:383
#, fuzzy
msgid ""
"Change the shell working directory.\n"
"seçeneği\n"
" sembolik bağların mutlaka izlenmesini sağlar."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
#, fuzzy
msgid ""
"Null command.\n"
"\r:\n"
" Etkisizdir; bu komut birşey yapmaz. Sıfır çıkış kodu döndürülür."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
#, fuzzy
msgid ""
"Return an unsuccessful result.\n"
"\rfalse\n"
" Başarısız bir sonuç döndürür."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
#, fuzzy
msgid ""
"Set variable values and attributes.\n"
"kullanılmış\n"
" gibi yerel yapar."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
#, fuzzy
msgid ""
"Write arguments to the standard output.\n"
" -E seçeneği ile yukarıdaki karakterlerin yorumlanmasını öntanımlı\n"
" olarak etkin olduğu sistemlerde bile kapatabilirsiniz."
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
#, fuzzy
msgid ""
"Parse option arguments.\n"
"başka\n"
" argümanlar verilmişse bunları çözümler."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
#, fuzzy
msgid ""
"Exit the shell.\n"
" N durumu ile dönerek kabuk çıkar. N verilmezse son çalıştırılan komutun\n"
" çıkış durumu döner."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
#, fuzzy
msgid ""
"Display or execute commands from the history list.\n"
" Böylece `r cc' yazarak `cc' ile başlayan son komut,\n"
" r' yazarak en son komut çalıştırılabilir."
-#: builtins.c:734
+#: builtins.c:738
#, fuzzy
msgid ""
"Move job to the foreground.\n"
" Eğer İŞ_BELİRTİMİ belirtilmemişse kabuk iş belirtimi olarak\n"
" o an ki işi kullanır."
-#: builtins.c:749
+#: builtins.c:753
#, fuzzy
msgid ""
"Move jobs to the background.\n"
" `&' ile başlatılmışçasına İŞ_BELİRTİMİni artalana yerleştirir.\n"
" İŞ_BELİRTİMİ verilmemişse, iş belirtimi olarak o an ki iş kullanılır."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
#, fuzzy
msgid ""
"Display or manipulate the history list.\n"
" damgasını basacak olan strftime(3) işlevine biçim girdisi olur; aksi\n"
" takdirde hiç zaman damgası basılmaz."
-#: builtins.c:848
+#: builtins.c:852
#, fuzzy
msgid ""
"Display status of jobs.\n"
" ARGümanlar ile belirtilen tüm iş belirtimleri, işlerin süreç grup\n"
" liderinin süreç grup kimliğine yerleştirilip KOMUT çalıştırılır."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
#, fuzzy
msgid ""
"Send a signal to a job.\n"
" sınırını aşarsanız başka bir süreci öldürecek bir süreci başlatmak\n"
" zorunda kalmazsınız."
-#: builtins.c:917
+#: builtins.c:921
#, fuzzy
msgid ""
"Evaluate arithmetic expressions.\n"
"\n"
" Son ifade'nin sonucu 0 ise dönüş durumu 1 dir, aksi takdirde 0 dır."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
" okuma zamanaşımına düşmedikçe ya da -u seçeneği ile sağlanan\n"
" DoSYaTaNıTıcı geçersiz olmadıkça dönüş durumu sıfırdır."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
#, fuzzy
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" atanır. Özel parametre # ise N'e ayarlanır. Hiç argüman verilmezse,\n"
" tüm kabuk değişkenleri basılır."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
#, fuzzy
msgid ""
"Execute commands from a file in the current shell.\n"
"parametreler\n"
" değiştirilmez."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" küçüklük, büyüklük, küçüklük veya eşitlik, büyüklük veya eşitlik varsa\n"
" ifadenin sonucu doğrudur."
-#: builtins.c:1292
+#: builtins.c:1296
#, fuzzy
msgid ""
"Evaluate conditional expression.\n"
" test yerleşiği ile aynıdır, fakat son argüman açan `[' ile eşleşen\n"
" kapatan `]' olmak zorundadır."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
#, fuzzy
msgid ""
"Trap signals and other events.\n"
" numaraları ile birlikte listelemesini sağlar. Kabuğa bir sinyal\n"
" göndermek isterseniz \"kill -SİGNAL $$\" sözdizimini kullanabilirsiniz."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
#, fuzzy
msgid ""
"Modify shell resource limits.\n"
" için 512 baytlık blok sayısı olarak, -n ve -u için birimsiz, kalan\n"
" seçenekler için 1024 baytlık blok sayısı olarak belirtilmelidir."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
#, fuzzy
msgid ""
"Wait for process completion and return exit status.\n"
" belirtimi de olabilir; bir iş belirtimi verilirse işin\n"
" boruhattındaki tüm süreçler için beklenir."
-#: builtins.c:1474
+#: builtins.c:1478
#, fuzzy
msgid ""
"Execute commands for each member in a list.\n"
" yoksa, `in \"$@\"' belirtilmiş gibi kümeyi oluşturan her parametre\n"
" için KOMUTlar birer kere çalıştırılır."
-#: builtins.c:1488
+#: builtins.c:1492
#, fuzzy
msgid ""
"Arithmetic for loop.\n"
" İFADE1, İFADE2 ve İFADE3 aritmetik ifadelerdir. Verilmeyen her\n"
" ifade için 1 verilmiş gibi işlem yapılır."
-#: builtins.c:1506
+#: builtins.c:1510
#, fuzzy
msgid ""
"Select words from a list and execute commands.\n"
" değişkeninde tutulur. Her seçimden sonra bir break komutu ile\n"
" sonlandırılıncaya kadar komutlar çalıştırılır."
-#: builtins.c:1527
+#: builtins.c:1531
#, fuzzy
msgid ""
"Report time consumed by pipeline's execution.\n"
" istatistiklerinin biraz farklı bir biçimde basılmasını sağlar; çıktı\n"
" biçimi olarak TIMEFORMAT değişkeninin değerini kullanır."
-#: builtins.c:1544
+#: builtins.c:1548
#, fuzzy
msgid ""
"Execute commands based on pattern matching.\n"
" SÖZcük ile eşleşen ilk KALIP'a karşı düşen KOMUTları çalıştırır.\n"
" `|' çok sayıda kalıbı ayırmak için kullanılır."
-#: builtins.c:1556
+#: builtins.c:1560
#, fuzzy
msgid ""
"Execute commands based on conditional.\n"
" çıkış durumudur. Bir komut çalıştırılmamışsa ve hiçbir koşul\n"
" doğru sonuç vermemişse sıfır döner."
-#: builtins.c:1573
+#: builtins.c:1577
#, fuzzy
msgid ""
"Execute commands as long as a test succeeds.\n"
" `while KOMUTlar; listesinin çıkış durumu sıfır olduğu sürece\n"
" `do KOMUTlar;' listesi çalıştırılır."
-#: builtins.c:1585
+#: builtins.c:1589
#, fuzzy
msgid ""
"Execute commands as long as a test does not succeed.\n"
" `until KOMUTlar; listesinin çıkış durumu sıfırdan farklı olduğu sürece\n"
" `do KOMUTlar;' listesi çalıştırılır."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
#, fuzzy
msgid ""
"Group commands as a unit.\n"
" KOMUTlar bir grup olarak çalıştırılır. Bu, bir komut kümesini bir\n"
" yönlendirmede kullanmanın tek yoludur."
-#: builtins.c:1623
+#: builtins.c:1641
#, fuzzy
msgid ""
"Resume job in foreground.\n"
" İŞ_BELİRTİMİ'nden sonra bir & gelmesi işin `bg' komutununa argüman\n"
" olarak kullanılmış gibi artalana yerleştirilmesine sebep olur."
-#: builtins.c:1638
+#: builtins.c:1656
#, fuzzy
msgid ""
"Evaluate arithmetic expression.\n"
" Verilen aritmetik İFADE aritmetik değerlendirme kurallarına göre\n"
" değerlendirilir. \"let İFADE\" ile eşdeğerdir."
-#: builtins.c:1650
+#: builtins.c:1668
#, fuzzy
msgid ""
"Execute conditional command.\n"
" olarak ele alınır ve kalıp eşleştirmesi uygulanır. && ve || işleçleri\n"
" eğer ilk ifade sonuç için belirleyici ise ikincisine bakmazlar."
-#: builtins.c:1676
+#: builtins.c:1694
#, fuzzy
msgid ""
"Common shell variable names and usage.\n"
" gerektiğine karar vermek için kullanılan kalıpların\n"
" ikinokta imi ayraçlı listesi.\n"
-#: builtins.c:1733
+#: builtins.c:1751
#, fuzzy
msgid ""
"Add directories to stack.\n"
"\n"
" Dizin yığıtını `dirs' komutuyla görebilirsiniz."
-#: builtins.c:1767
+#: builtins.c:1785
#, fuzzy
msgid ""
"Remove directories from stack.\n"
" engeller, böylece sadece yığıt değiştirilmiş olur. \n"
" Dizin yığıtını `dirs' komutuyla görebilirsiniz."
-#: builtins.c:1797
+#: builtins.c:1815
#, fuzzy
msgid ""
"Display directory stack.\n"
" -N dirs seçeneksiz çağrıldığında gösterdiği listenin sağından\n"
" sıfırla başlayarak sayılan N'inci girdiyi gösterir."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
#, fuzzy
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" biçimde çıktılamasını sağlar. -v seçeneği çıktının standart çıktıya\n"
" basılması yerine DEĞİŞKENe atanmasını sağlar. "
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
#, fuzzy
msgid ""
"Display possible completions depending on the options.\n"
" amacıyla tasarlanmıştır. İsteğe bağlı SÖZCÜK argümanı sağlandığı\n"
" takdirde eşleşmelerden sadece SÖZCÜK ile eşleşenler üretilir."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
msgstr ""
"Project-Id-Version: bash 4.0-pre1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-09-08 17:26+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
msgid "write error: %s"
msgstr "lỗi ghi: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s: gặp lỗi khi lấy thư mục hiện thời: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s: đặc tả công việc mơ hồ"
msgid "cannot use `-f' to make functions"
msgstr "không thể dùng « -f » để tạo hàm"
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s: hàm chỉ đọc"
msgid "%s: cannot delete: %s"
msgstr "%s: không thể xoá: %s"
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr "%s: tập tin quá lớn"
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr "%s: không thể thực hiện tập tin nhị phân"
msgid "expression expected"
msgstr "đợi biểu thức"
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr "%s: sai xác định bộ mô tả tập tin"
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr "%d: bộ mô tả tập tin không hợp lệ: %s"
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, c-format
msgid "%s: invalid line count"
msgstr "%s: sai đếm dòng"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, c-format
msgid "%s: invalid array origin"
msgstr "%s: gốc mảng không hợp lệ"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, c-format
msgid "%s: invalid callback quantum"
msgstr "%s: lượng gọi ngược không hợp lệ"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr "%s: tên biến mảng vẫn trống"
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr "cần thiết hỗ trợ biến mảng"
msgid "shift count"
msgstr "đếm dời"
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr "không thể đồng thời đặt và hủy đặt các tùy chọn trình bao"
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr "%s: tên tùy chọn trình bao không hợp lệ"
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "không thể chuyển hướng đầu vào tiêu chuẩn từ « /dev/null »: %s"
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "ĐỊNH DẠNG THỜI GIAN: « %c »: ký tự định dạng không hợp lệ"
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
msgid "pipe error"
msgstr "lỗi ống dẫn"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: bị hạn chế: không thể ghi rõ dấu sổ chéo « / » trong tên câu lệnh"
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s: không tìm thấy lệnh"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: bộ thông dịch sai"
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "không thể nhân đôi fd %d tới fd %d"
msgid "start_pipeline: pgrp pipe"
msgstr "start_pipeline: pgrp pipe"
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr "tiến trình con đã tạo (PID %d) xuất hiện trong công việc đang chạy %d"
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr "đang xoá công việc bị dừng chạy %d với nhóm tiến trình %ld"
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr "add_process: tiến trình %5ld (%s) trong the_pipeline"
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr "add_process: pid %5ld (%s) được đánh dấu vẫn hoạt động"
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr "describe_pid: %ld: không có PID (mã số tiến trình) như vậy"
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr "Tín hiệu %d"
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr "Hoàn tất"
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr "Bị dừng"
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr "Bị dừng(%s)"
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr "Đang chạy"
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr "Hoàn tất(%d)"
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr "Thoát %d"
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr "Không rõ trạng thái"
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr "(lõi bị đổ)"
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr " (wd: %s)"
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr "setpgid tiến trình con (%ld thành %ld)"
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr "wait: pid %ld không phải là tiến trình con của trình bao này"
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr "wait_for: Không có mục ghi về tiến trình %ld"
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr "wait_for_job: công việc %d bị dừng chạy"
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr "%s: công việc bị chấm dứt"
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr "%s: công việc %d đã chạy trong nền"
-#: jobs.c:3487
+#: jobs.c:3492
#, c-format
msgid "%s: line %d: "
msgstr "%s: dòng %d:"
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr " (lõi bị đổ)"
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr "(wd bây giờ: %s)\n"
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr "initialize_job_control: getpgrp bị lỗi"
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr "initialize_job_control: kỷ luật dòng"
# Nghĩa chữ : dừng dịch
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr "initialize_job_control: setpgid"
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr "không thể đặt nhóm tiến trình cuối cùng (%d)"
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr "không có điều khiển công việc trong trình bao này"
msgstr ""
"gặp kết thúc tập tin bất thường trong khi tìm dấu ngoặc đóng « ) » tương ứng"
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr "completion: không tìm thấy hàm « %s »"
msgid "$%s: cannot assign in this way"
msgstr "$%s: không thể gán bằng cách này"
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "sai thay thế: không có « ` » đóng trong %s"
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr "không khớp: %s"
msgstr "until các_CÂU_LỆNH; do các_CÂU_LỆNH; done"
#: builtins.c:198
+msgid "coproc [NAME] command [redirections]"
+msgstr ""
+
+#: builtins.c:200
msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
"chức_năng tên { các_CÂU_LỆNH ; }\n"
"\thay\n"
"tên () { các_CÂU_LỆNH ; }"
-#: builtins.c:200
+#: builtins.c:202
msgid "{ COMMANDS ; }"
msgstr "{ LỆNH ; }"
-#: builtins.c:202
+#: builtins.c:204
msgid "job_spec [&]"
msgstr "đặc_tả_công_việc [&]"
-#: builtins.c:204
+#: builtins.c:206
msgid "(( expression ))"
msgstr "(( biểu_thức ))"
-#: builtins.c:206
+#: builtins.c:208
msgid "[[ expression ]]"
msgstr "[[ biểu_thức ]]"
-#: builtins.c:208
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr "biến — tên và nghĩa của một số biến trình bao"
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr "pushd [-n] [+N | -N | tmục]"
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr "popd [-n] [+N | -N]"
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr "dirs [-clpv] [+N] [-N]"
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr "shopt [-pqsu] [-o] [tùy_chọn ...]"
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr "printf [-v biến] định_dạng [đối_số]"
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"W danh_sách_từ] [-F hàm] [-C lệnh] [-X mẫu_lọc] [-P tiền_tố] [-S hậu_tố] "
"[tên ...]"
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
"compgen [-abcdefgjksuv] [-o tùy_chọn] [-A hành_động] [-G mẫu_glob] [-W "
"danh_sách_từ] [-F hàm] [-C lệnh] [-X mẫu_lọc] [-P tiền_tố] [-S hậu_tố] [từ]"
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr "compopt [-o|+o tùy_chọn] [tên ...]"
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
"mapfile [-n đếm] [-O gốc] [-s đếm] [-t] [-u fd] [-C gọi_ngược] [-c lượng] "
"[mảng]"
-#: builtins.c:250
+#: builtins.c:242
+#, fuzzy
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+"mapfile [-n đếm] [-O gốc] [-s đếm] [-t] [-u fd] [-C gọi_ngược] [-c lượng] "
+"[mảng]"
+
+#: builtins.c:254
msgid ""
"Define or display aliases.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tbí danh trả lại Đúng nếu không đưa ra TÊN chưa có bí danh được xác định."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
"\n"
"Trả lại thành công nếu không có TÊN là một bí danh không tồn tại."
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tbind trả lại 0 nếu không đưa ra tùy chọn không nhận ra hay gặp lỗi."
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrạng thái thoát là 0 nếu N không nhỏ hơn hay bằng 1."
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrạng thái thoát là 0 nếu N không nhỏ hơn hay bằng 1."
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
"\thoặc sai nếu SHELL-BUILTIN không phải là một\n"
"\tdựng sẵn trình bao."
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
"\tTrả lại 0 nếu trình bao đang chạy chức năng trình bao,\n"
"\t\tB_THỨC cũng hợp lệ."
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại 0 nếu thư mục được chuyển đổi; không thì khác số không."
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
"\t\tTrả lại 0 nếu không đưa ra tùy chọn sai\n"
"\t\tvà nếu đọc được thư mục hiện thời."
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tLúc nào cũng thành công."
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tLúc nào cũng thành công."
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tLúc nào cũng không thành công."
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
"Trả lại trạng thái thoát của câu LỆNH, hoặc bị lỗi nếu không tìm thấy câu "
"LỆNH."
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hoặc gặp lỗi."
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
"\n"
"\tQuá cũ. Xem « help declare »."
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi,\n"
"\tvà nếu trình bao đang chạy chức năng."
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
"\t\t\\v\tkhoảng tab theo chiều dọc\n"
"\t\t\\\\\tgạch chéo ngược"
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không gặp lỗi ghi."
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu TÊN là một dựng sẵn trình bao, và không gặp lỗi."
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
"\tTrả lại trạng thái thoát của câu lệnh,\n"
"\thay thành công nếu câu lệnh vô giá trị."
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
"\tkhông thành công nếu gặp kết thúc các tùy chọn,\n"
"\thoặc nếu gặp lỗi."
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu tìm được câu LỆNH và không gặp lỗi chuyển hướng."
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
"\tKhông đưa ra N thì trạng thái thoát\n"
"\tlà trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
"\tThoát khỏi một trình bao đăng nhập, với trạng thái thoát N.\n"
"\tTrả lại lỗi nếu không được thực thi trong trình bao đăng nhập."
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"\tTrả lại thành công hay trạng thái của câu lệnh được thực thi;\n"
"\t\tgặp lỗi thì khác số không."
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
"\tTrạng thái của câu lệnh được nâng lên trước;\n"
"\tgặp lỗi thì không thành công."
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
"\tTrả lại thành công nếu chức năng điều khiển công việc được bật\n"
"\tvà không gặp lỗi."
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu tìm được TÊN và không đưa ra tùy chọn sai."
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu tìm được MẪU và không đưa ra tùy chọn sai."
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không gặp tùy chọn sai hay gặp lỗi."
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
"\tTrả lại thành công nếu không gặp tùy chọn sai hay gặp lỗi.\n"
"\tĐưa ra « -x » thì trả lại trạng thái thoát của câu LỆNH."
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay JOBSPEC sai."
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi."
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
"\tNếu ĐỐI_SỐ cuối cùng được định giá thành 0 thì let trả lại 1;\n"
"\tkhông thì let trả lại 0."
-#: builtins.c:962
+#: builtins.c:966
#, fuzzy
msgid ""
"Read a line from the standard input and split it into fields.\n"
"\tkhông quá thời khi đọc, và không đưa ra bộ mô tả tập tin sai\n"
"\tlàm đối số tới « -u »."
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
"\tTrả lại N, hoặc bị lỗi nếu trình bao không đang chạy\n"
"\t\tmột chức năng hay văn lệnh."
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không gặp tùy chọn sai."
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai, và TÊN không chỉ đọc."
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay TÊN sai,"
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay TÊN sai."
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu N không âm hay lớn hơn $#."
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
"TÊN_TẬP_TIN;\n"
"\tkhông thành công nếu không thể đọc TÊN_TẬP_TIN."
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
"\tTrả lại thành công nếu chức năng điều khiển công việc đã được bật, và "
"không gặp lỗi."
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
"\tTrả lại thành công nếu B_THỨC định giá thành Đúng;\n"
"\tkhông thành công nếu B_THỨC định giá thành Sai hay đưa ra đối số sai."
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
"\tnhưng đối số cuối cùng phải là một « ] » nghĩa chữ,\n"
"\tđổ tương ứng với « [ » mở."
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tLúc nào cũng thành công."
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"\tTrả lại thành công nếu không đưa ra ĐẶC_TẢ_TÍN_HIỆU sai\n"
"\thay tùy chọn sai."
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"\tTráng thái thoát:\n"
"\tTrả lại thành công nếu tìm thấy tất cả các TÊN; không thì bị lỗi."
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi."
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
"\tTráng thái thoát:\n"
"\tTrả lại thành công nếu không có CHẾ_ĐỘ sai hay tùy chọn sai."
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
"\tTrả lại trạng thái của ID; không thành công nếu ID sai\n"
"\t\thoặc đưa ra tùy chọn sai."
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
"\tkhông thành công nếu ID sai,\n"
"\thoặc nếu đưa ra tùy chọn sai."
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrạng thái trả lai là trạng thái trả lại của PIPELINE."
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
"\tTráng thái thoát:\n"
"\tTrả lại thành công nếu TÊN không phải chỉ đọc."
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của câu lệnh cuối cùng được chạy."
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại trạng thái của công việc đã tiếp tục lại."
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại 1 nếu BIỂU_THỨC tính là 0; không thì trả lại 0."
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
"\tTrạng thái thoát:\n"
"\t0 hay 1 phụ thuộc vào giá trị của BIỂU_THỨC."
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
"\tđược ùng để quyết định những câu lệnh nào nên được lưu\n"
"\tvào danh sách lịch sử.\n"
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
"\tTrả lại thành công nếu không đưa ra đối số sai,\n"
"\tcũng không sai chuyển đổi thư mục."
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
"\tTrả lại thành công nếu không đưa ra đối số sai,\n"
"\tcũng không sai chuyển đổi thư mục."
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi."
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
"\tTrả lại thành công nếu TÊN_TÙY_CHỌN được bật;\n"
"\tkhông thành công nếu đưa ra tùy chọn sai hay TÊN_TÙY_CHỌN bị tắt."
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi kiểu ghi hay "
"gán."
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi."
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
"\tTrạng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi."
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai,\n"
"\tvà TÊN có một đặc tả điền nốt được xác định."
-#: builtins.c:1940
+#: builtins.c:1958
#, fuzzy
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
"\tTráng thái thoát:\n"
"\tTrả lại thành công nếu không đưa ra tùy chọn sai và MẢNG không phải chỉ "
"đọc."
+
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
msgstr ""
"Project-Id-Version: bash-3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-01-12 09:36-0500\n"
+"POT-Creation-Date: 2009-02-10 11:05-0500\n"
"PO-Revision-Date: 2008-08-20 20:12+0800\n"
"Last-Translator: Zi-You Dai <ioppooster@gmail.com>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
msgid "write error: %s"
msgstr "寫入錯誤: %s"
-#: builtins/common.c:553
+#: builtins/common.c:329
+#, c-format
+msgid "error setting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:331
+#, c-format
+msgid "error getting terminal attributes: %s"
+msgstr ""
+
+#: builtins/common.c:563
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr "%s:錯誤檢索當前目錄: %s: %s\n"
-#: builtins/common.c:619 builtins/common.c:621
+#: builtins/common.c:629 builtins/common.c:631
#, c-format
msgid "%s: ambiguous job spec"
msgstr "%s:含糊的工作規格"
msgid "cannot use `-f' to make functions"
msgstr ""
-#: builtins/declare.def:365 execute_cmd.c:4731
+#: builtins/declare.def:365 execute_cmd.c:4782
#, c-format
msgid "%s: readonly function"
msgstr "%s:只讀函數"
msgid "%s: cannot delete: %s"
msgstr ""
-#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4588
+#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4639
#: shell.c:1439
#, c-format
msgid "%s: is a directory"
msgid "%s: file is too large"
msgstr ""
-#: builtins/evalfile.c:185 execute_cmd.c:4658 shell.c:1449
+#: builtins/evalfile.c:185 execute_cmd.c:4709 shell.c:1449
#, c-format
msgid "%s: cannot execute binary file"
msgstr ""
msgid "expression expected"
msgstr ""
-#: builtins/mapfile.def:215 builtins/read.def:272
+#: builtins/mapfile.def:241 builtins/read.def:272
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
-#: builtins/mapfile.def:223 builtins/read.def:279
+#: builtins/mapfile.def:249 builtins/read.def:279
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
-#: builtins/mapfile.def:232 builtins/mapfile.def:270
+#: builtins/mapfile.def:258 builtins/mapfile.def:296
#, fuzzy, c-format
msgid "%s: invalid line count"
msgstr "%s:無效選項"
-#: builtins/mapfile.def:243
+#: builtins/mapfile.def:269
#, fuzzy, c-format
msgid "%s: invalid array origin"
msgstr "%s:無效選項"
-#: builtins/mapfile.def:260
+#: builtins/mapfile.def:286
#, fuzzy, c-format
msgid "%s: invalid callback quantum"
msgstr "%s:無效的功能名稱"
-#: builtins/mapfile.def:292
+#: builtins/mapfile.def:318
msgid "empty array variable name"
msgstr ""
-#: builtins/mapfile.def:313
+#: builtins/mapfile.def:339
msgid "array variable support required"
msgstr ""
msgid "shift count"
msgstr ""
-#: builtins/shopt.def:263
+#: builtins/shopt.def:254
msgid "cannot set and unset shell options simultaneously"
msgstr ""
-#: builtins/shopt.def:328
+#: builtins/shopt.def:319
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
-#: execute_cmd.c:1091
+#: execute_cmd.c:1094
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
-#: execute_cmd.c:1942
+#: execute_cmd.c:1993
#, fuzzy
msgid "pipe error"
msgstr "寫入錯誤: %s"
-#: execute_cmd.c:4276
+#: execute_cmd.c:4327
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
-#: execute_cmd.c:4367
+#: execute_cmd.c:4418
#, c-format
msgid "%s: command not found"
msgstr "%s:命令找不到"
-#: execute_cmd.c:4621
+#: execute_cmd.c:4672
#, c-format
msgid "%s: %s: bad interpreter"
msgstr ""
-#: execute_cmd.c:4770
+#: execute_cmd.c:4821
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
msgid "start_pipeline: pgrp pipe"
msgstr ""
-#: jobs.c:882
+#: jobs.c:887
#, c-format
msgid "forked pid %d appears in running job %d"
msgstr ""
-#: jobs.c:1000
+#: jobs.c:1005
#, c-format
msgid "deleting stopped job %d with process group %ld"
msgstr ""
-#: jobs.c:1105
+#: jobs.c:1110
#, c-format
msgid "add_process: process %5ld (%s) in the_pipeline"
msgstr ""
-#: jobs.c:1108
+#: jobs.c:1113
#, c-format
msgid "add_process: pid %5ld (%s) marked as still alive"
msgstr ""
-#: jobs.c:1396
+#: jobs.c:1401
#, c-format
msgid "describe_pid: %ld: no such pid"
msgstr ""
-#: jobs.c:1411
+#: jobs.c:1416
#, c-format
msgid "Signal %d"
msgstr ""
-#: jobs.c:1425 jobs.c:1450
+#: jobs.c:1430 jobs.c:1455
msgid "Done"
msgstr ""
-#: jobs.c:1430 siglist.c:122
+#: jobs.c:1435 siglist.c:122
msgid "Stopped"
msgstr ""
-#: jobs.c:1434
+#: jobs.c:1439
#, c-format
msgid "Stopped(%s)"
msgstr ""
-#: jobs.c:1438
+#: jobs.c:1443
msgid "Running"
msgstr ""
-#: jobs.c:1452
+#: jobs.c:1457
#, c-format
msgid "Done(%d)"
msgstr ""
-#: jobs.c:1454
+#: jobs.c:1459
#, c-format
msgid "Exit %d"
msgstr ""
-#: jobs.c:1457
+#: jobs.c:1462
msgid "Unknown status"
msgstr ""
-#: jobs.c:1544
+#: jobs.c:1549
#, c-format
msgid "(core dumped) "
msgstr ""
-#: jobs.c:1563
+#: jobs.c:1568
#, c-format
msgid " (wd: %s)"
msgstr ""
-#: jobs.c:1766
+#: jobs.c:1771
#, c-format
msgid "child setpgid (%ld to %ld)"
msgstr ""
-#: jobs.c:2094 nojobs.c:576
+#: jobs.c:2099 nojobs.c:585
#, c-format
msgid "wait: pid %ld is not a child of this shell"
msgstr ""
-#: jobs.c:2321
+#: jobs.c:2326
#, c-format
msgid "wait_for: No record of process %ld"
msgstr ""
-#: jobs.c:2593
+#: jobs.c:2598
#, c-format
msgid "wait_for_job: job %d is stopped"
msgstr ""
-#: jobs.c:2815
+#: jobs.c:2820
#, c-format
msgid "%s: job has terminated"
msgstr ""
-#: jobs.c:2824
+#: jobs.c:2829
#, c-format
msgid "%s: job %d already in background"
msgstr ""
-#: jobs.c:3487
+#: jobs.c:3492
#, fuzzy, c-format
msgid "%s: line %d: "
msgstr "%s:警告:"
-#: jobs.c:3501 nojobs.c:805
+#: jobs.c:3506 nojobs.c:814
#, c-format
msgid " (core dumped)"
msgstr ""
-#: jobs.c:3513 jobs.c:3526
+#: jobs.c:3518 jobs.c:3531
#, c-format
msgid "(wd now: %s)\n"
msgstr ""
-#: jobs.c:3558
+#: jobs.c:3563
msgid "initialize_job_control: getpgrp failed"
msgstr ""
-#: jobs.c:3618
+#: jobs.c:3623
msgid "initialize_job_control: line discipline"
msgstr ""
-#: jobs.c:3628
+#: jobs.c:3633
msgid "initialize_job_control: setpgid"
msgstr ""
-#: jobs.c:3656
+#: jobs.c:3661
#, c-format
msgid "cannot set terminal process group (%d)"
msgstr ""
-#: jobs.c:3661
+#: jobs.c:3666
msgid "no job control in this shell"
msgstr ""
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
-#: pcomplete.c:1016
+#: pcomplete.c:1018
#, c-format
msgid "completion: function `%s' not found"
msgstr ""
msgid "$%s: cannot assign in this way"
msgstr ""
-#: subst.c:7479
+#: subst.c:7499
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr ""
-#: subst.c:8354
+#: subst.c:8375
#, c-format
msgid "no match: %s"
msgstr ""
msgstr ""
#: builtins.c:198
-msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
+msgid "coproc [NAME] command [redirections]"
msgstr ""
#: builtins.c:200
-msgid "{ COMMANDS ; }"
+msgid "function name { COMMANDS ; } or name () { COMMANDS ; }"
msgstr ""
#: builtins.c:202
-msgid "job_spec [&]"
+msgid "{ COMMANDS ; }"
msgstr ""
#: builtins.c:204
-msgid "(( expression ))"
+msgid "job_spec [&]"
msgstr ""
#: builtins.c:206
-msgid "[[ expression ]]"
+msgid "(( expression ))"
msgstr ""
#: builtins.c:208
+msgid "[[ expression ]]"
+msgstr ""
+
+#: builtins.c:210
msgid "variables - Names and meanings of some shell variables"
msgstr ""
-#: builtins.c:211
+#: builtins.c:213
msgid "pushd [-n] [+N | -N | dir]"
msgstr ""
-#: builtins.c:215
+#: builtins.c:217
msgid "popd [-n] [+N | -N]"
msgstr ""
-#: builtins.c:219
+#: builtins.c:221
msgid "dirs [-clpv] [+N] [-N]"
msgstr ""
-#: builtins.c:222
+#: builtins.c:224
msgid "shopt [-pqsu] [-o] [optname ...]"
msgstr ""
-#: builtins.c:224
+#: builtins.c:226
msgid "printf [-v var] format [arguments]"
msgstr ""
-#: builtins.c:227
+#: builtins.c:229
msgid ""
"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W "
"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] "
"[name ...]"
msgstr ""
-#: builtins.c:231
+#: builtins.c:233
msgid ""
"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] "
"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]"
msgstr ""
-#: builtins.c:235
+#: builtins.c:237
msgid "compopt [-o|+o option] [name ...]"
msgstr ""
-#: builtins.c:238
+#: builtins.c:240
msgid ""
"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
"quantum] [array]"
msgstr ""
-#: builtins.c:250
+#: builtins.c:242
+msgid ""
+"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c "
+"quantum] [array]"
+msgstr ""
+
+#: builtins.c:254
#, fuzzy
msgid ""
"Define or display aliases.\n"
" alias substitution when the alias is expanded. Alias returns\n"
" true unless a NAME is given for which no alias has been defined."
-#: builtins.c:272
+#: builtins.c:276
msgid ""
"Remove each NAME from the list of defined aliases.\n"
" \n"
" Return success unless a NAME is not an existing alias."
msgstr ""
-#: builtins.c:285
+#: builtins.c:289
msgid ""
"Set Readline key bindings and variables.\n"
" \n"
" bind returns 0 unless an unrecognized option is given or an error occurs."
msgstr ""
-#: builtins.c:322
+#: builtins.c:326
msgid ""
"Exit for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:334
+#: builtins.c:338
msgid ""
"Resume for, while, or until loops.\n"
" \n"
" The exit status is 0 unless N is not greater than or equal to 1."
msgstr ""
-#: builtins.c:346
+#: builtins.c:350
msgid ""
"Execute shell builtins.\n"
" \n"
" not a shell builtin.."
msgstr ""
-#: builtins.c:361
+#: builtins.c:365
msgid ""
"Return the context of the current subroutine call.\n"
" \n"
" is invalid."
msgstr ""
-#: builtins.c:379
+#: builtins.c:383
msgid ""
"Change the shell working directory.\n"
" \n"
" Returns 0 if the directory is changed; non-zero otherwise."
msgstr ""
-#: builtins.c:407
+#: builtins.c:411
msgid ""
"Print the name of the current working directory.\n"
" \n"
" cannot be read."
msgstr ""
-#: builtins.c:424
+#: builtins.c:428
msgid ""
"Null command.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:435
+#: builtins.c:439
msgid ""
"Return a successful result.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:444
+#: builtins.c:448
msgid ""
"Return an unsuccessful result.\n"
" \n"
" Always fails."
msgstr ""
-#: builtins.c:453
+#: builtins.c:457
msgid ""
"Execute a simple command or display information about commands.\n"
" \n"
" Returns exit status of COMMAND, or failure if COMMAND is not found."
msgstr ""
-#: builtins.c:472
+#: builtins.c:476
msgid ""
"Set variable values and attributes.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:508
+#: builtins.c:512
msgid ""
"Set variable values and attributes.\n"
" \n"
" Obsolete. See `help declare'."
msgstr ""
-#: builtins.c:516
+#: builtins.c:520
msgid ""
"Define local variables.\n"
" \n"
" or the shell is not executing a function."
msgstr ""
-#: builtins.c:533
+#: builtins.c:537
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:567
+#: builtins.c:571
msgid ""
"Write arguments to the standard output.\n"
" \n"
" Returns success unless a write error occurs."
msgstr ""
-#: builtins.c:582
+#: builtins.c:586
msgid ""
"Enable and disable shell builtins.\n"
" \n"
" Returns success unless NAME is not a shell builtin or an error occurs."
msgstr ""
-#: builtins.c:610
+#: builtins.c:614
msgid ""
"Execute arguments as a shell command.\n"
" \n"
" Returns exit status of command or success if command is null."
msgstr ""
-#: builtins.c:622
+#: builtins.c:626
msgid ""
"Parse option arguments.\n"
" \n"
" encountered or an error occurs."
msgstr ""
-#: builtins.c:664
+#: builtins.c:668
msgid ""
"Replace the shell with the given command.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:685
+#: builtins.c:689
msgid ""
"Exit the shell.\n"
" \n"
" is that of the last command executed."
msgstr ""
-#: builtins.c:694
+#: builtins.c:698
msgid ""
"Exit a login shell.\n"
" \n"
" in a login shell."
msgstr ""
-#: builtins.c:704
+#: builtins.c:708
msgid ""
"Display or execute commands from the history list.\n"
" \n"
"occurs."
msgstr ""
-#: builtins.c:734
+#: builtins.c:738
msgid ""
"Move job to the foreground.\n"
" \n"
" Status of command placed in foreground, or failure if an error occurs."
msgstr ""
-#: builtins.c:749
+#: builtins.c:753
msgid ""
"Move jobs to the background.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:763
+#: builtins.c:767
msgid ""
"Remember or display program locations.\n"
" \n"
" Returns success unless NAME is not found or an invalid option is given."
msgstr ""
-#: builtins.c:788
+#: builtins.c:792
msgid ""
"Display information about builtin commands.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:812
+#: builtins.c:816
msgid ""
"Display or manipulate the history list.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:848
+#: builtins.c:852
msgid ""
"Display status of jobs.\n"
" \n"
" If -x is used, returns the exit status of COMMAND."
msgstr ""
-#: builtins.c:875
+#: builtins.c:879
msgid ""
"Remove jobs from current shell.\n"
" \n"
" Returns success unless an invalid option or JOBSPEC is given."
msgstr ""
-#: builtins.c:894
+#: builtins.c:898
msgid ""
"Send a signal to a job.\n"
" \n"
" Returns success unless an invalid option is given or an error occurs."
msgstr ""
-#: builtins.c:917
+#: builtins.c:921
msgid ""
"Evaluate arithmetic expressions.\n"
" \n"
" If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.."
msgstr ""
-#: builtins.c:962
+#: builtins.c:966
msgid ""
"Read a line from the standard input and split it into fields.\n"
" \n"
" or an invalid file descriptor is supplied as the argument to -u."
msgstr ""
-#: builtins.c:1002
+#: builtins.c:1006
msgid ""
"Return from a shell function.\n"
" \n"
" Returns N, or failure if the shell is not executing a function or script."
msgstr ""
-#: builtins.c:1015
+#: builtins.c:1019
msgid ""
"Set or unset values of shell options and positional parameters.\n"
" \n"
" Returns success unless an invalid option is given."
msgstr ""
-#: builtins.c:1097
+#: builtins.c:1101
msgid ""
"Unset values and attributes of shell variables and functions.\n"
" \n"
" Returns success unless an invalid option is given or a NAME is read-only."
msgstr ""
-#: builtins.c:1117
+#: builtins.c:1121
msgid ""
"Set export attribute for shell variables.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1136
+#: builtins.c:1140
msgid ""
"Mark shell variables as unchangeable.\n"
" \n"
" Returns success unless an invalid option is given or NAME is invalid."
msgstr ""
-#: builtins.c:1157
+#: builtins.c:1161
msgid ""
"Shift positional parameters.\n"
" \n"
" Returns success unless N is negative or greater than $#."
msgstr ""
-#: builtins.c:1169 builtins.c:1184
+#: builtins.c:1173 builtins.c:1188
msgid ""
"Execute commands from a file in the current shell.\n"
" \n"
" FILENAME cannot be read."
msgstr ""
-#: builtins.c:1200
+#: builtins.c:1204
msgid ""
"Suspend shell execution.\n"
" \n"
" Returns success unless job control is not enabled or an error occurs."
msgstr ""
-#: builtins.c:1216
+#: builtins.c:1220
msgid ""
"Evaluate conditional expression.\n"
" \n"
" false or an invalid argument is given."
msgstr ""
-#: builtins.c:1292
+#: builtins.c:1296
msgid ""
"Evaluate conditional expression.\n"
" \n"
" be a literal `]', to match the opening `['."
msgstr ""
-#: builtins.c:1301
+#: builtins.c:1305
msgid ""
"Display process times.\n"
" \n"
" Always succeeds."
msgstr ""
-#: builtins.c:1313
+#: builtins.c:1317
msgid ""
"Trap signals and other events.\n"
" \n"
"given."
msgstr ""
-#: builtins.c:1345
+#: builtins.c:1349
msgid ""
"Display information about command type.\n"
" \n"
"found."
msgstr ""
-#: builtins.c:1376
+#: builtins.c:1380
msgid ""
"Modify shell resource limits.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1421
+#: builtins.c:1425
msgid ""
"Display or set file mode mask.\n"
" \n"
" Returns success unless MODE is invalid or an invalid option is given."
msgstr ""
-#: builtins.c:1441
+#: builtins.c:1445
msgid ""
"Wait for job completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1459
+#: builtins.c:1463
msgid ""
"Wait for process completion and return exit status.\n"
" \n"
" given."
msgstr ""
-#: builtins.c:1474
+#: builtins.c:1478
msgid ""
"Execute commands for each member in a list.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1488
+#: builtins.c:1492
msgid ""
"Arithmetic for loop.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1506
+#: builtins.c:1510
msgid ""
"Select words from a list and execute commands.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1527
+#: builtins.c:1531
msgid ""
"Report time consumed by pipeline's execution.\n"
" \n"
" The return status is the return status of PIPELINE."
msgstr ""
-#: builtins.c:1544
+#: builtins.c:1548
msgid ""
"Execute commands based on pattern matching.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1556
+#: builtins.c:1560
msgid ""
"Execute commands based on conditional.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1573
+#: builtins.c:1577
msgid ""
"Execute commands as long as a test succeeds.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1585
+#: builtins.c:1589
msgid ""
"Execute commands as long as a test does not succeed.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1597
+#: builtins.c:1601
+msgid ""
+"Create a coprocess named NAME.\n"
+" \n"
+" Execute COMMAND asynchronously, with the standard output and standard\n"
+" input of the command connected via a pipe to file descriptors assigned\n"
+" to indices 0 and 1 of an array variable NAME in the executing shell.\n"
+" The default NAME is \"COPROC\".\n"
+" \n"
+" Exit Status:\n"
+" Returns the exit status of COMMAND."
+msgstr ""
+
+#: builtins.c:1615
msgid ""
"Define shell function.\n"
" \n"
" Returns success unless NAME is readonly."
msgstr ""
-#: builtins.c:1611
+#: builtins.c:1629
msgid ""
"Group commands as a unit.\n"
" \n"
" Returns the status of the last command executed."
msgstr ""
-#: builtins.c:1623
+#: builtins.c:1641
msgid ""
"Resume job in foreground.\n"
" \n"
" Returns the status of the resumed job."
msgstr ""
-#: builtins.c:1638
+#: builtins.c:1656
msgid ""
"Evaluate arithmetic expression.\n"
" \n"
" Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise."
msgstr ""
-#: builtins.c:1650
+#: builtins.c:1668
msgid ""
"Execute conditional command.\n"
" \n"
" 0 or 1 depending on value of EXPRESSION."
msgstr ""
-#: builtins.c:1676
+#: builtins.c:1694
msgid ""
"Common shell variable names and usage.\n"
" \n"
" \t\tcommands should be saved on the history list.\n"
msgstr ""
-#: builtins.c:1733
+#: builtins.c:1751
msgid ""
"Add directories to stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1767
+#: builtins.c:1785
msgid ""
"Remove directories from stack.\n"
" \n"
" change fails."
msgstr ""
-#: builtins.c:1797
+#: builtins.c:1815
msgid ""
"Display directory stack.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1826
+#: builtins.c:1844
msgid ""
"Set and unset shell options.\n"
" \n"
" given or OPTNAME is disabled."
msgstr ""
-#: builtins.c:1847
+#: builtins.c:1865
msgid ""
"Formats and prints ARGUMENTS under control of the FORMAT.\n"
" \n"
" error occurs."
msgstr ""
-#: builtins.c:1874
+#: builtins.c:1892
msgid ""
"Specify how arguments are to be completed by Readline.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1897
+#: builtins.c:1915
msgid ""
"Display possible completions depending on the options.\n"
" \n"
" Returns success unless an invalid option is supplied or an error occurs."
msgstr ""
-#: builtins.c:1912
+#: builtins.c:1930
msgid ""
"Modify or display completion options.\n"
" \n"
" have a completion specification defined."
msgstr ""
-#: builtins.c:1940
+#: builtins.c:1958
msgid ""
-"Read lines from a file into an array variable.\n"
+"Read lines from the standard input into an array variable.\n"
" \n"
" Read lines from the standard input into the array variable ARRAY, or "
"from\n"
" Arguments:\n"
" ARRAY\t\tArray variable name to use for file data.\n"
" \n"
-" If -C is supplied without -c, the default quantum is 5000.\n"
+" If -C is supplied without -c, the default quantum is 5000. When\n"
+" CALLBACK is evaluated, it is supplied the index of the next array\n"
+" element to be assigned as an additional argument.\n"
" \n"
" If not supplied with an explicit origin, mapfile will clear ARRAY "
"before\n"
" Returns success unless an invalid option is given or ARRAY is readonly."
msgstr ""
+#: builtins.c:1990
+msgid ""
+"Read lines from a file into an array variable.\n"
+" \n"
+" A synonym for `mapfile'."
+msgstr ""
+
#~ msgid "requesting resize"
#~ msgstr "要求調整"
-BUILD_DIR=/usr/local/build/chet/bash/bash-current
+BUILD_DIR=/usr/local/build/bash/bash-current
THIS_SH=$BUILD_DIR/bash
PATH=$PATH:$BUILD_DIR
-${THIS_SH} ./set-e-test > /tmp/xx
+${THIS_SH} ./set-e.tests > /tmp/xx
diff /tmp/xx set-e.right && rm -f /tmp/xx
after 1
a
0
+non-posix foo
+after brace group failure: 1
+A 1
+B 0
+C 0
+D 0
+D 1
+A 1
+B 0
+C 0
+D 0
+D 1
+A 1
+B 0
+C 0
+A 1
+B 1
+C 0
+B 0
+C 0
+after negation 1: 0
+after negation 2: 0
+after negation 3: 1
+after negation 4: 0
+after brace pipeline
+foo
+after failure 1
+after failure 2
+after failure 3
+true || false no exit
+false || true no exit
+false && false no exit
--- /dev/null
+if : ; then
+ set -e
+ N=95
+ while :; do
+ # expr returns 1 if expression is null or 0
+ set +e
+ N_MOD_100=`expr $N % 100`
+ set -e
+ echo $N_MOD_100
+ N=`expr $N + 1`
+ if [ $N -eq 110 ]; then
+ break
+ fi
+ done
+ set +e
+fi
+
+(
+set -e
+false
+echo bad
+)
+echo $?
+
+x=$(
+set -e
+false
+echo bad
+)
+echo $? $x
+
+# command subst should not inherit -e
+set -e
+echo $(false; echo ok)
+
+if set +e
+then
+ false
+fi
+echo hi
+
+set -e
+
+# a failing command in the compound list following a while, until, or
+# if should not cause the shell to exit
+
+while false; do
+ echo hi
+done
+echo while succeeded
+
+x=1
+until (( x == 4 )); do
+ x=4
+done
+echo until succeeded: $x
+
+if false; then
+ echo oops
+fi
+echo if succeeded
+
+# failing commands that are part of an AND or OR list should not
+# cause the shell to exit
+false && echo AND list failed
+echo AND list succeeded
+
+false || echo OR list succeeded
+
+! false
+echo ! succeeded
+
+# make sure eval preserves the state of the -e flag and `!' reserved word
+set -e
+if eval false; then
+ echo oops
+fi
+echo eval succeeded
+
+! eval false
+echo ! eval succeeded -- 1
+
+! eval '(exit 5)'
+echo ! eval succeeded -- 2
+
+set -e
+until builtin false; do echo a; break; done
+echo $?
+
+until eval false; do echo b; break; done
+echo $?
+
+: ${TMPDIR:=/tmp}
+FN=$TMPDIR/set-e-$$
+cat > $FN << EOF
+false
+echo after 1
+false
+EOF
+
+set -e
+until . $FN; do echo a; break; done
+echo $?
+
+rm -f $FN
+
+set +e
+
+${THIS_SH} ./set-e1.sub
+${THIS_SH} ./set-e2.sub
--- /dev/null
+# subshell failure should cause the shell to exit silently
+${THIS_SH} -ce '(exit 17) ; echo "after (exit 17): $?"'
+
+# pipeline failure should cause shell to exit silently
+${THIS_SH} -c 'set -e ; false | echo foo | while read x ; do ( exit 17 ) ; done; echo after pipeline subshell;'
+
+# should be silent in posix mode
+${THIS_SH} -c 'set -o posix; set -e ; z=$(false;echo posix foo) ; echo $z'
+# but echo foo in non-posix
+${THIS_SH} -c 'set -e ; z=$(false;echo non-posix foo) ; echo $z'
+
+${THIS_SH} -ce 'x=$(false) ; echo "x=\$(false) does not exit"'
+
+${THIS_SH} -ce '{ false; echo false in brace group does not exit; }'
+echo after brace group failure: $?
+
+${THIS_SH} -ce '(false ; echo A $?) && echo B $?; echo C $?'; echo D $?
+
+${THIS_SH} -ce '(false ; echo A $?) ; echo B $?; echo C $?'; echo D $?
+
+${THIS_SH} -ce 'f() (false ; echo A $?); f && echo B $?; echo C $?'; echo D $?
+
+${THIS_SH} -ce 'f() (false ; echo A $?) ; f; echo B $?; echo C $?'; echo D $?
+
+${THIS_SH} -ce 'if false; echo A $?; then echo B $?; fi'; echo C $?
+
+${THIS_SH} -ce '! { false; echo A $?; } | cat; echo B $?'; echo C $?
+
+${THIS_SH} -ce '{ false; echo A $?; } | cat ; echo B $?'; echo C $?
+
+set -e
+
+! false
+echo after negation 1: $?
+
+! false | false
+echo after negation 2: $?
+
+! true
+echo after negation 3: $?
+
+! (false)
+echo after negation 4: $?
+
+{ false ; echo foo; } | cat
+echo after brace pipeline
+
+false | echo foo | cat
+echo after failure 1
+
+false | (echo foo; false) | true
+echo after failure 2
+
+false | echo foo | while read x ; do ( exit 17 ) ; done | true
+echo after failure 3
+
+# this pipeline failure should cause the shell to exit
+false | echo foo | false
+echo after failure 4
--- /dev/null
+# subshell failure should cause the shell to exit silently
+${THIS_SH} -ce '(exit 17) ; echo "after (exit 17): $?"'
+
+# pipeline failure should cause shell to exit silently
+${THIS_SH} -c 'set -e ; false | echo foo | while read x ; do ( exit 17 ) ; done; echo after pipeline subshell;'
+
+# should be silent in posix mode
+${THIS_SH} -c 'set -o posix; set -e ; z=$(false;echo posix foo) ; echo $z'
+# but echo foo in non-posix
+${THIS_SH} -c 'set -e ; z=$(false;echo non-posix foo) ; echo $z'
+
+${THIS_SH} -ce 'x=$(false) ; echo "x=\$(false) does not exit"'
+
+${THIS_SH} -ce '{ false; echo false in brace group does not exit; }'
+echo after brace group failure: $?
+
+set -e
+
+! false
+echo after negation 1: $?
+
+! false | false
+echo after negation 2: $?
+
+! true
+echo after negation 3: $?
+
+! (false)
+echo after negation 4: $?
+
+{ false ; echo foo; } | cat
+echo after brace pipeline
+
+false | echo foo | cat
+echo after failure 1
+
+false | (echo foo; false) | true
+echo after failure 2
+
+false | echo foo | while read x ; do ( exit 17 ) ; done | true
+echo after failure 3
+
+# this pipeline failure should cause the shell to exit
+false | echo foo | false
+echo after failure 4
--- /dev/null
+${THIS_SH} -ce 'true || false ; echo "true || false no exit"'
+${THIS_SH} -ce 'false || false ; echo "false || false no exit"'
+${THIS_SH} -ce 'false || true ; echo "false || true no exit"'
+
+${THIS_SH} -ce 'false && false ; echo "false && false no exit"'
+${THIS_SH} -ce 'true && false ; echo "true && false no exit"'
+
+${THIS_SH} -ce 'true && (exit 1) ; echo "true && (exit 1) no exit"'
+${THIS_SH} -ce 'true && true|false ; echo "true && true|false no exit"'
+${THIS_SH} -ce 'true && true|(false) ; echo "true && true|(false) no exit"'