commit bash-4.1 snapshot

This commit is contained in:
Chet Ramey
2011-12-08 20:23:45 -05:00
parent a31435742f
commit 984a1947a3
91 changed files with 21303 additions and 9229 deletions
-1
View File
@@ -1 +0,0 @@
CWRU.chlog
+9326
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -397,10 +397,10 @@ BASHINCFILES = $(BASHINCDIR)/posixstat.h $(BASHINCDIR)/ansi_stdlib.h \
$(BASHINCDIR)/shtty.h $(BASHINCDIR)/typemax.h \
$(BASHINCDIR)/ocache.h
LIBRARIES = $(SHLIB_LIB) $(READLINE_LIB) $(HISTORY_LIB) $(TERMCAP_LIB) $(GLOB_LIB) \
LIBRARIES = $(GLOB_LIB) $(SHLIB_LIB) $(READLINE_LIB) $(HISTORY_LIB) $(TERMCAP_LIB) \
$(TILDE_LIB) $(MALLOC_LIB) $(INTL_LIB) $(LIBICONV) $(LOCAL_LIBS)
LIBDEP = $(SHLIB_DEP) $(INTL_DEP) $(READLINE_DEP) $(HISTORY_DEP) $(TERMCAP_DEP) $(GLOB_DEP) \
LIBDEP = $(GLOB_DEP) $(SHLIB_DEP) $(INTL_DEP) $(READLINE_DEP) $(HISTORY_DEP) $(TERMCAP_DEP) \
$(TILDE_DEP) $(MALLOC_DEP)
LIBRARY_LDFLAGS = $(READLINE_LDFLAGS) $(HISTORY_LDFLAGS) $(GLOB_LDFLAGS) \
Vendored
+11 -11
View File
@@ -1,7 +1,7 @@
#! /bin/sh
# From configure.in for Bash 4.1, version 4.018.
# From configure.in for Bash 4.1, version 4.019.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.63 for bash 4.1-rc1.
# Generated by GNU Autoconf 2.63 for bash 4.1-release.
#
# Report bugs to <bug-bash@gnu.org>.
#
@@ -597,8 +597,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='bash'
PACKAGE_TARNAME='bash'
PACKAGE_VERSION='4.1-rc1'
PACKAGE_STRING='bash 4.1-rc1'
PACKAGE_VERSION='4.1-release'
PACKAGE_STRING='bash 4.1-release'
PACKAGE_BUGREPORT='bug-bash@gnu.org'
ac_unique_file="shell.h"
@@ -1411,7 +1411,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures bash 4.1-rc1 to adapt to many kinds of systems.
\`configure' configures bash 4.1-release to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1476,7 +1476,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of bash 4.1-rc1:";;
short | recursive ) echo "Configuration of bash 4.1-release:";;
esac
cat <<\_ACEOF
@@ -1652,7 +1652,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
bash configure 4.1-rc1
bash configure 4.1-release
generated by GNU Autoconf 2.63
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1666,7 +1666,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by bash $as_me 4.1-rc1, which was
It was created by bash $as_me 4.1-release, which was
generated by GNU Autoconf 2.63. Invocation command line was
$ $0 $@
@@ -2080,7 +2080,7 @@ ac_config_headers="$ac_config_headers config.h"
BASHVERS=4.1
RELSTATUS=rc1
RELSTATUS=release
case "$RELSTATUS" in
alp*|bet*|dev*|rc*|maint*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;;
@@ -31170,7 +31170,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by bash $as_me 4.1-rc1, which was
This file was extended by bash $as_me 4.1-release, which was
generated by GNU Autoconf 2.63. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -31233,7 +31233,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_version="\\
bash config.status 4.1-rc1
bash config.status 4.1-release
configured by $0, generated by GNU Autoconf 2.63,
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
+2 -2
View File
@@ -21,10 +21,10 @@ dnl Process this file with autoconf to produce a configure script.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_REVISION([for Bash 4.1, version 4.018])dnl
AC_REVISION([for Bash 4.1, version 4.019])dnl
define(bashvers, 4.1)
define(relstatus, rc1)
define(relstatus, release)
AC_INIT([bash], bashvers-relstatus, [bug-bash@gnu.org])
+177 -38
View File
@@ -1,4 +1,4 @@
This is the Bash FAQ, version 4.01, for Bash version 4.0.
This is the Bash FAQ, version 4.11, for Bash version 4.1.
This document contains a set of frequently-asked questions concerning
Bash, the GNU Bourne-Again Shell. Bash is a freely-available command
@@ -36,9 +36,9 @@ A10) What is the bash `posix mode'?
Section B: The latest version
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?
B1) What's new in version 4.1?
B2) Are there any user-visible incompatibilities between bash-4.1 and
previous bash versions?
Section C: Differences from other Unix shells
@@ -81,6 +81,7 @@ E12) Why don't negative offsets in substring expansion work like I expect?
E13) Why does filename completion misbehave if a colon appears in the filename?
E14) Why does quoting the pattern argument to the regular expression matching
conditional operator (=~) cause matching to stop working?
E15) Tell me more about the shell compatibility level.
Section F: Things to watch out for on certain Unix versions
@@ -143,26 +144,26 @@ of Case Western Reserve University.
A2) What's the latest version?
The latest version is 4.0, first made available on 20 February, 2009.
The latest version is 4.1, first made available on 31 December, 2009.
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 4.0:
The following URLs tell how to get version 4.1:
ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0.tar.gz
ftp://ftp.cwru.edu/pub/bash/bash-4.0.tar.gz
ftp://ftp.gnu.org/pub/gnu/bash/bash-4.1.tar.gz
ftp://ftp.cwru.edu/pub/bash/bash-4.1.tar.gz
Formatted versions of the documentation are available with the URLs:
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
ftp://ftp.gnu.org/pub/gnu/bash/bash-doc-4.1.tar.gz
ftp://ftp.cwru.edu/pub/bash/bash-doc-4.1.tar.gz
Any patches for the current version are available with the URL:
ftp://ftp.cwru.edu/pub/bash/bash-4.0-patches/
ftp://ftp.cwru.edu/pub/bash/bash-4.1-patches/
A4) On what machines will bash run?
@@ -194,7 +195,7 @@ http://www.cygwin.com/.
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.2 to the CYGWIN environment, and both
ports of bash-3.2 and bash-4.0 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
@@ -218,7 +219,7 @@ Mark began to work with bash-2.05, but I don't know the current status.
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-4.0, but will gladly accept any patches that are needed.
with building bash-4.1, but will gladly accept any patches that are needed.
A6) How can I build bash with gcc?
@@ -387,16 +388,124 @@ They are also listed in a section in the Bash Reference Manual
Section B: The latest version
B1) What's new in version 4.0?
B1) What's new in version 4.1?
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.1 is the first revision to the fourth major release of bash.
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
Bash-4.1 contains the following new features (see the manual page for
complete descriptions and the CHANGES and NEWS files in the bash-4.1
distribution):
o Here-documents within $(...) command substitutions may once more be
delimited by the closing right paren, instead of requiring a newline.
o Bash's file status checks (executable, readable, etc.) now take file
system ACLs into account on file systems that support them.
o Bash now passes environment variables with names that are not valid
shell variable names through into the environment passed to child
processes.
o The `execute-unix-command' readline function now attempts to clear and
reuse the current line rather than move to a new one after the command
executes.
o `printf -v' can now assign values to array indices.
o New `complete -E' and `compopt -E' options that work on the "empty"
completion: completion attempted on an empty command line.
o New complete/compgen/compopt -D option to define a `default' completion:
a completion to be invoked on command for which no completion has been
defined. If this function returns 124, programmable completion is
attempted again, allowing a user to dynamically build a set of completions
as completion is attempted by having the default completion function
install individual completion functions each time it is invoked.
o When displaying associative arrays, subscripts are now quoted.
o Changes to dabbrev-expand to make it more `emacs-like': no space appended
after matches, completions are not sorted, and most recent history entries
are presented first.
o The [[ and (( commands are now subject to the setting of `set -e' and the
ERR trap.
o The source/. builtin now removes NUL bytes from the file before attempting
to parse commands.
o There is a new configuration option (in config-top.h) that forces bash to
forward all history entries to syslog.
o A new variable $BASHOPTS to export shell options settable using `shopt' to
child processes.
o There is a new confgure option that forces the extglob option to be
enabled by default.
o New variable $BASH_XTRACEFD; when set to an integer bash will write xtrace
output to that file descriptor.
o If the optional left-hand-side of a redirection is of the form {var}, the
shell assigns the file descriptor used to $var or uses $var as the file
descriptor to move or close, depending on the redirection operator.
o The < and > operators to the [[ conditional command now do string
comparison according to the current locale.
o Programmable completion now uses the completion for `b' instead of `a'
when completion is attempted on a line like: a $(b c.
o Force extglob on temporarily when parsing the pattern argument to
the == and != operators to the [[ command, for compatibility.
o Changed the behavior of interrupting the wait builtin when a SIGCHLD is
received and a trap on SIGCHLD is set to be Posix-mode only.
o The read builtin has a new `-N nchars' option, which reads exactly NCHARS
characters, ignoring delimiters like newline.
o The mapfile/readarray builtin no longer stores the commands it invokes via
callbacks in the history list.
o There is a new `compat40' shopt option.
o The < and > operators to [[ do string comparisons using the current locale
only if the compatibility level is greater than 40 (set to 41 by default).
o New bindable readline function: menu-complete-backward.
o In the readline vi-mode insertion keymap, C-n is now bound to menu-complete
by default, and C-p to menu-complete-backward.
o When in readline vi command mode, repeatedly hitting ESC now does nothing,
even when ESC introduces a bound key sequence. This is closer to how
historical vi behaves.
o New bindable readline function: skip-csi-sequence. Can be used as a
default to consume key sequences generated by keys like Home and End
without having to bind all keys.
o New bindable readline variable: skip-completed-text, active when
completing in the middle of a word. If enabled, it means that characters
in the completion that match characters in the remainder of the word are
"skipped" rather than inserted into the line.
o The pre-readline-6.0 version of menu completion is available as
"old-menu-complete" for users who do not like the readline-6.0 version.
o New bindable readline variable: echo-control-characters. If enabled, and
the tty ECHOCTL bit is set, controls the echoing of characters
corresponding to keyboard-generated signals.
o New bindable readline variable: enable-meta-key. Controls whether or not
readline sends the smm/rmm sequences if the terminal indicates it has a
meta key that enables eight-bit characters.
A short feature history dating from Bash-2.0:
Bash-4.0 contained the following new features:
o When using substring expansion on the positional parameters, a starting
index of 0 now causes $0 to be prefixed to the list.
@@ -536,8 +645,6 @@ 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
@@ -794,13 +901,14 @@ grammar tighter and smaller (66 reduce-reduce conflicts gone)
lots of code now smaller and faster
test suite greatly expanded
B2) Are there any user-visible incompatibilities between bash-4.0, bash-3.2,
and bash-2.05b?
B2) Are there any user-visible incompatibilities between bash-4.1 and
previous bash versions?
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.
There are a few incompatibilities between version 4.1 and previous
versions. 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 (or bug-bash@gnu.org if you would like
community discussion) if if you find something that's not mentioned there.
Section C: Differences from other Unix shells
@@ -837,7 +945,7 @@ Things bash has that sh does not:
HISTFILESIZE, HISTCONTROL, HISTIGNORE, GLOBIGNORE, GROUPS,
PROMPT_COMMAND, FCEDIT, FIGNORE, IGNOREEOF, INPUTRC,
SHELLOPTS, OPTERR, HOSTFILE, TMOUT, FUNCNAME, histchars,
auto_resume, PROMPT_DIRTRIM
auto_resume, PROMPT_DIRTRIM, BASHOPTS, BASH_XTRACEFD
DEBUG trap
ERR trap
variable arrays with new compound assignment syntax
@@ -848,7 +956,7 @@ Things bash has that sh does not:
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/-i,
read -e/-p/-a/-t/-n/-d/-s/-u/-i/-N,
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,
@@ -894,6 +1002,7 @@ Things bash has that sh does not:
case-modifying word expansions and variable attributes
associative arrays
coprocesses using the `coproc' reserved word and variables
shell assignment of a file descriptor used in a redirection to a variable
Things sh has that bash does not:
uses variable SHACCT to do shell accounting
@@ -950,7 +1059,7 @@ Things bash has or uses that ksh88 does not:
builtins: bind, builtin, command, declare, dirs, echo -e/-E, enable,
exec -l/-c/-a, fc -s, export -n/-f/-p, hash, help, history,
jobs -x/-r/-s, kill -s/-n/-l, local, logout, popd, pushd,
read -e/-p/-a/-t/-n/-d/-s, readonly -a/-n/-f/-p,
read -e/-p/-a/-t/-n/-d/-s/-N, readonly -a/-n/-f/-p,
set -o braceexpand/-o histexpand/-o interactive-comments/
-o notify/-o physical/-o posix/-o hashall/-o onecmd/
-h/-B/-C/-b/-H/-P, set +o, suspend, trap -l, type,
@@ -979,6 +1088,7 @@ Things bash has or uses that ksh88 does not:
case-modifying word expansions and variable attributes
associative arrays
coprocesses using the `coproc' reserved word and variables
shell assignment of a file descriptor used in a redirection to a variable
Things ksh88 has or uses that bash does not:
tracked aliases (alias -t)
@@ -1006,9 +1116,9 @@ Implementation differences:
C3) Which new features in ksh-93 are not in bash, and which are?
This list is current through ksh93t (11/04/2008)
This list is current through ksh93t+ (05/05/2009)
New things in ksh-93 not in bash-4.0:
New things in ksh-93 not in bash-4.1:
floating point arithmetic and variables
math library functions
${!name[sub]} name of subscript for associative array
@@ -1031,10 +1141,11 @@ New things in ksh-93 not in bash-4.0:
`.' 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
read -n/-N differ/-v
set -o showme/-o multiline (bash default)
`sleep' and `getconf' builtins (bash has loadable versions)
typeset -n and `nameref' variables
[[ -R name ]] (checks whether or not name is a nameref)
typeset -C/-S/-T/-X/-h/-s
experimental `type' definitions (a la typedef) using typeset
negative subscripts for indexed array variables
@@ -1042,11 +1153,11 @@ New things in ksh-93 not in bash-4.0:
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
new >;/<>;/<#pat/<##pat/<#/># redirections
brace expansion printf-like formats
[[ -v var ]] operators (checks whether or not var is set)
New things in ksh-93 present in bash-4.0:
New things in ksh-93 present in bash-4.1:
associative arrays
[n]<&word- and [n]>&word- redirections (combination dup and close)
for (( expr1; expr2; expr3 )) ; do list; done - arithmetic for command
@@ -1080,6 +1191,8 @@ New things in ksh-93 present in bash-4.0:
the `;&' case statement "fallthrough" pattern list terminator
csh-style history expansion and set -H
negative offsets in ${param:offset:length}
redirection operators preceded with {varname} to store fd number in varname
DEBUG can force skipping following command
Section D: Why does bash do some things differently than other Unix shells?
@@ -1641,6 +1754,32 @@ 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.
E15) Tell me more about the shell compatibility level.
Bash-4.0 introduced the concept of a `shell compatibility level', specified
as a set of options to the shopt builtin (compat31, compat32, compat40 at
this writing). There is only one current compatibility level -- each
option is mutually exclusive. This list does not mention behavior that is
standard for a particular version (e.g., setting compat32 means that quoting
the rhs of the regexp matching operator quotes special regexp characters in
the word, which is default behavior in bash-3.2 and above).
compat31 set
- the < and > operators to the [[ command do not consider the current
locale when comparing strings
- quoting the rhs of the regexp matching operator (=~) has no
special effect
compat32 set
- the < and > operators to the [[ command do not consider the current
locale when comparing strings
compat40 set
- the < and > operators to the [[ command do not consider the current
locale when comparing strings
- interrupting a command list such as "a ; b ; c" causes the execution
of the entire list to be aborted
Section F: Things to watch out for on certain Unix versions
F1) Why can't I use command line editing in my `cmdtool'?
@@ -2049,9 +2188,9 @@ Some of the new ksh93 pattern matching operators, like backreferencing
H5) When will the next release appear?
The next version will appear sometime in 2009. Never make predictions.
The next version will appear sometime in 2010. Never make predictions.
This document is Copyright 1995-2009 by Chester Ramey.
This document is Copyright 1995-2010 by Chester Ramey.
Permission is hereby granted, without written agreement and
without license or royalty fees, to use, copy, and distribute
+1225 -1222
View File
File diff suppressed because it is too large Load Diff
+182 -54
View File
@@ -5,12 +5,12 @@
.\" Case Western Reserve University
.\" chet@po.cwru.edu
.\"
.\" Last Change: Wed Dec 23 16:29:14 EST 2009
.\" Last Change: Tue Dec 29 15:36:16 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 "2009 December 23" "GNU Bash-4.1"
.TH BASH 1 "2009 December 29" "GNU Bash-4.1"
.\"
.\" There's some problem with having a `@'
.\" in a tagged paragraph with the BSD man macros.
@@ -430,9 +430,12 @@ real user (group) id, and the \fB\-p\fP option is not supplied, no startup
files are read, shell functions are not inherited from the environment, the
.SM
.BR SHELLOPTS ,
.SM
.BR BASHOPTS ,
.SM
.BR CDPATH ,
and
.SM
.B GLOBIGNORE
variables, if they appear in the environment, are ignored,
and the effective user id is set to the real user id.
@@ -713,10 +716,18 @@ of alphabetic characters.
Any part of the pattern may be quoted to force it to be matched as a
string.
Substrings matched by parenthesized subexpressions within the regular
expression are saved in the array variable \fBBASH_REMATCH\fP.
The element of \fBBASH_REMATCH\fP with index 0 is the portion of the string
expression are saved in the array variable
.SM
.BR BASH_REMATCH .
The element of
.SM
.B BASH_REMATCH
with index 0 is the portion of the string
matching the entire regular expression.
The element of \fBBASH_REMATCH\fP with index \fIn\fP is the portion of the
The element of
.SM
.B BASH_REMATCH
with index \fIn\fP is the portion of the
string matching the \fIn\fPth parenthesized subexpression.
.if t .sp 0.5
.if n .sp 1
@@ -795,6 +806,7 @@ error, each preceded by a number. If the \fBin\fP
.SM
.B PARAMETERS
below). The
.SM
.B PS3
prompt is then displayed and a line read from the standard input.
If the line consists of a number corresponding to one of
@@ -805,6 +817,7 @@ are displayed again. If EOF is read, the command completes. Any
other value read causes
.I name
to be set to null. The line read is saved in the variable
.SM
.BR REPLY .
The
.I list
@@ -1356,9 +1369,12 @@ The number of
parameters to the current subroutine (shell function or script executed
with \fB.\fP or \fBsource\fP) is at the top of the stack.
When a subroutine is executed, the number of parameters passed is pushed onto
\fBBASH_ARGC\fP.
The shell sets \fBBASH_ARGC\fP only when in extended debugging mode
(see the description of the
.SM
.BR BASH_ARGC .
The shell sets
.SM
.B BASH_ARGC
only when in extended debugging mode (see the description of the
.B extdebug
option to the
.B shopt
@@ -1369,8 +1385,13 @@ An array variable containing all of the parameters in the current \fBbash\fP
execution call stack. The final parameter of the last subroutine call
is at the top of the stack; the first parameter of the initial call is
at the bottom. When a subroutine is executed, the parameters supplied
are pushed onto \fBBASH_ARGV\fP.
The shell sets \fBBASH_ARGV\fP only when in extended debugging mode
are pushed onto
.SM
.BR BASH_ARGV .
The shell sets
.SM
.B BASH_ARGV
only when in extended debugging mode
(see the description of the
.B extdebug
option to the
@@ -1393,13 +1414,18 @@ The command argument to the \fB\-c\fP invocation option.
.TP
.B BASH_LINENO
An array variable whose members are the line numbers in source files
corresponding to each member of \fBFUNCNAME\fP.
corresponding to each member of
.SM
.BR FUNCNAME .
\fB${BASH_LINENO[\fP\fI$i\fP\fB]}\fP is the line number in the source
file where \fB${FUNCNAME[\fP\fI$i\fP\fB]}\fP was called
(or \fB${BASH_LINENO[\fP\fI$i-1\fP\fB]}\fP if referenced within another
shell function).
The corresponding source file name is \fB${BASH_SOURCE[\fP\fI$i\fP\fB]}\fP.
Use \fBLINENO\fP to obtain the current line number.
Use
.SM
.B LINENO
to obtain the current line number.
.TP
.B BASH_REMATCH
An array variable whose members are assigned by the \fB=~\fP binary
@@ -1412,7 +1438,10 @@ This variable is read-only.
.TP
.B BASH_SOURCE
An array variable whose members are the source filenames corresponding
to the elements in the \fBFUNCNAME\fP array variable.
to the elements in the
.SM
.B FUNCNAME
array variable.
.TP
.B BASH_SUBSHELL
Incremented by one each time a subshell or subshell environment is spawned.
@@ -1443,7 +1472,9 @@ The build version.
The release status (e.g., \fIbeta1\fP).
.TP
.B BASH_VERSINFO[\fR5\fP]
The value of \fBMACHTYPE\fP.
The value of
.SM
.BR MACHTYPE .
.PD
.RE
.TP
@@ -1506,7 +1537,9 @@ subsequently reset.
An array variable (see \fBArrays\fP below) consisting of the individual
words in the current command line.
The line is split into words as \fBreadline\fP would split it, using
\fBCOMP_WORDBREAKS\fP as described above.
.SM
.B COMP_WORDBREAKS
as described above.
This variable is available only in shell functions invoked by the
programmable completion facilities (see \fBProgrammable Completion\fP
below).
@@ -1751,11 +1784,19 @@ will write the trace output generated when
.if t \f(CWset -x\fP
.if n \fIset -x\fP
is enabled to that file descriptor.
The file descriptor is closed when \fBBASH_XTRACEFD\fP is unset or assigned
a new value.
Unsetting \fBBASH_XTRACEFD\fP or assigning it the empty string causes the
The file descriptor is closed when
.SM
.B BASH_XTRACEFD
is unset or assigned a new value.
Unsetting
.SM
.B BASH_XTRACEFD
or assigning it the empty string causes the
trace output to be sent to the standard error.
Note that setting \fPBASH_XTRACEFD\fP to 2 (the standard error file
Note that setting
.SM
.B BASH_XTRACEFD
to 2 (the standard error file
descriptor) and then unsetting it will result in the standard error
being closed.
.TP
@@ -1823,12 +1864,17 @@ A value of
causes all previous lines matching the current line to be removed from
the history list before that line is saved.
Any value not in the above list is ignored.
If \fBHISTCONTROL\fP is unset, or does not include a valid value,
If
.SM
.B HISTCONTROL
is unset, or does not include a valid value,
all lines read by the shell parser are saved on the history list,
subject to the value of
.SM
.BR HISTIGNORE .
The second and subsequent lines of a multi-line compound command are
not tested, and are added to the history regardless of the value of
.SM
.BR HISTCONTROL .
.TP
.B HISTFILE
@@ -1852,6 +1898,7 @@ should be saved on the history list. Each pattern is anchored at the
beginning of the line and must match the complete line (no implicit
`\fB*\fP' is appended). Each pattern is tested against the line
after the checks specified by
.SM
.B HISTCONTROL
are applied.
In addition to the normal shell pattern matching characters, `\fB&\fP'
@@ -1859,6 +1906,7 @@ matches the previous history line. `\fB&\fP' may be escaped using a
backslash; the backslash is removed before attempting a match.
The second and subsequent lines of a multi-line compound command are
not tested, and are added to the history regardless of the value of
.SM
.BR HISTIGNORE .
.TP
.B HISTSIZE
@@ -1947,7 +1995,10 @@ Used to determine the locale category for any category not specifically
selected with a variable starting with \fBLC_\fP.
.TP
.B LC_ALL
This variable overrides the value of \fBLANG\fP and any other
This variable overrides the value of
.SM
.B LANG
and any other
\fBLC_\fP variable specifying a locale category.
.TP
.B LC_COLLATE
@@ -1970,7 +2021,9 @@ This variable determines the locale category used for number formatting.
.TP
.B LINES
Used by the \fBselect\fP builtin command to determine the column length
for printing selection lists. Automatically set upon receipt of a SIGWINCH.
for printing selection lists. Automatically set upon receipt of a
.SM
.BR SIGWINCH .
.TP
.B MAIL
If this parameter is set to a file name and the
@@ -2026,8 +2079,10 @@ the shell looks for commands (see
.SM
.B COMMAND EXECUTION
below).
A zero-length (null) directory name in the value of \fBPATH\fP indicates the
current directory.
A zero-length (null) directory name in the value of
.SM
.B PATH
indicates the current directory.
A null directory name may appear as two adjacent colons, or as an initial
or trailing colon.
The default path is system-dependent,
@@ -2068,6 +2123,7 @@ below) and used as the primary prompt string. The default value is
.TP
.B PS2
The value of this parameter is expanded as with
.SM
.B PS1
and used as the secondary prompt string. The default is
``\fB> \fP''.
@@ -2082,6 +2138,7 @@ above).
.TP
.B PS4
The value of this parameter is expanded as with
.SM
.B PS1
and the value is printed before each command
.B bash
@@ -2145,10 +2202,16 @@ If the value is null, no timing information is displayed.
A trailing newline is added when the format string is displayed.
.TP
.B TMOUT
If set to a value greater than zero, \fBTMOUT\fP is treated as the
If set to a value greater than zero,
.SM
.B TMOUT
is treated as the
default timeout for the \fBread\fP builtin.
The \fBselect\fP command terminates if input does not arrive
after \fBTMOUT\fP seconds when input is coming from a terminal.
after
.SM
.B TMOUT
seconds when input is coming from a terminal.
In an interactive shell, the value is interpreted as the
number of seconds to wait for input after issuing the primary prompt.
.B Bash
@@ -3096,7 +3159,10 @@ or a
.B ^
then any character not enclosed is matched.
The sorting order of characters in range expressions is determined by
the current locale and the value of the \fBLC_COLLATE\fP shell variable,
the current locale and the value of the
.SM
.B LC_COLLATE
shell variable,
if set.
A
.B \-
@@ -4077,7 +4143,7 @@ arguments, if any.
.SH COMMAND EXECUTION ENVIRONMENT
The shell has an \fIexecution environment\fP, which consists of the
following:
.sp 1
.if n .sp 1
.IP \(bu
open files inherited by the shell at invocation, as modified by
redirections supplied to the \fBexec\fP builtin
@@ -4104,14 +4170,16 @@ options enabled by \fBshopt\fP
shell aliases defined with \fBalias\fP
.IP \(bu
various process IDs, including those of background jobs, the value
of \fB$$\fP, and the value of \fB$PPID\fP
of \fB$$\fP, and the value of
.SM
.B PPID
.PP
When a simple command other than a builtin or shell function
is to be executed, it
is invoked in a separate execution environment that consists of
the following. Unless otherwise noted, the values are inherited
from the shell.
.sp 1
.if n .sp 1
.IP \(bu
the shell's open files, plus any modifications and additions specified
by redirections to the command
@@ -4568,11 +4636,19 @@ the version of \fBbash\fP (e.g., 2.00)
the release of \fBbash\fP, version + patch level (e.g., 2.00.0)
.TP
.B \ew
the current working directory, with \fB$HOME\fP abbreviated with a tilde
(uses the \fB$PROMPT_DIRTRIM\fP variable)
the current working directory, with
.SM
.B $HOME
abbreviated with a tilde
(uses the value of the
.SM
.B PROMPT_DIRTRIM
variable)
.TP
.B \eW
the basename of the current working directory, with \fB$HOME\fP
the basename of the current working directory, with
.SM
.B $HOME
abbreviated with a tilde
.TP
.B \e!
@@ -5969,7 +6045,10 @@ option to the
builtin is enabled, the shell provides access to the
\fIcommand history\fP,
the list of commands previously typed.
The value of the \fBHISTSIZE\fP variable is used as the
The value of the
.SM
.B HISTSIZE
variable is used as the
number of commands to save in a history list.
The text of the last
.SM
@@ -6029,7 +6108,7 @@ is unset, or if the history file is unwritable, the history is
not saved.
If the
.SM
.HISTTIMEFORMAT
.B HISTTIMEFORMAT
variable is set, time stamps are written to the history file, marked
with the history comment character, so
they may be preserved across shell sessions.
@@ -6135,7 +6214,7 @@ If the
.B histverify
shell option is enabled (see the description of the
.B shopt
builtin), and
builtin below), and
.B readline
is being used, history substitutions are not immediately passed to
the shell parser.
@@ -6528,13 +6607,17 @@ Remove any current binding for \fIkeyseq\fP.
Cause \fIshell\-command\fP to be executed whenever \fIkeyseq\fP is
entered.
When \fIshell\-command\fP is executed, the shell sets the
.SM
.B READLINE_LINE
variable to the contents of the \fBreadline\fP line buffer and the
.SM
.B READLINE_POINT
variable to the current location of the insertion point.
If the executed command changes the value of
.SM
.B READLINE_LINE
or
.SM
.BR READLINE_POINT ,
those new values will be reflected in the editing state.
.PD
@@ -6622,7 +6705,10 @@ option forces symbolic links to be followed. An argument of
is equivalent to
.SM
.BR $OLDPWD .
If a non-empty directory name from \fBCDPATH\fP is used, or if
If a non-empty directory name from
.SM
.B CDPATH
is used, or if
\fB\-\fP is the first argument, and the directory change is
successful, the absolute pathname of the new working directory is
written to the standard output.
@@ -6643,6 +6729,7 @@ are executed. If the
option is given, the search for
.I command
is performed using a default value for
.SM
.B PATH
that is guaranteed to find all of the standard utilities.
If either the
@@ -6979,8 +7066,8 @@ Use function names only.
.B \-i
The variable is treated as an integer; arithmetic evaluation (see
.SM
.B "ARITHMETIC EVALUATION" ") "
is performed when the variable is assigned a value.
.B "ARITHMETIC EVALUATION"
above) is performed when the variable is assigned a value.
.TP
.B \-l
When the variable is assigned a value, all upper-case characters are
@@ -7009,7 +7096,7 @@ Mark \fIname\fPs for export to subsequent commands via the environment.
Using `+' instead of `\-'
turns off the attribute instead,
with the exceptions that \fB+a\fP
may not be used to destroy an array variable and \fB+r\fB will not
may not be used to destroy an array variable and \fB+r\fP will not
remove the readonly attribute.
When used in a function,
makes each
@@ -7082,7 +7169,7 @@ Without options, each
is removed from the table of active jobs.
If
.I jobspec
is not present, and neither \fB\-a\fB nor \fB\-r\fP is supplied,
is not present, and neither \fB\-a\fP nor \fB\-r\fP is supplied,
the shell's notion of the \fIcurrent job\fP is used.
If the \fB\-h\fP option is given, each
.I jobspec
@@ -7451,7 +7538,9 @@ is to be used.
.sp 1
When the end of options is encountered, \fBgetopts\fP exits with a
return value greater than zero.
\fBOPTIND\fP is set to the index of the first non-option argument,
.SM
.B OPTIND
is set to the index of the first non-option argument,
and \fBname\fP is set to ?.
.sp 1
.B getopts
@@ -7595,7 +7684,10 @@ have been modified. An argument of
lists only the last
.I n
lines.
If the shell variable \fBHISTTIMEFORMAT\fP is set and not null,
If the shell variable
.SM
.B HISTTIMEFORMAT
is set and not null,
it is used as a format string for \fIstrftime\fP(3) to display
the time stamp associated with each displayed history entry.
No intervening blank is printed between the formatted time stamp
@@ -7647,7 +7739,10 @@ history list is removed before the
are added.
.PD
.PP
If the \fBHISTTIMEFORMAT\fP is set, the time stamp information
If the
.SM
.B HISTTIMEFORMAT
variable is set, the time stamp information
associated with each history entry is written to the history file,
marked with the history comment character.
When the history file is read, lines beginning with the history
@@ -7762,7 +7857,8 @@ Each
.I arg
is an arithmetic expression to be evaluated (see
.SM
.BR "ARITHMETIC EVALUATION" ).
.B "ARITHMETIC EVALUATION"
above).
If the last
.I arg
evaluates to 0,
@@ -7807,7 +7903,10 @@ or from file descriptor
if the
.B \-u
option is supplied.
The variable \fBMAPFILE\fP is the default \fIarray\fP.
The variable
.SM
.B MAPFILE
is the default \fIarray\fP.
Options, if supplied, have the following meanings:
.RS
.PD 0
@@ -7828,7 +7927,7 @@ The default index is 0.
Discard the first \fIcount\fP lines read.
.TP
.B \-t
Remove a trailing line from each line read.
Remove a trailing newline from each line read.
.TP
.B \-u
Read lines from file descriptor \fIfd\fP instead of the standard input.
@@ -8228,6 +8327,7 @@ being inverted with
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
.SM
.B "COMMAND EXECUTION ENVIRONMENT"
above), and may cause
subshells to exit before executing all the commands in the subshell.
@@ -8407,9 +8507,12 @@ files are not processed, shell functions are not inherited from the
environment, and the
.SM
.BR SHELLOPTS ,
.SM
.BR BASHOPTS ,
.SM
.BR CDPATH ,
and
.SM
.B GLOBIGNORE
variables, if they appear in the environment, are ignored.
If the shell is started with the effective user (group) id not equal to the
@@ -8622,7 +8725,10 @@ longer exists, a normal path search is performed.
If set, \fBbash\fP lists the status of any stopped and running jobs before
exiting an interactive shell. If any jobs are running, this causes
the exit to be deferred until a second exit is attempted without an
intervening command (see \fBJOB CONTROL\fP above). The shell always
intervening command (see
.SM
.B "JOB CONTROL"
above). The shell always
postpones exiting if any jobs are stopped.
.TP 8
.B checkwinsize
@@ -8706,8 +8812,12 @@ executed by the \fB.\fP or \fBsource\fP builtins), a call to
\fBreturn\fP is simulated.
.TP
.B 4.
\fBBASH_ARGC\fP and \fBBASH_ARGV\fP are updated as described in their
descriptions above.
.SM
.B BASH_ARGC
and
.SM
.B BASH_ARGV
are updated as described in their descriptions above.
.TP
.B 5.
Function tracing is enabled: command substitution, shell functions, and
@@ -8734,13 +8844,18 @@ If set, patterns which fail to match filenames during pathname expansion
result in an expansion error.
.TP 8
.B force_fignore
If set, the suffixes specified by the \fBFIGNORE\fP shell variable
If set, the suffixes specified by the
.SM
.B FIGNORE
shell variable
cause words to be ignored when performing word completion even if
the ignored words are the only possible completions.
See
.SM
\fBSHELL VARIABLES\fP
above for a description of \fBFIGNORE\fP.
above for a description of
.SM
.BR FIGNORE .
This option is enabled by default.
.TP 8
.B globstar
@@ -8756,6 +8871,7 @@ message format.
.B histappend
If set, the history list is appended to the file named by the value
of the
.SM
.B HISTFILE
variable when the shell exits, rather than overwriting the file.
.TP 8
@@ -8822,7 +8938,10 @@ If set, and
.B readline
is being used,
.B bash
will not attempt to search the \fBPATH\fP for possible completions when
will not attempt to search the
.SM
.B PATH
for possible completions when
completion is attempted on an empty line.
.TP 8
.B nocaseglob
@@ -9353,6 +9472,8 @@ Each unset variable or function is removed from the environment
passed to subsequent commands.
If any of
.SM
.BR COMP_WORDBREAKS ,
.SM
.BR RANDOM ,
.SM
.BR SECONDS ,
@@ -9409,10 +9530,14 @@ with the exception that the following are disallowed or not performed:
changing directories with \fBcd\fP
.IP \(bu
setting or unsetting the values of
.SM
.BR SHELL ,
.SM
.BR PATH ,
.SM
.BR ENV ,
or
.SM
.B BASH_ENV
.IP \(bu
specifying command names containing
@@ -9432,7 +9557,10 @@ builtin command
.IP \(bu
importing function definitions from the shell environment at startup
.IP \(bu
parsing the value of \fBSHELLOPTS\fP from the shell environment at startup
parsing the value of
.SM
.B SHELLOPTS
from the shell environment at startup
.IP \(bu
redirecting output using the >, >|, <>, >&, &>, and >> redirection operators
.IP \(bu
+263 -87
View File
@@ -3,7 +3,7 @@
</HEAD>
<BODY><TABLE WIDTH=100%>
<TR>
<TH ALIGN=LEFT width=33%>BASH(1)<TH ALIGN=CENTER width=33%>2009 December 23<TH ALIGN=RIGHT width=33%>BASH(1)
<TH ALIGN=LEFT width=33%>BASH(1)<TH ALIGN=CENTER width=33%>2009 December 29<TH ALIGN=RIGHT width=33%>BASH(1)
</TR>
</TABLE>
<BR><A HREF="#index">Index</A>
@@ -558,13 +558,16 @@ files are read, shell functions are not inherited from the environment, the
<FONT SIZE=-1><B>SHELLOPTS</B>,
</FONT>
<B>BASHOPTS</B>,
<FONT SIZE=-1><B>BASHOPTS</B>,
<B>CDPATH</B>,
</FONT>
<FONT SIZE=-1><B>CDPATH</B>,
</FONT>
and
<B>GLOBIGNORE</B>
<FONT SIZE=-1><B>GLOBIGNORE</B>
</FONT>
variables, if they appear in the environment, are ignored,
and the effective user id is set to the real user id.
If the <B>-p</B> option is supplied at invocation, the startup behavior is
@@ -938,10 +941,21 @@ of alphabetic characters.
Any part of the pattern may be quoted to force it to be matched as a
string.
Substrings matched by parenthesized subexpressions within the regular
expression are saved in the array variable <B>BASH_REMATCH</B>.
The element of <B>BASH_REMATCH</B> with index 0 is the portion of the string
expression are saved in the array variable
<FONT SIZE=-1><B>BASH_REMATCH</B>.
</FONT>
The element of
<FONT SIZE=-1><B>BASH_REMATCH</B>
</FONT>
with index 0 is the portion of the string
matching the entire regular expression.
The element of <B>BASH_REMATCH</B> with index <I>n</I> is the portion of the
The element of
<FONT SIZE=-1><B>BASH_REMATCH</B>
</FONT>
with index <I>n</I> is the portion of the
string matching the <I>n</I>th parenthesized subexpression.
<P>
@@ -1032,8 +1046,9 @@ error, each preceded by a number. If the <B>in</B>
</FONT>
below). The
<B>PS3</B>
<FONT SIZE=-1><B>PS3</B>
</FONT>
prompt is then displayed and a line read from the standard input.
If the line consists of a number corresponding to one of
the displayed words, then the value of
@@ -1045,8 +1060,9 @@ other value read causes
<I>name</I>
to be set to null. The line read is saved in the variable
<B>REPLY</B>.
<FONT SIZE=-1><B>REPLY</B>.
</FONT>
The
<I>list</I>
@@ -1363,6 +1379,9 @@ alert (bell)
backspace
<DT><B>\e</B>
<DD>
<DT><B>\E</B>
<DD>
an escape character
<DT><B>\f</B>
@@ -1393,6 +1412,10 @@ backslash
<DD>
single quote
<DT><B>\dq</B>
<DD>
double quote
<DT><B>\</B><I>nnn</I>
<DD>
@@ -1757,9 +1780,14 @@ The number of
parameters to the current subroutine (shell function or script executed
with <B>.</B> or <B>source</B>) is at the top of the stack.
When a subroutine is executed, the number of parameters passed is pushed onto
<B>BASH_ARGC</B>.
The shell sets <B>BASH_ARGC</B> only when in extended debugging mode
(see the description of the
<FONT SIZE=-1><B>BASH_ARGC</B>.
</FONT>
The shell sets
<FONT SIZE=-1><B>BASH_ARGC</B>
</FONT>
only when in extended debugging mode (see the description of the
<B>extdebug</B>
option to the
@@ -1773,8 +1801,15 @@ An array variable containing all of the parameters in the current <B>bash</B>
execution call stack. The final parameter of the last subroutine call
is at the top of the stack; the first parameter of the initial call is
at the bottom. When a subroutine is executed, the parameters supplied
are pushed onto <B>BASH_ARGV</B>.
The shell sets <B>BASH_ARGV</B> only when in extended debugging mode
are pushed onto
<FONT SIZE=-1><B>BASH_ARGV</B>.
</FONT>
The shell sets
<FONT SIZE=-1><B>BASH_ARGV</B>
</FONT>
only when in extended debugging mode
(see the description of the
<B>extdebug</B>
@@ -1803,13 +1838,20 @@ The command argument to the <B>-c</B> invocation option.
<DD>
An array variable whose members are the line numbers in source files
corresponding to each member of <B>FUNCNAME</B>.
corresponding to each member of
<FONT SIZE=-1><B>FUNCNAME</B>.
</FONT>
<B>${BASH_LINENO[</B><I>$i</I><B>]}</B> is the line number in the source
file where <B>${FUNCNAME[</B><I>$i</I><B>]}</B> was called
(or <B>${BASH_LINENO[</B><I>$i-1</I><B>]}</B> if referenced within another
shell function).
The corresponding source file name is <B>${BASH_SOURCE[</B><I>$i</I><B>]}</B>.
Use <B>LINENO</B> to obtain the current line number.
Use
<FONT SIZE=-1><B>LINENO</B>
</FONT>
to obtain the current line number.
<DT><B>BASH_REMATCH</B>
<DD>
@@ -1824,7 +1866,11 @@ This variable is read-only.
<DD>
An array variable whose members are the source filenames corresponding
to the elements in the <B>FUNCNAME</B> array variable.
to the elements in the
<FONT SIZE=-1><B>FUNCNAME</B>
</FONT>
array variable.
<DT><B>BASH_SUBSHELL</B>
<DD>
@@ -1865,7 +1911,10 @@ The release status (e.g., <I>beta1</I>).
<DT><B>BASH_VERSINFO[</B>5]
<DD>
The value of <B>MACHTYPE</B>.
The value of
<FONT SIZE=-1><B>MACHTYPE</B>.
</FONT>
</DL></DL>
@@ -1939,7 +1988,10 @@ subsequently reset.
An array variable (see <B>Arrays</B> below) consisting of the individual
words in the current command line.
The line is split into words as <B>readline</B> would split it, using
<B>COMP_WORDBREAKS</B> as described above.
<FONT SIZE=-1><B>COMP_WORDBREAKS</B>
</FONT>
as described above.
This variable is available only in shell functions invoked by the
programmable completion facilities (see <B>Programmable Completion</B>
below).
@@ -2252,11 +2304,22 @@ will write the trace output generated when
<TT>set -x</TT>
is enabled to that file descriptor.
The file descriptor is closed when <B>BASH_XTRACEFD</B> is unset or assigned
a new value.
Unsetting <B>BASH_XTRACEFD</B> or assigning it the empty string causes the
The file descriptor is closed when
<FONT SIZE=-1><B>BASH_XTRACEFD</B>
</FONT>
is unset or assigned a new value.
Unsetting
<FONT SIZE=-1><B>BASH_XTRACEFD</B>
</FONT>
or assigning it the empty string causes the
trace output to be sent to the standard error.
Note that setting BASH_XTRACEFD to 2 (the standard error file
Note that setting
<FONT SIZE=-1><B>BASH_XTRACEFD</B>
</FONT>
to 2 (the standard error file
descriptor) and then unsetting it will result in the standard error
being closed.
<DT><B>COLUMNS</B>
@@ -2340,15 +2403,21 @@ A value of
causes all previous lines matching the current line to be removed from
the history list before that line is saved.
Any value not in the above list is ignored.
If <B>HISTCONTROL</B> is unset, or does not include a valid value,
If
<FONT SIZE=-1><B>HISTCONTROL</B>
</FONT>
is unset, or does not include a valid value,
all lines read by the shell parser are saved on the history list,
subject to the value of
<B>HISTIGNORE</B>.
<FONT SIZE=-1><B>HISTIGNORE</B>.
</FONT>
The second and subsequent lines of a multi-line compound command are
not tested, and are added to the history regardless of the value of
<B>HISTCONTROL</B>.
<FONT SIZE=-1><B>HISTCONTROL</B>.
</FONT>
<DT><B>HISTFILE</B>
<DD>
@@ -2375,16 +2444,18 @@ should be saved on the history list. Each pattern is anchored at the
beginning of the line and must match the complete line (no implicit
`<B>*</B>' is appended). Each pattern is tested against the line
after the checks specified by
<B>HISTCONTROL</B>
<FONT SIZE=-1><B>HISTCONTROL</B>
</FONT>
are applied.
In addition to the normal shell pattern matching characters, `<B>&amp;</B>'
matches the previous history line. `<B>&amp;</B>' may be escaped using a
backslash; the backslash is removed before attempting a match.
The second and subsequent lines of a multi-line compound command are
not tested, and are added to the history regardless of the value of
<B>HISTIGNORE</B>.
<FONT SIZE=-1><B>HISTIGNORE</B>.
</FONT>
<DT><B>HISTSIZE</B>
<DD>
@@ -2499,7 +2570,11 @@ selected with a variable starting with <B>LC_</B>.
<DT><B>LC_ALL</B>
<DD>
This variable overrides the value of <B>LANG</B> and any other
This variable overrides the value of
<FONT SIZE=-1><B>LANG</B>
</FONT>
and any other
<B>LC_</B> variable specifying a locale category.
<DT><B>LC_COLLATE</B>
@@ -2527,7 +2602,10 @@ This variable determines the locale category used for number formatting.
<DD>
Used by the <B>select</B> builtin command to determine the column length
for printing selection lists. Automatically set upon receipt of a SIGWINCH.
for printing selection lists. Automatically set upon receipt of a
<FONT SIZE=-1><B>SIGWINCH</B>.
</FONT>
<DT><B>MAIL</B>
<DD>
@@ -2600,8 +2678,11 @@ the shell looks for commands (see
</FONT>
below).
A zero-length (null) directory name in the value of <B>PATH</B> indicates the
current directory.
A zero-length (null) directory name in the value of
<FONT SIZE=-1><B>PATH</B>
</FONT>
indicates the current directory.
A null directory name may appear as two adjacent colons, or as an initial
or trailing colon.
The default path is system-dependent,
@@ -2651,8 +2732,9 @@ below) and used as the primary prompt string. The default value is
<DD>
The value of this parameter is expanded as with
<B>PS1</B>
<FONT SIZE=-1><B>PS1</B>
</FONT>
and used as the secondary prompt string. The default is
``<B>&gt; </B>''.
<DT><B>PS3</B>
@@ -2670,8 +2752,9 @@ above).
<DD>
The value of this parameter is expanded as with
<B>PS1</B>
<FONT SIZE=-1><B>PS1</B>
</FONT>
and the value is printed before each command
<B>bash</B>
@@ -2748,10 +2831,18 @@ A trailing newline is added when the format string is displayed.
<DT><B>TMOUT</B>
<DD>
If set to a value greater than zero, <B>TMOUT</B> is treated as the
If set to a value greater than zero,
<FONT SIZE=-1><B>TMOUT</B>
</FONT>
is treated as the
default timeout for the <B>read</B> builtin.
The <B>select</B> command terminates if input does not arrive
after <B>TMOUT</B> seconds when input is coming from a terminal.
after
<FONT SIZE=-1><B>TMOUT</B>
</FONT>
seconds when input is coming from a terminal.
In an interactive shell, the value is interpreted as the
number of seconds to wait for input after issuing the primary prompt.
<B>Bash</B>
@@ -3946,7 +4037,11 @@ or a
then any character not enclosed is matched.
The sorting order of characters in range expressions is determined by
the current locale and the value of the <B>LC_COLLATE</B> shell variable,
the current locale and the value of the
<FONT SIZE=-1><B>LC_COLLATE</B>
</FONT>
shell variable,
if set.
A
<B>-</B>
@@ -5243,7 +5338,7 @@ arguments, if any.
The shell has an <I>execution environment</I>, which consists of the
following:
<P>
<DL COMPACT>
<DT>*<DD>
open files inherited by the shell at invocation, as modified by
@@ -5271,7 +5366,10 @@ options enabled by <B>shopt</B>
shell aliases defined with <B>alias</B>
<DT>*<DD>
various process IDs, including those of background jobs, the value
of <B>$$</B>, and the value of <B>$PPID</B>
of <B>$$</B>, and the value of
<FONT SIZE=-1><B>PPID</B>
</FONT>
</DL>
<P>
@@ -5280,7 +5378,7 @@ is to be executed, it
is invoked in a separate execution environment that consists of
the following. Unless otherwise noted, the values are inherited
from the shell.
<P>
<DL COMPACT>
<DT>*<DD>
the shell's open files, plus any modifications and additions specified
@@ -5890,12 +5988,23 @@ the release of <B>bash</B>, version + patch level (e.g., 2.00.0)
<DT><B>\w</B>
<DD>
the current working directory, with <B>$HOME</B> abbreviated with a tilde
(uses the <B>$PROMPT_DIRTRIM</B> variable)
the current working directory, with
<FONT SIZE=-1><B>$HOME</B>
</FONT>
abbreviated with a tilde
(uses the value of the
<FONT SIZE=-1><B>PROMPT_DIRTRIM</B>
</FONT>
variable)
<DT><B>\W</B>
<DD>
the basename of the current working directory, with <B>$HOME</B>
the basename of the current working directory, with
<FONT SIZE=-1><B>$HOME</B>
</FONT>
abbreviated with a tilde
<DT><B>\!</B>
@@ -7701,7 +7810,11 @@ option to the
builtin is enabled, the shell provides access to the
<I>command history</I>,
the list of commands previously typed.
The value of the <B>HISTSIZE</B> variable is used as the
The value of the
<FONT SIZE=-1><B>HISTSIZE</B>
</FONT>
variable is used as the
number of commands to save in a history list.
The text of the last
<FONT SIZE=-1><B>HISTSIZE</B>
@@ -7775,7 +7888,8 @@ If
is unset, or if the history file is unwritable, the history is
not saved.
If the
<FONT SIZE=-1>
<FONT SIZE=-1><B>HISTTIMEFORMAT</B>
</FONT>
variable is set, time stamps are written to the history file, marked
with the history comment character, so
@@ -7909,7 +8023,7 @@ If the
shell option is enabled (see the description of the
<B>shopt</B>
builtin), and
builtin below), and
<B>readline</B>
is being used, history substitutions are not immediately passed to
@@ -8422,18 +8536,22 @@ Remove any current binding for <I>keyseq</I>.
Cause <I>shell-command</I> to be executed whenever <I>keyseq</I> is
entered.
When <I>shell-command</I> is executed, the shell sets the
<B>READLINE_LINE</B>
<FONT SIZE=-1><B>READLINE_LINE</B>
</FONT>
variable to the contents of the <B>readline</B> line buffer and the
<B>READLINE_POINT</B>
<FONT SIZE=-1><B>READLINE_POINT</B>
</FONT>
variable to the current location of the insertion point.
If the executed command changes the value of
<B>READLINE_LINE</B>
<FONT SIZE=-1><B>READLINE_LINE</B>
</FONT>
or
<B>READLINE_POINT</B>,
<FONT SIZE=-1><B>READLINE_POINT</B>,
</FONT>
those new values will be reflected in the editing state.
</DL>
@@ -8541,7 +8659,11 @@ is equivalent to
<FONT SIZE=-1><B>$OLDPWD</B>.
</FONT>
If a non-empty directory name from <B>CDPATH</B> is used, or if
If a non-empty directory name from
<FONT SIZE=-1><B>CDPATH</B>
</FONT>
is used, or if
<B>-</B> is the first argument, and the directory change is
successful, the absolute pathname of the new working directory is
written to the standard output.
@@ -8566,8 +8688,9 @@ option is given, the search for
<I>command</I>
is performed using a default value for
<B>PATH</B>
<FONT SIZE=-1><B>PATH</B>
</FONT>
that is guaranteed to find all of the standard utilities.
If either the
<B>-V</B>
@@ -8966,10 +9089,10 @@ Use function names only.
<DD>
The variable is treated as an integer; arithmetic evaluation (see
<FONT SIZE=-1><B>ARITHMETIC EVALUATION ) </B>
<FONT SIZE=-1><B>ARITHMETIC EVALUATION</B>
</FONT>
is performed when the variable is assigned a value.
above) is performed when the variable is assigned a value.
<DT><B>-l</B>
<DD>
@@ -9005,11 +9128,11 @@ Mark <I>name</I>s for export to subsequent commands via the environment.
Using `+' instead of `-'
turns off the attribute instead,
with the exceptions that <B>+a</B>
may not be used to destroy an array variable and <B>+r will not
may not be used to destroy an array variable and <B>+r</B> will not
remove the readonly attribute.
When used in a function,
makes each
</B><I>name</I> local, as with the
<I>name</I> local, as with the
<B>local</B>
command.
@@ -9093,7 +9216,7 @@ is removed from the table of active jobs.
If
<I>jobspec</I>
is not present, and neither <B>-a nor -r</B> is supplied,
is not present, and neither <B>-a</B> nor <B>-r</B> is supplied,
the shell's notion of the <I>current job</I> is used.
If the <B>-h</B> option is given, each
<I>jobspec</I>
@@ -9553,7 +9676,10 @@ is to be used.
<P>
When the end of options is encountered, <B>getopts</B> exits with a
return value greater than zero.
<B>OPTIND</B> is set to the index of the first non-option argument,
<FONT SIZE=-1><B>OPTIND</B>
</FONT>
is set to the index of the first non-option argument,
and <B>name</B> is set to ?.
<P>
<B>getopts</B>
@@ -9730,7 +9856,11 @@ lists only the last
<I>n</I>
lines.
If the shell variable <B>HISTTIMEFORMAT</B> is set and not null,
If the shell variable
<FONT SIZE=-1><B>HISTTIMEFORMAT</B>
</FONT>
is set and not null,
it is used as a format string for <I>strftime</I>(3) to display
the time stamp associated with each displayed history entry.
No intervening blank is printed between the formatted time stamp
@@ -9794,7 +9924,11 @@ are added.
</DL>
<P>
If the <B>HISTTIMEFORMAT</B> is set, the time stamp information
If the
<FONT SIZE=-1><B>HISTTIMEFORMAT</B>
</FONT>
variable is set, the time stamp information
associated with each history entry is written to the history file,
marked with the history comment character.
When the history file is read, lines beginning with the history
@@ -9938,9 +10072,10 @@ Each
<I>arg</I>
is an arithmetic expression to be evaluated (see
<FONT SIZE=-1><B>ARITHMETIC EVALUATION</B>).
<FONT SIZE=-1><B>ARITHMETIC EVALUATION</B>
</FONT>
above).
If the last
<I>arg</I>
@@ -9996,7 +10131,11 @@ if the
<B>-u</B>
option is supplied.
The variable <B>MAPFILE</B> is the default <I>array</I>.
The variable
<FONT SIZE=-1><B>MAPFILE</B>
</FONT>
is the default <I>array</I>.
Options, if supplied, have the following meanings:
<DL COMPACT><DT><DD>
@@ -10025,7 +10164,7 @@ Discard the first <I>count</I> lines read.
<DT><B>-t</B>
<DD>
Remove a trailing line from each line read.
Remove a trailing newline from each line read.
<DT><B>-u</B>
<DD>
@@ -10509,8 +10648,9 @@ being inverted with
A trap on <B>ERR</B>, 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</B>
<FONT SIZE=-1><B>COMMAND EXECUTION ENVIRONMENT</B>
</FONT>
above), and may cause
subshells to exit before executing all the commands in the subshell.
<DT><B>-f</B>
@@ -10574,6 +10714,12 @@ with the
option.
This also affects the editing interface used for <B>read -e</B>.
<DT><B>errexit</B>
<DD>
Same as
<B>-e</B>.
<DT><B>errtrace</B>
<DD>
@@ -10586,12 +10732,6 @@ Same as
Same as
<B>-T</B>.
<DT><B>errexit</B>
<DD>
Same as
<B>-e</B>.
<DT><B>hashall</B>
<DD>
@@ -10757,13 +10897,16 @@ environment, and the
<FONT SIZE=-1><B>SHELLOPTS</B>,
</FONT>
<B>BASHOPTS</B>,
<FONT SIZE=-1><B>BASHOPTS</B>,
<B>CDPATH</B>,
</FONT>
<FONT SIZE=-1><B>CDPATH</B>,
</FONT>
and
<B>GLOBIGNORE</B>
<FONT SIZE=-1><B>GLOBIGNORE</B>
</FONT>
variables, if they appear in the environment, are ignored.
If the shell is started with the effective user (group) id not equal to the
real user (group) id, and the <B>-p</B> option is not supplied, these actions
@@ -11035,7 +11178,11 @@ longer exists, a normal path search is performed.
If set, <B>bash</B> lists the status of any stopped and running jobs before
exiting an interactive shell. If any jobs are running, this causes
the exit to be deferred until a second exit is attempted without an
intervening command (see <B>JOB CONTROL</B> above). The shell always
intervening command (see
<FONT SIZE=-1><B>JOB CONTROL</B>
</FONT>
above). The shell always
postpones exiting if any jobs are stopped.
<DT><B>checkwinsize</B>
@@ -11145,8 +11292,14 @@ executed by the <B>.</B> or <B>source</B> builtins), a call to
<DT><B>4.</B>
<DD>
<B>BASH_ARGC</B> and <B>BASH_ARGV</B> are updated as described in their
descriptions above.
<FONT SIZE=-1><B>BASH_ARGC</B>
</FONT>
and
<FONT SIZE=-1><B>BASH_ARGV</B>
</FONT>
are updated as described in their descriptions above.
<DT><B>5.</B>
<DD>
@@ -11180,12 +11333,19 @@ result in an expansion error.
<DT><B>force_fignore</B>
<DD>
If set, the suffixes specified by the <B>FIGNORE</B> shell variable
If set, the suffixes specified by the
<FONT SIZE=-1><B>FIGNORE</B>
</FONT>
shell variable
cause words to be ignored when performing word completion even if
the ignored words are the only possible completions.
See
<FONT SIZE=-1><B>SHELL VARIABLES</B></FONT>
above for a description of <B>FIGNORE</B>.
above for a description of
<FONT SIZE=-1><B>FIGNORE</B>.
</FONT>
This option is enabled by default.
<DT><B>globstar</B>
@@ -11204,8 +11364,9 @@ message format.
<DD>
If set, the history list is appended to the file named by the value
of the
<B>HISTFILE</B>
<FONT SIZE=-1><B>HISTFILE</B>
</FONT>
variable when the shell exits, rather than overwriting the file.
<DT><B>histreedit</B>
@@ -11292,7 +11453,11 @@ If set, and
is being used,
<B>bash</B>
will not attempt to search the <B>PATH</B> for possible completions when
will not attempt to search the
<FONT SIZE=-1><B>PATH</B>
</FONT>
for possible completions when
completion is attempted on an empty line.
<DT><B>nocaseglob</B>
@@ -11962,6 +12127,9 @@ is removed.
Each unset variable or function is removed from the environment
passed to subsequent commands.
If any of
<FONT SIZE=-1><B>COMP_WORDBREAKS</B>,
</FONT>
<FONT SIZE=-1><B>RANDOM</B>,
</FONT>
@@ -12038,15 +12206,19 @@ with the exception that the following are disallowed or not performed:
changing directories with <B>cd</B>
<DT>*<DD>
setting or unsetting the values of
<B>SHELL</B>,
<FONT SIZE=-1><B>SHELL</B>,
<B>PATH</B>,
</FONT>
<FONT SIZE=-1><B>PATH</B>,
<B>ENV</B>,
</FONT>
<FONT SIZE=-1><B>ENV</B>,
</FONT>
or
<B>BASH_ENV</B>
<FONT SIZE=-1><B>BASH_ENV</B>
</FONT>
<DT>*<DD>
specifying command names containing
<B>/</B>
@@ -12070,7 +12242,11 @@ builtin command
<DT>*<DD>
importing function definitions from the shell environment at startup
<DT>*<DD>
parsing the value of <B>SHELLOPTS</B> from the shell environment at startup
parsing the value of
<FONT SIZE=-1><B>SHELLOPTS</B>
</FONT>
from the shell environment at startup
<DT>*<DD>
redirecting output using the &gt;, &gt;|, &lt;&gt;, &gt;&amp;, &amp;&gt;, and &gt;&gt; redirection operators
<DT>*<DD>
@@ -12284,7 +12460,7 @@ There may be only one active coprocess at a time.
<HR>
<TABLE WIDTH=100%>
<TR>
<TH ALIGN=LEFT width=33%>GNU Bash-4.1<TH ALIGN=CENTER width=33%>2009 December 23<TH ALIGN=RIGHT width=33%>BASH(1)
<TH ALIGN=LEFT width=33%>GNU Bash-4.1<TH ALIGN=CENTER width=33%>2009 December 29<TH ALIGN=RIGHT width=33%>BASH(1)
</TR>
</TABLE>
<HR>
@@ -12390,6 +12566,6 @@ There may be only one active coprocess at a time.
</DL>
<HR>
This document was created by man2html from bash.1.<BR>
Time: 23 December 2009 16:47:15 EST
Time: 30 December 2009 13:07:38 EST
</BODY>
</HTML>
BIN
View File
Binary file not shown.
+5956 -5951
View File
File diff suppressed because it is too large Load Diff
BIN
View File
Binary file not shown.
+7 -4
View File
@@ -1,6 +1,6 @@
<HTML>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- Created on December, 23 2009 by texi2html 1.64 -->
<!-- Created on December, 29 2009 by texi2html 1.64 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
@@ -688,6 +688,7 @@ present, are decoded as follows:
<DT><CODE>\b</CODE>
<DD>backspace
<DT><CODE>\e</CODE>
<DD><DT><CODE>\E</CODE>
<DD>an escape character (not ANSI C)
<DT><CODE>\f</CODE>
<DD>form feed
@@ -703,6 +704,8 @@ present, are decoded as follows:
<DD>backslash
<DT><CODE>\'</CODE>
<DD>single quote
<DT><CODE>\"</CODE>
<DD>double quote
<DT><CODE>\<VAR>nnn</VAR></CODE>
<DD>the eight-bit character whose value is the octal value <VAR>nnn</VAR>
(one to three digits)
@@ -4756,7 +4759,7 @@ The default index is 0.
<DT><CODE>-s</CODE>
<DD>Discard the first <VAR>count</VAR> lines read.
<DT><CODE>-t</CODE>
<DD>Remove a trailing line from each line read.
<DD>Remove a trailing newline from each line read.
<DT><CODE>-u</CODE>
<DD>Read lines from file descriptor <VAR>fd</VAR> instead of the standard input.
<DT><CODE>-C</CODE>
@@ -16052,7 +16055,7 @@ to permit their use in free software.
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bashref.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>About this document</H1>
This document was generated by <I>Chet Ramey</I> on <I>December, 23 2009</I>
This document was generated by <I>Chet Ramey</I> on <I>December, 29 2009</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
<P></P>
@@ -16214,7 +16217,7 @@ the following structure:
<BR>
<FONT SIZE="-1">
This document was generated
by <I>Chet Ramey</I> on <I>December, 23 2009</I>
by <I>Chet Ramey</I> on <I>December, 29 2009</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
+119 -115
View File
@@ -442,6 +442,7 @@ decoded as follows:
backspace
`\e'
`\E'
an escape character (not ANSI C)
`\f'
@@ -465,6 +466,9 @@ decoded as follows:
`\''
single quote
`\"'
double quote
`\NNN'
the eight-bit character whose value is the octal value NNN (one to
three digits)
@@ -3138,7 +3142,7 @@ POSIX standard.
Discard the first COUNT lines read.
`-t'
Remove a trailing line from each line read.
Remove a trailing newline from each line read.
`-u'
Read lines from file descriptor FD instead of the standard
@@ -10226,119 +10230,119 @@ Node: Escape Character14830
Node: Single Quotes15315
Node: Double Quotes15663
Node: ANSI-C Quoting16788
Node: Locale Translation17744
Node: Comments18640
Node: Shell Commands19258
Node: Simple Commands20082
Node: Pipelines20713
Node: Lists22969
Node: Compound Commands24698
Node: Looping Constructs25502
Node: Conditional Constructs27957
Node: Command Grouping36070
Node: Coprocesses37549
Node: Shell Functions39193
Node: Shell Parameters43747
Node: Positional Parameters46163
Node: Special Parameters47063
Node: Shell Expansions50027
Node: Brace Expansion51952
Node: Tilde Expansion54707
Node: Shell Parameter Expansion57058
Node: Command Substitution65959
Node: Arithmetic Expansion67292
Node: Process Substitution68142
Node: Word Splitting69192
Node: Filename Expansion70815
Node: Pattern Matching72954
Node: Quote Removal76593
Node: Redirections76888
Node: Executing Commands85413
Node: Simple Command Expansion86083
Node: Command Search and Execution88013
Node: Command Execution Environment90350
Node: Environment93336
Node: Exit Status94996
Node: Signals96617
Node: Shell Scripts98585
Node: Shell Builtin Commands101103
Node: Bourne Shell Builtins103131
Node: Bash Builtins120507
Node: Modifying Shell Behavior145332
Node: The Set Builtin145677
Node: The Shopt Builtin155201
Node: Special Builtins166063
Node: Shell Variables167042
Node: Bourne Shell Variables167482
Node: Bash Variables169463
Node: Bash Features192949
Node: Invoking Bash193832
Node: Bash Startup Files199641
Node: Interactive Shells204653
Node: What is an Interactive Shell?205063
Node: Is this Shell Interactive?205712
Node: Interactive Shell Behavior206527
Node: Bash Conditional Expressions209807
Node: Shell Arithmetic213456
Node: Aliases216202
Node: Arrays218774
Node: The Directory Stack222732
Node: Directory Stack Builtins223446
Node: Printing a Prompt226338
Node: The Restricted Shell229090
Node: Bash POSIX Mode230922
Node: Job Control238979
Node: Job Control Basics239439
Node: Job Control Builtins244156
Node: Job Control Variables248520
Node: Command Line Editing249678
Node: Introduction and Notation251245
Node: Readline Interaction252867
Node: Readline Bare Essentials254058
Node: Readline Movement Commands255847
Node: Readline Killing Commands256812
Node: Readline Arguments258732
Node: Searching259776
Node: Readline Init File261962
Node: Readline Init File Syntax263109
Node: Conditional Init Constructs277596
Node: Sample Init File280129
Node: Bindable Readline Commands283246
Node: Commands For Moving284453
Node: Commands For History285597
Node: Commands For Text288752
Node: Commands For Killing291425
Node: Numeric Arguments293876
Node: Commands For Completion295015
Node: Keyboard Macros298975
Node: Miscellaneous Commands299546
Node: Readline vi Mode305352
Node: Programmable Completion306266
Node: Programmable Completion Builtins313472
Node: Using History Interactively322608
Node: Bash History Facilities323292
Node: Bash History Builtins326206
Node: History Interaction330063
Node: Event Designators332768
Node: Word Designators333783
Node: Modifiers335422
Node: Installing Bash336826
Node: Basic Installation337963
Node: Compilers and Options340655
Node: Compiling For Multiple Architectures341396
Node: Installation Names343060
Node: Specifying the System Type343878
Node: Sharing Defaults344594
Node: Operation Controls345267
Node: Optional Features346225
Node: Reporting Bugs355784
Node: Major Differences From The Bourne Shell356985
Node: GNU Free Documentation License373672
Node: Indexes398868
Node: Builtin Index399322
Node: Reserved Word Index406149
Node: Variable Index408597
Node: Function Index420690
Node: Concept Index427699
Node: Locale Translation17773
Node: Comments18669
Node: Shell Commands19287
Node: Simple Commands20111
Node: Pipelines20742
Node: Lists22998
Node: Compound Commands24727
Node: Looping Constructs25531
Node: Conditional Constructs27986
Node: Command Grouping36099
Node: Coprocesses37578
Node: Shell Functions39222
Node: Shell Parameters43776
Node: Positional Parameters46192
Node: Special Parameters47092
Node: Shell Expansions50056
Node: Brace Expansion51981
Node: Tilde Expansion54736
Node: Shell Parameter Expansion57087
Node: Command Substitution65988
Node: Arithmetic Expansion67321
Node: Process Substitution68171
Node: Word Splitting69221
Node: Filename Expansion70844
Node: Pattern Matching72983
Node: Quote Removal76622
Node: Redirections76917
Node: Executing Commands85442
Node: Simple Command Expansion86112
Node: Command Search and Execution88042
Node: Command Execution Environment90379
Node: Environment93365
Node: Exit Status95025
Node: Signals96646
Node: Shell Scripts98614
Node: Shell Builtin Commands101132
Node: Bourne Shell Builtins103160
Node: Bash Builtins120536
Node: Modifying Shell Behavior145364
Node: The Set Builtin145709
Node: The Shopt Builtin155233
Node: Special Builtins166095
Node: Shell Variables167074
Node: Bourne Shell Variables167514
Node: Bash Variables169495
Node: Bash Features192981
Node: Invoking Bash193864
Node: Bash Startup Files199673
Node: Interactive Shells204685
Node: What is an Interactive Shell?205095
Node: Is this Shell Interactive?205744
Node: Interactive Shell Behavior206559
Node: Bash Conditional Expressions209839
Node: Shell Arithmetic213488
Node: Aliases216234
Node: Arrays218806
Node: The Directory Stack222764
Node: Directory Stack Builtins223478
Node: Printing a Prompt226370
Node: The Restricted Shell229122
Node: Bash POSIX Mode230954
Node: Job Control239011
Node: Job Control Basics239471
Node: Job Control Builtins244188
Node: Job Control Variables248552
Node: Command Line Editing249710
Node: Introduction and Notation251277
Node: Readline Interaction252899
Node: Readline Bare Essentials254090
Node: Readline Movement Commands255879
Node: Readline Killing Commands256844
Node: Readline Arguments258764
Node: Searching259808
Node: Readline Init File261994
Node: Readline Init File Syntax263141
Node: Conditional Init Constructs277628
Node: Sample Init File280161
Node: Bindable Readline Commands283278
Node: Commands For Moving284485
Node: Commands For History285629
Node: Commands For Text288784
Node: Commands For Killing291457
Node: Numeric Arguments293908
Node: Commands For Completion295047
Node: Keyboard Macros299007
Node: Miscellaneous Commands299578
Node: Readline vi Mode305384
Node: Programmable Completion306298
Node: Programmable Completion Builtins313504
Node: Using History Interactively322640
Node: Bash History Facilities323324
Node: Bash History Builtins326238
Node: History Interaction330095
Node: Event Designators332800
Node: Word Designators333815
Node: Modifiers335454
Node: Installing Bash336858
Node: Basic Installation337995
Node: Compilers and Options340687
Node: Compiling For Multiple Architectures341428
Node: Installation Names343092
Node: Specifying the System Type343910
Node: Sharing Defaults344626
Node: Operation Controls345299
Node: Optional Features346257
Node: Reporting Bugs355816
Node: Major Differences From The Bourne Shell357017
Node: GNU Free Documentation License373704
Node: Indexes398900
Node: Builtin Index399354
Node: Reserved Word Index406181
Node: Variable Index408629
Node: Function Index420722
Node: Concept Index427731

End Tag Table
BIN
View File
Binary file not shown.
+81 -81
View File
@@ -11,7 +11,7 @@
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -D 600 -t letter -o bashref.ps bashref.dvi
%DVIPSParameters: dpi=600
%DVIPSSource: TeX output 2009.12.23:1647
%DVIPSSource: TeX output 2009.12.29:1559
%%BeginProcSet: tex.pro 0 0
%!
/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
@@ -5094,136 +5094,136 @@ h(meaning)f(of)h(certain)g(c)m(haracters)g(or)f(w)m(ords)g(to)h(the)f
(ecial)h(treatmen)m(t)h(for)e(sp)s(ecial)h(c)m(haracters,)i(to)e(prev)m
(en)m(t)g(reserv)m(ed)150 665 y(w)m(ords)i(from)g(b)s(eing)g
(recognized)h(as)g(suc)m(h,)f(and)g(to)h(prev)m(en)m(t)g(parameter)g
(expansion.)275 799 y(Eac)m(h)22 b(of)g(the)g(shell)g(metac)m
(expansion.)275 793 y(Eac)m(h)22 b(of)g(the)g(shell)g(metac)m
(haracters)i(\(see)f(Chapter)e(2)i([De\014nitions],)h(page)f(3\))g(has)
e(sp)s(ecial)i(meaning)150 909 y(to)40 b(the)g(shell)f(and)g(m)m(ust)g
e(sp)s(ecial)i(meaning)150 902 y(to)40 b(the)g(shell)f(and)g(m)m(ust)g
(b)s(e)g(quoted)g(if)h(it)g(is)f(to)h(represen)m(t)g(itself.)68
b(When)39 b(the)h(command)f(history)150 1019 y(expansion)i(facilities)j
b(When)39 b(the)h(command)f(history)150 1012 y(expansion)i(facilities)j
(are)e(b)s(eing)f(used)g(\(see)h(Section)h(9.3)f([History)h(In)m
(teraction],)j(page)c(123\),)47 b(the)150 1128 y Fq(history)30
(teraction],)j(page)c(123\),)47 b(the)150 1122 y Fq(history)30
b(expansion)h Ft(c)m(haracter,)h(usually)f(`)p Fs(!)p
Ft(',)g(m)m(ust)f(b)s(e)g(quoted)h(to)g(prev)m(en)m(t)g(history)g
(expansion.)41 b(See)150 1238 y(Section)22 b(9.1)g([Bash)f(History)h(F)
(expansion.)41 b(See)150 1231 y(Section)22 b(9.1)g([Bash)f(History)h(F)
-8 b(acilities],)26 b(page)c(121,)j(for)20 b(more)h(details)h
(concerning)g(history)f(expansion.)275 1372 y(There)36
(concerning)g(history)f(expansion.)275 1359 y(There)36
b(are)i(three)f(quoting)g(mec)m(hanisms:)55 b(the)37
b Fq(escap)s(e)h(c)m(haracter)7 b Ft(,)40 b(single)d(quotes,)j(and)c
(double)150 1482 y(quotes.)150 1681 y Fj(3.1.2.1)63 b(Escap)s(e)41
b(Character)150 1828 y Ft(A)36 b(non-quoted)f(bac)m(kslash)h(`)p
(double)150 1469 y(quotes.)150 1655 y Fj(3.1.2.1)63 b(Escap)s(e)41
b(Character)150 1802 y Ft(A)36 b(non-quoted)f(bac)m(kslash)h(`)p
Fs(\\)p Ft(')g(is)f(the)h(Bash)g(escap)s(e)f(c)m(haracter.)58
b(It)36 b(preserv)m(es)f(the)h(literal)h(v)-5 b(alue)36
b(of)150 1937 y(the)27 b(next)g(c)m(haracter)h(that)f(follo)m(ws,)i
b(of)150 1911 y(the)27 b(next)g(c)m(haracter)h(that)f(follo)m(ws,)i
(with)d(the)h(exception)g(of)g Fs(newline)p Ft(.)38 b(If)26
b(a)h Fs(\\newline)d Ft(pair)i(app)s(ears,)150 2047 y(and)k(the)h(bac)m
b(a)h Fs(\\newline)d Ft(pair)i(app)s(ears,)150 2021 y(and)k(the)h(bac)m
(kslash)g(itself)g(is)g(not)g(quoted,)g(the)f Fs(\\newline)f
Ft(is)h(treated)i(as)f(a)g(line)g(con)m(tin)m(uation)h(\(that)150
2156 y(is,)f(it)g(is)f(remo)m(v)m(ed)h(from)f(the)h(input)e(stream)i
(and)f(e\013ectiv)m(ely)j(ignored\).)150 2355 y Fj(3.1.2.2)63
b(Single)42 b(Quotes)150 2502 y Ft(Enclosing)24 b(c)m(haracters)h(in)e
2131 y(is,)f(it)g(is)f(remo)m(v)m(ed)h(from)f(the)h(input)e(stream)i
(and)f(e\013ectiv)m(ely)j(ignored\).)150 2317 y Fj(3.1.2.2)63
b(Single)42 b(Quotes)150 2464 y Ft(Enclosing)24 b(c)m(haracters)h(in)e
(single)h(quotes)g(\(`)p Fs(')p Ft('\))g(preserv)m(es)g(the)f(literal)i
(v)-5 b(alue)24 b(of)g(eac)m(h)g(c)m(haracter)h(within)150
2612 y(the)31 b(quotes.)42 b(A)31 b(single)h(quote)f(ma)m(y)g(not)g(o)s
2573 y(the)31 b(quotes.)42 b(A)31 b(single)h(quote)f(ma)m(y)g(not)g(o)s
(ccur)g(b)s(et)m(w)m(een)g(single)h(quotes,)f(ev)m(en)h(when)d
(preceded)i(b)m(y)g(a)150 2721 y(bac)m(kslash.)150 2920
y Fj(3.1.2.3)63 b(Double)42 b(Quotes)150 3067 y Ft(Enclosing)24
(preceded)i(b)m(y)g(a)150 2683 y(bac)m(kslash.)150 2869
y Fj(3.1.2.3)63 b(Double)42 b(Quotes)150 3016 y Ft(Enclosing)24
b(c)m(haracters)h(in)f(double)f(quotes)h(\(`)p Fs(")p
Ft('\))g(preserv)m(es)g(the)g(literal)h(v)-5 b(alue)24
b(of)g(all)g(c)m(haracters)h(within)150 3177 y(the)34
b(of)g(all)g(c)m(haracters)h(within)150 3125 y(the)34
b(quotes,)h(with)f(the)g(exception)h(of)f(`)p Fs($)p
Ft(',)h(`)p Fs(`)p Ft(',)g(`)p Fs(\\)p Ft(',)g(and,)f(when)f(history)g
(expansion)h(is)g(enabled,)h(`)p Fs(!)p Ft('.)150 3286
(expansion)h(is)g(enabled,)h(`)p Fs(!)p Ft('.)150 3235
y(The)25 b(c)m(haracters)h(`)p Fs($)p Ft(')g(and)f(`)p
Fs(`)p Ft(')g(retain)h(their)f(sp)s(ecial)h(meaning)f(within)g(double)g
(quotes)h(\(see)g(Section)g(3.5)150 3396 y([Shell)j(Expansions],)g
(quotes)h(\(see)g(Section)g(3.5)150 3345 y([Shell)j(Expansions],)g
(page)h(17\).)41 b(The)28 b(bac)m(kslash)i(retains)f(its)h(sp)s(ecial)f
(meaning)g(only)g(when)f(follo)m(w)m(ed)150 3506 y(b)m(y)41
(meaning)g(only)g(when)f(follo)m(w)m(ed)150 3454 y(b)m(y)41
b(one)f(of)h(the)g(follo)m(wing)h(c)m(haracters:)63 b(`)p
Fs($)p Ft(',)43 b(`)p Fs(`)p Ft(',)h(`)p Fs(")p Ft(',)g(`)p
Fs(\\)p Ft(',)f(or)e Fs(newline)p Ft(.)69 b(Within)41
b(double)f(quotes,)150 3615 y(bac)m(kslashes)25 b(that)h(are)f(follo)m
b(double)f(quotes,)150 3564 y(bac)m(kslashes)25 b(that)h(are)f(follo)m
(w)m(ed)h(b)m(y)e(one)h(of)g(these)g(c)m(haracters)h(are)f(remo)m(v)m
(ed.)40 b(Bac)m(kslashes)26 b(preceding)150 3725 y(c)m(haracters)35
(ed.)40 b(Bac)m(kslashes)26 b(preceding)150 3673 y(c)m(haracters)35
b(without)e(a)h(sp)s(ecial)f(meaning)h(are)f(left)h(unmo)s(di\014ed.)47
b(A)34 b(double)f(quote)g(ma)m(y)h(b)s(e)f(quoted)150
3834 y(within)h(double)h(quotes)g(b)m(y)g(preceding)g(it)g(with)g(a)g
3783 y(within)h(double)h(quotes)g(b)m(y)g(preceding)g(it)g(with)g(a)g
(bac)m(kslash.)55 b(If)35 b(enabled,)h(history)f(expansion)g(will)150
3944 y(b)s(e)f(p)s(erformed)g(unless)g(an)h(`)p Fs(!)p
3892 y(b)s(e)f(p)s(erformed)g(unless)g(an)h(`)p Fs(!)p
Ft(')g(app)s(earing)f(in)h(double)f(quotes)i(is)f(escap)s(ed)g(using)f
(a)h(bac)m(kslash.)55 b(The)150 4054 y(bac)m(kslash)31
(a)h(bac)m(kslash.)55 b(The)150 4002 y(bac)m(kslash)31
b(preceding)f(the)h(`)p Fs(!)p Ft(')f(is)h(not)g(remo)m(v)m(ed.)275
4188 y(The)41 b(sp)s(ecial)h(parameters)f(`)p Fs(*)p
4130 y(The)41 b(sp)s(ecial)h(parameters)f(`)p Fs(*)p
Ft(')h(and)f(`)p Fs(@)p Ft(')h(ha)m(v)m(e)g(sp)s(ecial)g(meaning)g
(when)f(in)g(double)g(quotes)h(\(see)150 4298 y(Section)31
(when)f(in)g(double)g(quotes)h(\(see)150 4240 y(Section)31
b(3.5.3)h([Shell)f(P)m(arameter)h(Expansion],)e(page)h(19\).)150
4497 y Fj(3.1.2.4)63 b(ANSI-C)40 b(Quoting)150 4643 y
4426 y Fj(3.1.2.4)63 b(ANSI-C)40 b(Quoting)150 4573 y
Ft(W)-8 b(ords)41 b(of)h(the)f(form)g Fs($')p Fi(string)11
b Fs(')38 b Ft(are)k(treated)g(sp)s(ecially)-8 b(.)75
b(The)41 b(w)m(ord)g(expands)f(to)i Fq(string)8 b Ft(,)44
b(with)150 4753 y(bac)m(kslash-escap)s(ed)g(c)m(haracters)h(replaced)f
b(with)150 4682 y(bac)m(kslash-escap)s(ed)g(c)m(haracters)h(replaced)f
(as)g(sp)s(eci\014ed)f(b)m(y)g(the)g(ANSI)g(C)g(standard.)79
b(Bac)m(kslash)150 4863 y(escap)s(e)31 b(sequences,)g(if)f(presen)m(t,)
h(are)g(deco)s(ded)f(as)g(follo)m(ws:)150 5022 y Fs(\\a)384
b Ft(alert)31 b(\(b)s(ell\))150 5181 y Fs(\\b)384 b Ft(bac)m(kspace)150
5340 y Fs(\\e)g Ft(an)30 b(escap)s(e)h(c)m(haracter)h(\(not)f(ANSI)f
(C\))p eop end
b(Bac)m(kslash)150 4792 y(escap)s(e)31 b(sequences,)g(if)f(presen)m(t,)
h(are)g(deco)s(ded)f(as)g(follo)m(ws:)150 4938 y Fs(\\a)384
b Ft(alert)31 b(\(b)s(ell\))150 5084 y Fs(\\b)384 b Ft(bac)m(kspace)150
5230 y Fs(\\e)150 5340 y(\\E)g Ft(an)30 b(escap)s(e)h(c)m(haracter)h
(\(not)f(ANSI)f(C\))p eop end
%%Page: 7 13
TeXDict begin 7 12 bop 150 -116 a Ft(Chapter)30 b(3:)41
b(Basic)32 b(Shell)e(F)-8 b(eatures)2292 b(7)150 299
y Fs(\\f)384 b Ft(form)30 b(feed)150 486 y Fs(\\n)384
b Ft(newline)150 674 y Fs(\\r)g Ft(carriage)32 b(return)150
861 y Fs(\\t)384 b Ft(horizon)m(tal)32 b(tab)150 1049
y Fs(\\v)384 b Ft(v)m(ertical)32 b(tab)150 1237 y Fs(\\\\)384
b Ft(bac)m(kslash)150 1424 y Fs(\\')g Ft(single)31 b(quote)150
1612 y Fs(\\)p Fi(nnn)288 b Ft(the)31 b(eigh)m(t-bit)h(c)m(haracter)g
(whose)e(v)-5 b(alue)31 b(is)f(the)h(o)s(ctal)g(v)-5
b(alue)31 b Fq(nnn)e Ft(\(one)i(to)g(three)g(digits\))150
1799 y Fs(\\x)p Fi(HH)288 b Ft(the)36 b(eigh)m(t-bit)i(c)m(haracter)f
(whose)f(v)-5 b(alue)36 b(is)g(the)g(hexadecimal)h(v)-5
b(alue)36 b Fq(HH)46 b Ft(\(one)37 b(or)f(t)m(w)m(o)630
1909 y(hex)30 b(digits\))150 2096 y Fs(\\c)p Fi(x)336
b Ft(a)31 b(con)m(trol-)p Fq(x)38 b Ft(c)m(haracter)150
2298 y(The)30 b(expanded)f(result)i(is)f(single-quoted,)i(as)f(if)f
(the)g(dollar)h(sign)g(had)e(not)i(b)s(een)f(presen)m(t.)150
2525 y Fj(3.1.2.5)63 b(Lo)s(cale-Sp)s(eci\014c)41 b(T)-10
b(ranslation)150 2672 y Ft(A)28 b(double-quoted)g(string)f(preceded)h
(b)m(y)f(a)h(dollar)h(sign)e(\(`)p Fs($)p Ft('\))i(will)f(cause)g(the)g
(string)g(to)g(b)s(e)f(translated)150 2782 y(according)f(to)f(the)g
(curren)m(t)g(lo)s(cale.)41 b(If)24 b(the)h(curren)m(t)g(lo)s(cale)h
(is)f Fs(C)g Ft(or)g Fs(POSIX)p Ft(,)f(the)h(dollar)h(sign)f(is)g
(ignored.)150 2891 y(If)30 b(the)g(string)h(is)f(translated)h(and)f
(replaced,)h(the)g(replacemen)m(t)h(is)e(double-quoted.)275
3054 y(Some)20 b(systems)h(use)f(the)h(message)h(catalog)h(selected)f
(b)m(y)f(the)g Fs(LC_MESSAGES)c Ft(shell)k(v)-5 b(ariable.)39
b(Others)150 3164 y(create)g(the)e(name)g(of)g(the)g(message)h(catalog)
i(from)d(the)g(v)-5 b(alue)37 b(of)g(the)h Fs(TEXTDOMAIN)c
Ft(shell)j(v)-5 b(ariable,)150 3273 y(p)s(ossibly)31
b(adding)g(a)g(su\016x)g(of)h(`)p Fs(.mo)p Ft('.)43 b(If)31
b(y)m(ou)h(use)f(the)h Fs(TEXTDOMAIN)c Ft(v)-5 b(ariable,)33
b(y)m(ou)f(ma)m(y)g(need)f(to)h(set)150 3383 y(the)22
b Fs(TEXTDOMAINDIR)d Ft(v)-5 b(ariable)23 b(to)g(the)f(lo)s(cation)i
(of)e(the)h(message)g(catalog)i(\014les.)38 b(Still)23
b(others)f(use)g(b)s(oth)150 3492 y(v)-5 b(ariables)31
y Fs(\\f)384 b Ft(form)30 b(feed)150 475 y Fs(\\n)384
b Ft(newline)150 652 y Fs(\\r)g Ft(carriage)32 b(return)150
828 y Fs(\\t)384 b Ft(horizon)m(tal)32 b(tab)150 1005
y Fs(\\v)384 b Ft(v)m(ertical)32 b(tab)150 1181 y Fs(\\\\)384
b Ft(bac)m(kslash)150 1358 y Fs(\\')g Ft(single)31 b(quote)150
1534 y Fs(\\")384 b Ft(double)30 b(quote)150 1711 y Fs(\\)p
Fi(nnn)288 b Ft(the)31 b(eigh)m(t-bit)h(c)m(haracter)g(whose)e(v)-5
b(alue)31 b(is)f(the)h(o)s(ctal)g(v)-5 b(alue)31 b Fq(nnn)e
Ft(\(one)i(to)g(three)g(digits\))150 1887 y Fs(\\x)p
Fi(HH)288 b Ft(the)36 b(eigh)m(t-bit)i(c)m(haracter)f(whose)f(v)-5
b(alue)36 b(is)g(the)g(hexadecimal)h(v)-5 b(alue)36 b
Fq(HH)46 b Ft(\(one)37 b(or)f(t)m(w)m(o)630 1997 y(hex)30
b(digits\))150 2173 y Fs(\\c)p Fi(x)336 b Ft(a)31 b(con)m(trol-)p
Fq(x)38 b Ft(c)m(haracter)150 2358 y(The)30 b(expanded)f(result)i(is)f
(single-quoted,)i(as)f(if)f(the)g(dollar)h(sign)g(had)e(not)i(b)s(een)f
(presen)m(t.)150 2575 y Fj(3.1.2.5)63 b(Lo)s(cale-Sp)s(eci\014c)41
b(T)-10 b(ranslation)150 2722 y Ft(A)28 b(double-quoted)g(string)f
(preceded)h(b)m(y)f(a)h(dollar)h(sign)e(\(`)p Fs($)p
Ft('\))i(will)f(cause)g(the)g(string)g(to)g(b)s(e)f(translated)150
2831 y(according)f(to)f(the)g(curren)m(t)g(lo)s(cale.)41
b(If)24 b(the)h(curren)m(t)g(lo)s(cale)h(is)f Fs(C)g
Ft(or)g Fs(POSIX)p Ft(,)f(the)h(dollar)h(sign)f(is)g(ignored.)150
2941 y(If)30 b(the)g(string)h(is)f(translated)h(and)f(replaced,)h(the)g
(replacemen)m(t)h(is)e(double-quoted.)275 3093 y(Some)20
b(systems)h(use)f(the)h(message)h(catalog)h(selected)f(b)m(y)f(the)g
Fs(LC_MESSAGES)c Ft(shell)k(v)-5 b(ariable.)39 b(Others)150
3202 y(create)g(the)e(name)g(of)g(the)g(message)h(catalog)i(from)d(the)
g(v)-5 b(alue)37 b(of)g(the)h Fs(TEXTDOMAIN)c Ft(shell)j(v)-5
b(ariable,)150 3312 y(p)s(ossibly)31 b(adding)g(a)g(su\016x)g(of)h(`)p
Fs(.mo)p Ft('.)43 b(If)31 b(y)m(ou)h(use)f(the)h Fs(TEXTDOMAIN)c
Ft(v)-5 b(ariable,)33 b(y)m(ou)f(ma)m(y)g(need)f(to)h(set)150
3421 y(the)22 b Fs(TEXTDOMAINDIR)d Ft(v)-5 b(ariable)23
b(to)g(the)f(lo)s(cation)i(of)e(the)h(message)g(catalog)i(\014les.)38
b(Still)23 b(others)f(use)g(b)s(oth)150 3531 y(v)-5 b(ariables)31
b(in)f(this)g(fashion:)41 b Fs(TEXTDOMAINDIR)p Ft(/)p
Fs(LC_MESSAGES)p Ft(/LC)p 2528 3492 28 4 v 34 w(MESSA)m(GES/)p
Fs(TEXTDOMAIN)p Ft(.mo.)150 3720 y Fj(3.1.3)63 b(Commen)m(ts)150
3867 y Ft(In)21 b(a)i(non-in)m(teractiv)m(e)h(shell,)g(or)e(an)g(in)m
Fs(LC_MESSAGES)p Ft(/LC)p 2528 3531 28 4 v 34 w(MESSA)m(GES/)p
Fs(TEXTDOMAIN)p Ft(.mo.)150 3747 y Fj(3.1.3)63 b(Commen)m(ts)150
3894 y Ft(In)21 b(a)i(non-in)m(teractiv)m(e)h(shell,)g(or)e(an)g(in)m
(teractiv)m(e)j(shell)d(in)g(whic)m(h)g(the)g Fs(interactive_comments)
16 b Ft(option)150 3976 y(to)40 b(the)f Fs(shopt)e Ft(builtin)h(is)h
16 b Ft(option)150 4004 y(to)40 b(the)f Fs(shopt)e Ft(builtin)h(is)h
(enabled)g(\(see)h(Section)g(4.3.2)g([The)f(Shopt)f(Builtin],)k(page)e
(55\),)i(a)d(w)m(ord)150 4086 y(b)s(eginning)26 b(with)g(`)p
(55\),)i(a)d(w)m(ord)150 4113 y(b)s(eginning)26 b(with)g(`)p
Fs(#)p Ft(')g(causes)h(that)f(w)m(ord)g(and)g(all)h(remaining)g(c)m
(haracters)g(on)f(that)h(line)g(to)g(b)s(e)f(ignored.)150
4195 y(An)43 b(in)m(teractiv)m(e)j(shell)e(without)f(the)g
4223 y(An)43 b(in)m(teractiv)m(e)j(shell)e(without)f(the)g
Fs(interactive_comments)38 b Ft(option)44 b(enabled)f(do)s(es)g(not)g
(allo)m(w)150 4305 y(commen)m(ts.)56 b(The)34 b Fs
(allo)m(w)150 4333 y(commen)m(ts.)56 b(The)34 b Fs
(interactive_comments)c Ft(option)35 b(is)g(on)g(b)m(y)g(default)g(in)g
(in)m(teractiv)m(e)j(shells.)55 b(See)150 4415 y(Section)30
(in)m(teractiv)m(e)j(shells.)55 b(See)150 4442 y(Section)30
b(6.3)f([In)m(teractiv)m(e)j(Shells],)d(page)h(75,)g(for)e(a)i
(description)e(of)h(what)g(mak)m(es)h(a)f(shell)g(in)m(teractiv)m(e.)
150 4689 y Fr(3.2)68 b(Shell)45 b(Commands)150 4849 y
150 4700 y Fr(3.2)68 b(Shell)45 b(Commands)150 4860 y
Ft(A)d(simple)g(shell)g(command)f(suc)m(h)h(as)g Fs(echo)29
b(a)h(b)g(c)41 b Ft(consists)i(of)f(the)f(command)h(itself)h(follo)m(w)
m(ed)g(b)m(y)150 4958 y(argumen)m(ts,)31 b(separated)g(b)m(y)f(spaces.)
m(ed)g(b)m(y)150 4969 y(argumen)m(ts,)31 b(separated)g(b)m(y)f(spaces.)
275 5121 y(More)h(complex)h(shell)f(commands)g(are)g(comp)s(osed)g(of)g
(simple)g(commands)g(arranged)g(together)h(in)150 5230
y(a)f(v)-5 b(ariet)m(y)32 b(of)f(w)m(a)m(ys:)41 b(in)31
@@ -8253,8 +8253,8 @@ b(The)30 b(default)h(index)f(is)g(0.)p eop end
TeXDict begin 47 52 bop 150 -116 a Ft(Chapter)30 b(4:)41
b(Shell)30 b(Builtin)h(Commands)2069 b(47)630 299 y Fs(-s)384
b Ft(Discard)31 b(the)f(\014rst)g Fq(coun)m(t)j Ft(lines)e(read.)630
458 y Fs(-t)384 b Ft(Remo)m(v)m(e)32 b(a)f(trailing)g(line)g(from)f
(eac)m(h)i(line)e(read.)630 618 y Fs(-u)384 b Ft(Read)31
458 y Fs(-t)384 b Ft(Remo)m(v)m(e)32 b(a)f(trailing)g(newline)g(from)f
(eac)m(h)h(line)g(read.)630 618 y Fs(-u)384 b Ft(Read)31
b(lines)f(from)g(\014le)h(descriptor)f Fq(fd)j Ft(instead)e(of)f(the)h
(standard)e(input.)630 777 y Fs(-C)384 b Ft(Ev)-5 b(aluate)43
b Fq(callbac)m(k)49 b Ft(eac)m(h)42 b(time)g Fq(quan)m(tum)p
+1 -1
View File
@@ -3666,7 +3666,7 @@ The default index is 0.
@item -s
Discard the first @var{count} lines read.
@item -t
Remove a trailing line from each line read.
Remove a trailing newline from each line read.
@item -u
Read lines from file descriptor @var{fd} instead of the standard input.
@item -C
+25 -25
View File
@@ -368,8 +368,8 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
above).
--ff Use function names only.
--ii The variable is treated as an integer; arithmetic evalua-
tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN )) is performed when the
variable is assigned a value.
tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when
the variable is assigned a value.
--ll When the variable is assigned a value, all upper-case
characters are converted to lower-case. The upper-case
attribute is disabled.
@@ -387,8 +387,8 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
Using `+' instead of `-' turns off the attribute instead, with
the exceptions that ++aa may not be used to destroy an array vari-
able and ++rr wwiillll nnoott rreemmoovvee tthhee rreeaaddoonnllyy aattttrriibbuuttee.. WWhheenn uusseedd
iinn aa ffuunnccttiioonn,, mmaakkeess eeaacchh _n_a_m_e llooccaall,, aass wwiitthh tthhee llooccaall command.
able and ++rr will not remove the readonly attribute. When used
in a function, makes each _n_a_m_e local, as with the llooccaall command.
If a variable name is followed by =_v_a_l_u_e, the value of the vari-
able is set to _v_a_l_u_e. The return value is 0 unless an invalid
option is encountered, an attempt is made to define a function
@@ -426,9 +426,9 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
ddiissoowwnn [--aarr] [--hh] [_j_o_b_s_p_e_c ...]
Without options, each _j_o_b_s_p_e_c is removed from the table of
active jobs. If _j_o_b_s_p_e_c is not present, and neither --aa nnoorr --rr
iiss ssuupppplliieedd,, tthhee sshheellll''ss nnoottiioonn ooff tthhee _c_u_r_r_e_n_t _j_o_b iiss uusseedd.. IIff
tthhee --hh ooppttiioonn iiss ggiivveenn,, eeaacchh _j_o_b_s_p_e_c is not removed from the ta-
active jobs. If _j_o_b_s_p_e_c is not present, and neither --aa nor --rr
is supplied, the shell's notion of the _c_u_r_r_e_n_t _j_o_b is used. If
the --hh option is given, each _j_o_b_s_p_e_c is not removed from the ta-
ble, but is marked so that SSIIGGHHUUPP is not sent to the job if the
shell receives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is present, and neither
the --aa nor the --rr option is supplied, the _c_u_r_r_e_n_t _j_o_b is used.
@@ -681,16 +681,16 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
The last command in the history list is removed before
the _a_r_g_s are added.
If the HHIISSTTTTIIMMEEFFOORRMMAATT is set, the time stamp information associ-
ated with each history entry is written to the history file,
marked with the history comment character. When the history
file is read, lines beginning with the history comment character
followed immediately by a digit are interpreted as timestamps
for the previous history line. The return value is 0 unless an
invalid option is encountered, an error occurs while reading or
writing the history file, an invalid _o_f_f_s_e_t is supplied as an
argument to --dd, or the history expansion supplied as an argument
to --pp fails.
If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa-
tion associated with each history entry is written to the his-
tory file, marked with the history comment character. When the
history file is read, lines beginning with the history comment
character followed immediately by a digit are interpreted as
timestamps for the previous history line. The return value is 0
unless an invalid option is encountered, an error occurs while
reading or writing the history file, an invalid _o_f_f_s_e_t is sup-
plied as an argument to --dd, or the history expansion supplied as
an argument to --pp fails.
jjoobbss [--llnnpprrss] [ _j_o_b_s_p_e_c ... ]
jjoobbss --xx _c_o_m_m_a_n_d [ _a_r_g_s ... ]
@@ -729,8 +729,8 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
lleett _a_r_g [_a_r_g ...]
Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH--
MMEETTIICC EEVVAALLUUAATTIIOONN). If the last _a_r_g evaluates to 0, lleett returns
1; 0 is returned otherwise.
MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett
returns 1; 0 is returned otherwise.
llooccaall [_o_p_t_i_o_n] [_n_a_m_e[=_v_a_l_u_e] ...]
For each argument, a local variable named _n_a_m_e is created, and
@@ -758,7 +758,7 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
--OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default
index is 0.
--ss Discard the first _c_o_u_n_t lines read.
--tt Remove a trailing line from each line read.
--tt Remove a trailing newline from each line read.
--uu Read lines from file descriptor _f_d instead of the stan-
dard input.
--CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The
@@ -1017,11 +1017,11 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
is interactive, unless the shell is started with
the ----nnooeeddiittiinngg option. This also affects the
editing interface used for rreeaadd --ee.
eerrrreexxiitt Same as --ee.
eerrrrttrraaccee
Same as --EE.
ffuunnccttrraaccee
Same as --TT.
eerrrreexxiitt Same as --ee.
hhaasshhaallll Same as --hh.
hhiisstteexxppaanndd
Same as --HH.
@@ -1556,10 +1556,10 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
unset. If --ff is specified, each _n_a_m_e refers to a shell func-
tion, and the function definition is removed. Each unset vari-
able or function is removed from the environment passed to sub-
sequent commands. If any of RRAANNDDOOMM, SSEECCOONNDDSS, LLIINNEENNOO, HHIISSTTCCMMDD,
FFUUNNCCNNAAMMEE, GGRROOUUPPSS, or DDIIRRSSTTAACCKK are unset, they lose their special
properties, even if they are subsequently reset. The exit sta-
tus is true unless a _n_a_m_e is readonly.
sequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANNDDOOMM, SSEECCOONNDDSS,
LLIINNEENNOO, HHIISSTTCCMMDD, FFUUNNCCNNAAMMEE, GGRROOUUPPSS, or DDIIRRSSTTAACCKK are unset, they
lose their special properties, even if they are subsequently
reset. The exit status is true unless a _n_a_m_e is readonly.
wwaaiitt [_n _._._.]
Wait for each specified process and return its termination sta-
+239 -236
View File
@@ -1,6 +1,6 @@
%!PS-Adobe-3.0
%%Creator: groff version 1.19.2
%%CreationDate: Wed Dec 23 16:47:11 2009
%%CreationDate: Wed Dec 30 13:07:37 2009
%%DocumentNeededResources: font Times-Roman
%%+ font Times-Bold
%%+ font Times-Italic
@@ -404,16 +404,16 @@ E F2 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys)-.05 G
180 312 Q F1(shell\255command)4.325 E F0 1.825(to be e)4.325 F -.15(xe)
-.15 G 1.825(cuted whene).15 F -.15(ve)-.25 G(r).15 E F1 -.1(ke)4.325 G
(yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F1(shell\255com-)
4.325 E(mand)180 324 Q F0 1.113(is e)3.614 F -.15(xe)-.15 G 1.113
(cuted, the shell sets the).15 F F2(READLINE_LINE)3.613 E F0 -.25(va)
3.613 G 1.113(riable to the contents of the).25 F F2 -.18(re)180 336 S
(adline).18 E F0 .586(line b)3.086 F(uf)-.2 E .586(fer and the)-.25 F F2
(READLINE_POINT)3.087 E F0 -.25(va)3.087 G .587
(riable to the current location of the).25 F 1.241(insertion point.)180
348 R 1.241(If the e)6.241 F -.15(xe)-.15 G 1.241
(cuted command changes the v).15 F 1.241(alue of)-.25 F F2
(READLINE_LINE)3.741 E F0(or)3.74 E F2(READLINE_POINT)180 360 Q F0 2.5
(,t)C(hose ne)-2.5 E 2.5(wv)-.25 G
4.325 E(mand)180 324 Q F0 1.765(is e)4.265 F -.15(xe)-.15 G 1.765
(cuted, the shell sets the).15 F/F3 9/Times-Bold@0 SF(READLINE_LINE)
4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F2
-.18(re)180 336 S(adline).18 E F0 1.353(line b)3.852 F(uf)-.2 E 1.353
(fer and the)-.25 F F3(READLINE_POINT)3.853 E F0 -.25(va)3.603 G 1.353
(riable to the current location of the).25 F 2.012(insertion point.)180
348 R 2.011(If the e)7.012 F -.15(xe)-.15 G 2.011
(cuted command changes the v).15 F 2.011(alue of)-.25 F F3
(READLINE_LINE)4.511 E F0(or)4.261 E F3(READLINE_POINT)180 360 Q/F4 9
/Times-Roman@0 SF(,)A F0(those ne)2.25 E 2.5(wv)-.25 G
(alues will be re\215ected in the editing state.)-2.75 E(The return v)
144 376.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15
(ve)-.25 G 2.5(no).15 G 2.5(ra)-2.5 G 2.5(ne)-2.5 G(rror occurred.)-2.5
@@ -422,7 +422,7 @@ E F2(br)108 393.6 Q(eak)-.18 E F0([)2.5 E F1(n)A F0(])A .054
(while)2.554 E F0(,)A F2(until)2.555 E F0 2.555(,o)C(r)-2.555 E F2
(select)2.555 E F0 2.555(loop. If)2.555 F F1(n)2.555 E F0 .055
(is speci\214ed, break)2.555 F F1(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G
(ls.).15 E F1(n)5.415 E F0 .055(must be)2.795 F/F3 10/Symbol SF<b3>2.555
(ls.).15 E F1(n)5.415 E F0 .055(must be)2.795 F/F5 10/Symbol SF<b3>2.555
E F0(1.)2.555 E(If)144 417.6 Q F1(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(is 0 unless)144
@@ -461,18 +461,18 @@ ent e)144 559.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001
(alid position in the call stack.)-.25 E F2(cd)108 612 Q F0([)2.5 E F2
(\255L|-P)A F0 2.5(][)C F1(dir)-2.5 E F0(])A .21
(Change the current directory to)144 624 R F1(dir)2.71 E F0 5.21(.T)C
.21(he v)-5.21 F(ariable)-.25 E/F4 9/Times-Bold@0 SF(HOME)2.71 E F0 .21
(is the def)2.46 F(ault)-.1 E F1(dir)2.71 E F0 5.21(.T).73 G .21(he v)
-5.21 F(ariable)-.25 E F4(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 .776
.21(he v)-5.21 F(ariable)-.25 E F3(HOME)2.71 E F0 .21(is the def)2.46 F
(ault)-.1 E F1(dir)2.71 E F0 5.21(.T).73 G .21(he v)-5.21 F(ariable)-.25
E F3(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 .776
(de\214nes the search path for the directory containing)144 636 R F1
(dir)3.276 E F0 5.777(.A).73 G(lternati)-5.777 E 1.077 -.15(ve d)-.25 H
.777(irectory names in).15 F F4(CDP)3.277 E -.855(AT)-.666 G(H).855 E F0
.777(irectory names in).15 F F3(CDP)3.277 E -.855(AT)-.666 G(H).855 E F0
.764(are separated by a colon \(:\).)144 648 R 3.264(An)5.764 G .764
(ull directory name in)-3.264 F F4(CDP)3.264 E -.855(AT)-.666 G(H).855 E
(ull directory name in)-3.264 F F3(CDP)3.264 E -.855(AT)-.666 G(H).855 E
F0 .764(is the same as the current direc-)3.014 F(tory)144 660 Q 2.973
(,i)-.65 G .473(.e., `)-2.973 F(`)-.74 E F2(.)A F0 -.74('')C 5.473(.I)
.74 G(f)-5.473 E F1(dir)3.323 E F0(be)3.703 E .474
(gins with a slash \(/\), then)-.15 F F4(CDP)2.974 E -.855(AT)-.666 G(H)
(gins with a slash \(/\), then)-.15 F F3(CDP)2.974 E -.855(AT)-.666 G(H)
.855 E F0 .474(is not used. The)2.724 F F2<ad50>2.974 E F0 .474
(option says to use)2.974 F .58(the ph)144 672 R .58
(ysical directory structure instead of follo)-.05 F .579
@@ -481,12 +481,12 @@ F0 .764(is the same as the current direc-)3.014 F(tory)144 660 Q 2.973
(iltin command\); the).2 F F2<ad4c>3.383 E F0 .884
(option forces symbolic links to be follo)3.384 F 3.384(wed. An)-.25 F
(ar)3.384 E .884(gument of)-.18 F F2<ad>3.384 E F0(is)3.384 E(equi)144
696 Q -.25(va)-.25 G .063(lent to).25 F F4($OLDPWD)2.563 E/F5 9
/Times-Roman@0 SF(.)A F0 .063(If a non-empty directory name from)4.563 F
F2(CDP)2.562 E -.95(AT)-.74 G(H).95 E F0 .062(is used, or if)2.562 F F2
<ad>2.562 E F0 .062(is the \214rst)2.562 F(ar)144 708 Q .116(gument, an\
d the directory change is successful, the absolute pathname of the ne)
-.18 F 2.616(ww)-.25 G .116(orking direc-)-2.716 F 1.165
696 Q -.25(va)-.25 G .316(lent to).25 F F3($OLDPWD)2.816 E F4(.)A F0
.316(If a non-empty directory name from)4.816 F F3(CDP)2.815 E -.855(AT)
-.666 G(H).855 E F0 .315(is used, or if)2.565 F F2<ad>2.815 E F0 .315
(is the \214rst)2.815 F(ar)144 708 Q .116(gument, and the directory cha\
nge is successful, the absolute pathname of the ne)-.18 F 2.616(ww)-.25
G .116(orking direc-)-2.716 F 1.165
(tory is written to the standard output.)144 720 R 1.164(The return v)
6.164 F 1.164(alue is true if the directory w)-.25 F 1.164
(as successfully)-.1 F(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(2)
@@ -506,10 +506,10 @@ E F0(with)3.527 E F2(ar)3.087 E(gs)-.37 E F0 .257
/Times-Bold@0 SF -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15
(xe)-.15 G 3.002(cuted. If).15 F(the)3.002 E F1<ad70>3.002 E F0 .502
(option is gi)3.002 F -.15(ve)-.25 G .501(n, the search for).15 F F2
(command)3.201 E F0(is)3.771 E .231(performed using a def)144 136.8 R
.231(ault v)-.1 F .231(alue for)-.25 F F1 -.74(PA)2.731 G(TH)-.21 E F0
.231(that is guaranteed to \214nd all of the standard utilities.)2.731 F
(If)5.232 E .175(either the)144 148.8 R F1<ad56>2.675 E F0(or)2.675 E F1
(command)3.201 E F0(is)3.771 E .399(performed using a def)144 136.8 R
.399(ault v)-.1 F .399(alue for)-.25 F F3 -.666(PA)2.899 G(TH)-.189 E F0
.4(that is guaranteed to \214nd all of the standard utilities.)2.649 F
(If)5.4 E .175(either the)144 148.8 R F1<ad56>2.675 E F0(or)2.675 E F1
<ad76>2.675 E F0 .175(option is supplied, a description of)2.675 F F2
(command)2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F1<ad76>2.674 E
F0 .174(option causes)2.674 F 3.11(as)144 160.8 S .61(ingle w)-3.11 F
@@ -798,13 +798,14 @@ E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).)
<ad69>144 672 Q F0 .557(The v)27.52 F .558
(ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25
(va)-.25 G .558(luation \(see).25 F F3 .558(ARITHMETIC EV)3.058 F(ALU)
-1.215 E(A-)-.54 E(TION \))180 684 Q F0(is performed when the v)2.25 E
(ariable is assigned a v)-.25 E(alue.)-.25 E F1<ad6c>144 696 Q F0 .91
(When the v)27.52 F .909(ariable is assigned a v)-.25 F .909
(alue, all upper)-.25 F .909(-case characters are con)-.2 F -.15(ve)-.4
G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 708 R
(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E(GNU Bash-4.0)72
768 Q(2004 Apr 20)148.735 E(5)203.725 E 0 Cg EP
-1.215 E(A-)-.54 E(TION)180 684 Q F0(abo)2.25 E -.15(ve)-.15 G 2.5(\)i)
.15 G 2.5(sp)-2.5 G(erformed when the v)-2.5 E(ariable is assigned a v)
-.25 E(alue.)-.25 E F1<ad6c>144 696 Q F0 .91(When the v)27.52 F .909
(ariable is assigned a v)-.25 F .909(alue, all upper)-.25 F .909
(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to lo).15 F(wer)
-.25 E(-)-.2 E 2.5(case. The)180 708 R(upper)2.5 E(-case attrib)-.2 E
(ute is disabled.)-.2 E(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(5)
203.725 E 0 Cg EP
%%Page: 6 6
%%BeginPageSetup
BP
@@ -829,15 +830,15 @@ F0 2.5(sf)C(or e)-2.5 E(xport to subsequent commands via the en)-.15 E
(vironment.)-.4 E .121(Using `+' instead of `\255' turns of)144 172.8 R
2.621(ft)-.25 G .121(he attrib)-2.621 F .121(ute instead, with the e)-.2
F .12(xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F
1.236(to destro)144 184.8 R 3.736(ya)-.1 G 3.737(na)-3.736 G 1.237
(rray v)-3.737 F 1.237(ariable and)-.25 F F1 1.237(+r will not r)3.737 F
(emo)-.18 E 1.437 -.1(ve t)-.1 H 1.237(he r).1 F 1.237(eadonly attrib)
-.18 F 3.737(ute. When)-.2 F 1.237(used in a)3.737 F .312(function, mak)
144 196.8 R .312(es each)-.1 F F2(name)2.812 E F1 .311
(local, as with the local)2.812 F F0 2.811(command. If)2.811 F 2.811(av)
2.811 G .311(ariable name is follo)-3.061 F .311(wed by)-.25 F(=)144
208.8 Q F2(value)A F0 3.238(,t)C .738(he v)-3.238 F .738(alue of the v)
-.25 F .738(ariable is set to)-.25 F F2(value)3.238 E F0 5.738(.T)C .738
.644(to destro)144 184.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v)
-3.144 F .644(ariable and)-.25 F F1(+r)3.145 E F0 .645(will not remo)
3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.145
(ute. When)-.2 F .645(used in a func-)3.145 F 1.945(tion, mak)144 196.8
R 1.945(es each)-.1 F F2(name)4.445 E F0 1.945(local, as with the)4.445
F F1(local)4.444 E F0 4.444(command. If)4.444 F 4.444(av)4.444 G 1.944
(ariable name is follo)-4.694 F 1.944(wed by)-.25 F(=)144 208.8 Q F2
(value)A F0 3.238(,t)C .738(he v)-3.238 F .738(alue of the v)-.25 F .738
(ariable is set to)-.25 F F2(value)3.238 E F0 5.738(.T)C .738
(he return v)-5.738 F .739(alue is 0 unless an in)-.25 F -.25(va)-.4 G
.739(lid option is).25 F .603
(encountered, an attempt is made to de\214ne a function using)144 220.8
@@ -887,27 +888,27 @@ G(he)-2.772 E(stack.)180 453.6 Q .257(The return v)144 470.4 R .258
(...])2.5 E -.4(Wi)144 511.2 S .295(thout options, each).4 F F2(jobspec)
4.535 E F0 .295(is remo)3.105 F -.15(ve)-.15 G 2.795(df).15 G .295
(rom the table of acti)-2.795 F .595 -.15(ve j)-.25 H 2.795(obs. If).15
F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .243(and neither)
144 523.2 R F1 .243(\255a nor \255r is supplied, the shell')2.743 F
2.743(sn)-.37 G .243(otion of the)-2.743 F F2(curr)2.743 E .243(ent job)
-.37 F F1 .243(is used.)2.743 F .244(If the \255h option)5.243 F .334
(is gi)144 535.2 R -.1(ve)-.1 G .334(n, each).1 F F2(jobspec)4.574 E F0
.334(is not remo)3.144 F -.15(ve)-.15 G 2.834(df).15 G .334
(rom the table, b)-2.834 F .334(ut is mark)-.2 F .334(ed so that)-.1 F
/F4 9/Times-Bold@0 SF(SIGHUP)2.834 E F0 .333(is not sent to)2.584 F
1.189(the job if the shell recei)144 547.2 R -.15(ve)-.25 G 3.689(sa).15
G F4(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 1.189(If no)5.689 F F2
(jobspec)5.429 E F0 1.189(is present, and neither the)3.999 F F1<ad61>
3.689 E F0 1.19(nor the)3.69 F F1<ad72>3.69 E F0 1.57
(option is supplied, the)144 559.2 R F2(curr)4.07 E 1.57(ent job)-.37 F
F0 1.57(is used.)4.07 F 1.569(If no)6.569 F F2(jobspec)5.809 E F0 1.569
(is supplied, the)4.379 F F1<ad61>4.069 E F0 1.569(option means to)4.069
F(remo)144 571.2 Q .903 -.15(ve o)-.15 H 3.103(rm).15 G .603
(ark all jobs; the)-3.103 F F1<ad72>3.103 E F0 .603(option without a)
3.103 F F2(jobspec)4.843 E F0(ar)3.414 E .604
(gument restricts operation to running)-.18 F 2.5(jobs. The)144 583.2 R
(return v)2.5 E(alue is 0 unless a)-.25 E F2(jobspec)4.24 E F0
(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E F1(echo)108 600 Q
F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .422(and neither)
144 523.2 R F1<ad61>2.922 E F0(nor)2.922 E F1<ad72>2.922 E F0 .422
(is supplied, the shell')2.922 F 2.922(sn)-.55 G .422(otion of the)
-2.922 F F2(curr)2.923 E .423(ent job)-.37 F F0 .423(is used.)2.923 F
.423(If the)5.423 F F1<ad68>2.923 E F0 .423(option is)2.923 F(gi)144
535.2 Q -.15(ve)-.25 G .141(n, each).15 F F2(jobspec)4.381 E F0 .141
(is not remo)2.951 F -.15(ve)-.15 G 2.641(df).15 G .141
(rom the table, b)-2.641 F .141(ut is mark)-.2 F .141(ed so that)-.1 F
/F4 9/Times-Bold@0 SF(SIGHUP)2.641 E F0 .14(is not sent to the)2.39 F
.004(job if the shell recei)144 547.2 R -.15(ve)-.25 G 2.504(sa).15 G F4
(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 .004(If no)4.504 F F2(jobspec)
4.244 E F0 .004(is present, and neither the)2.814 F F1<ad61>2.504 E F0
.005(nor the)2.504 F F1<ad72>2.505 E F0 .005(option is)2.505 F 1.229
(supplied, the)144 559.2 R F2(curr)3.729 E 1.229(ent job)-.37 F F0 1.229
(is used.)3.729 F 1.229(If no)6.229 F F2(jobspec)5.469 E F0 1.229
(is supplied, the)4.039 F F1<ad61>3.729 E F0 1.228(option means to remo)
3.729 F 1.528 -.15(ve o)-.15 H(r).15 E .656(mark all jobs; the)144 571.2
R F1<ad72>3.156 E F0 .657(option without a)3.156 F F2(jobspec)4.897 E F0
(ar)3.467 E .657(gument restricts operation to running jobs.)-.18 F(The)
5.657 E(return v)144 583.2 Q(alue is 0 unless a)-.25 E F2(jobspec)4.24 E
F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E F1(echo)108 600 Q
F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E
.395(Output the)144 612 R F2(ar)2.895 E(g)-.37 E F0 .395
(s, separated by spaces, follo)B .395(wed by a ne)-.25 F 2.895
@@ -1165,8 +1166,8 @@ F0 .803(The shell does not reset)5.304 F F4(OPTIND)3.303 E F0 .803
2.793(ws)-.25 G .294(et of parameters)-2.793 F(is to be used.)144 561.6
Q 2.044(When the end of options is encountered,)144 585.6 R F1(getopts)
4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.043
(alue greater than zero.)-.25 F F1(OPTIND)144 597.6 Q F0
(is set to the inde)2.5 E 2.5(xo)-.15 G 2.5(ft)-2.5 G
(alue greater than zero.)-.25 F F4(OPTIND)144 597.6 Q F0
(is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G
(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F1(name)2.5 E F0
(is set to ?.)2.5 E F1(getopts)144 621.6 Q F0 2.392
(normally parses the positional parameters, b)4.892 F 2.392
@@ -1261,21 +1262,21 @@ F1(history \255p)108 458.4 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5
482.4 S .752
(th no options, display the command history list with line numbers.).4 F
.752(Lines listed with a)5.752 F F1(*)3.251 E F0(ha)3.251 E -.15(ve)-.2
G 1.23(been modi\214ed.)144 494.4 R 1.23(An ar)6.23 F 1.23(gument of)
-.18 F F2(n)4.09 E F0 1.231(lists only the last)3.97 F F2(n)4.091 E F0
3.731(lines. If)3.971 F 1.231(the shell v)3.731 F(ariable)-.25 E F1
(HISTTIME-)3.731 E(FORMA)144 506.4 Q(T)-.95 E F0 .25
(is set and not null, it is used as a format string for)2.75 F F2
(strftime)2.749 E F0 .249(\(3\) to display the time stamp)B .378
(associated with each displayed history entry)144 518.4 R 5.378(.N)-.65
G 2.878(oi)-5.378 G(nterv)-2.878 E .379
(ening blank is printed between the format-)-.15 F .815
(ted time stamp and the history line.)144 530.4 R(If)5.814 E F2
(\214lename)3.314 E F0 .814
(is supplied, it is used as the name of the history)3.314 F
(\214le; if not, the v)144 542.4 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0
(is used.)2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H
(he follo).15 E(wing meanings:)-.25 E F1<ad63>144 554.4 Q F0
G .38(been modi\214ed.)144 494.4 R .38(An ar)5.38 F .38(gument of)-.18 F
F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88
(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E F3(HISTTIMEFOR-)
2.881 E(MA)144 506.4 Q(T)-.855 E F0 .265
(is set and not null, it is used as a format string for)2.515 F F2
(strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019
(ciated with each displayed history entry)144 518.4 R 6.019(.N)-.65 G
3.519(oi)-6.019 G(nterv)-3.519 E 1.019
(ening blank is printed between the formatted)-.15 F .176
(time stamp and the history line.)144 530.4 R(If)5.176 E F2(\214lename)
2.676 E F0 .176
(is supplied, it is used as the name of the history \214le; if)2.676 F
(not, the v)144 542.4 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.)
2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E
(wing meanings:)-.25 E F1<ad63>144 554.4 Q F0
(Clear the history list by deleting all the entries.)25.86 E F1<ad64>144
566.4 Q F2(of)2.5 E(fset)-.18 E F0(Delete the history entry at position)
180 578.4 Q F2(of)2.5 E(fset)-.18 E F0(.)A F1<ad61>144 590.4 Q F0 .598
@@ -1309,128 +1310,129 @@ E 0 Cg EP
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 290.48
(TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E .28(If the)
144 84 R/F1 10/Times-Bold@0 SF(HISTTIMEFORMA)2.78 E(T)-.95 E F0 .28
(is set, the time stamp information associated with each history entry)
2.78 F .54(is written to the history \214le, mark)144 96 R .539
(ed with the history comment character)-.1 F 5.539(.W)-.55 G .539
(hen the history \214le is)-5.539 F 1.778(read, lines be)144 108 R 1.778
(ginning with the history comment character follo)-.15 F 1.779
(wed immediately by a digit are)-.25 F 1.424
(interpreted as timestamps for the pre)144 120 R 1.424
(vious history line.)-.25 F 1.424(The return v)6.424 F 1.424
(TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E .145(If the)
144 84 R/F1 9/Times-Bold@0 SF(HISTTIMEFORMA)2.645 E(T)-.855 E F0 -.25
(va)2.395 G .145
(riable is set, the time stamp information associated with each history)
.25 F .669(entry is written to the history \214le, mark)144 96 R .669
(ed with the history comment character)-.1 F 5.668(.W)-.55 G .668
(hen the history)-5.668 F .955(\214le is read, lines be)144 108 R .956
(ginning with the history comment character follo)-.15 F .956
(wed immediately by a digit)-.25 F .416
(are interpreted as timestamps for the pre)144 120 R .416
(vious history line.)-.25 F .416(The return v)5.416 F .415
(alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .499(option is e\
ncountered, an error occurs while reading or writing the history \214le\
, an in)144 132 R -.25(va)-.4 G(lid).25 E/F2 10/Times-Italic@0 SF(of)3 E
(fset)-.18 E F0(is)3 E(supplied as an ar)144 144 Q(gument to)-.18 E F1
<ad64>2.5 E F0 2.5(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E
(xpansion supplied as an ar)-.15 E(gument to)-.18 E F1<ad70>2.5 E F0 -.1
(fa)2.5 G(ils.).1 E F1(jobs)108 160.8 Q F0([)2.5 E F1(\255lnprs)A F0 2.5
(][)C F2(jobspec)A F0(... ])2.5 E F1(jobs \255x)108 172.8 Q F2(command)
2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37 E F0(... ])2.5 E
(fset)-.18 E F0(is)3 E(supplied as an ar)144 144 Q(gument to)-.18 E/F3
10/Times-Bold@0 SF<ad64>2.5 E F0 2.5(,o)C 2.5(rt)-2.5 G(he history e)
-2.5 E(xpansion supplied as an ar)-.15 E(gument to)-.18 E F3<ad70>2.5 E
F0 -.1(fa)2.5 G(ils.).1 E F3(jobs)108 160.8 Q F0([)2.5 E F3(\255lnprs)A
F0 2.5(][)C F2(jobspec)A F0(... ])2.5 E F3(jobs \255x)108 172.8 Q F2
(command)2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37 E F0(... ])2.5 E
(The \214rst form lists the acti)144 184.8 Q .3 -.15(ve j)-.25 H 2.5
(obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E
(wing meanings:)-.25 E F1<ad6c>144 196.8 Q F0
(List process IDs in addition to the normal information.)27.52 E F1
(wing meanings:)-.25 E F3<ad6c>144 196.8 Q F0
(List process IDs in addition to the normal information.)27.52 E F3
<ad70>144 208.8 Q F0(List only the process ID of the job')24.74 E 2.5
(sp)-.55 G(rocess group leader)-2.5 E(.)-.55 E F1<ad6e>144 220.8 Q F0
(sp)-.55 G(rocess group leader)-2.5 E(.)-.55 E F3<ad6e>144 220.8 Q F0
.194(Display information only about jobs that ha)24.74 F .494 -.15(ve c)
-.2 H .193(hanged status since the user w).15 F .193(as last noti-)-.1 F
(\214ed of their status.)180 232.8 Q F1<ad72>144 244.8 Q F0
(Restrict output to running jobs.)25.86 E F1<ad73>144 256.8 Q F0
(\214ed of their status.)180 232.8 Q F3<ad72>144 244.8 Q F0
(Restrict output to running jobs.)25.86 E F3<ad73>144 256.8 Q F0
(Restrict output to stopped jobs.)26.41 E(If)144 273.6 Q F2(jobspec)
4.553 E F0 .313(is gi)3.123 F -.15(ve)-.25 G .313
(n, output is restricted to information about that job).15 F 5.314(.T)
-.4 G .314(he return status is 0 unless)-5.314 F(an in)144 285.6 Q -.25
(va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25
E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 302.4 R F1
<ad78>2.895 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0
E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 302.4 R F3
<ad78>2.895 E F0 .394(option is supplied,)2.894 F F3(jobs)2.894 E F0
.394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in)
3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .394
(with the corre-)3.164 F(sponding process group ID, and e)144 314.4 Q
-.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar)
2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 E
F1(kill)108 331.2 Q F0([)2.5 E F1<ad73>A F2(sigspec)2.5 E F0(|)2.5 E F1
<ad6e>2.5 E F2(signum)2.5 E F0(|)2.5 E F1<ad>2.5 E F2(sigspec)A F0 2.5
(][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1
F3(kill)108 331.2 Q F0([)2.5 E F3<ad73>A F2(sigspec)2.5 E F0(|)2.5 E F3
<ad6e>2.5 E F2(signum)2.5 E F0(|)2.5 E F3<ad>2.5 E F2(sigspec)A F0 2.5
(][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F3
(kill \255l)108 343.2 Q F0([)2.5 E F2(sigspec)A F0(|)2.5 E F2 -.2(ex)2.5
G(it_status).2 E F0(])A .119(Send the signal named by)144 355.2 R F2
(sigspec)2.959 E F0(or)2.929 E F2(signum)2.959 E F0 .119
(to the processes named by)2.939 F F2(pid)3.87 E F0(or)3.39 E F2
(jobspec)2.62 E F0(.).31 E F2(sigspec)5.46 E F0(is)2.93 E .319
(either a case-insensiti)144 367.2 R .619 -.15(ve s)-.25 H .319
(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.819 E F0 .318
(\(with or without the)2.569 F F3(SIG)2.818 E F0 .318
(ignal name such as).15 F F1(SIGKILL)2.819 E F0 .318
(\(with or without the)2.569 F F1(SIG)2.818 E F0 .318
(pre\214x\) or a signal)2.568 F(number;)144 379.2 Q F2(signum)4.188 E F0
1.349(is a signal number)4.168 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec)
4.189 E F0 1.349(is not present, then)4.159 F F3(SIGTERM)3.849 E F0
4.189 E F0 1.349(is not present, then)4.159 F F1(SIGTERM)3.849 E F0
1.349(is assumed.)3.599 F(An)6.349 E(ar)144 391.2 Q .523(gument of)-.18
F F1<ad6c>3.023 E F0 .523(lists the signal names.)3.023 F .523(If an)
F F3<ad6c>3.023 E F0 .523(lists the signal names.)3.023 F .523(If an)
5.523 F 3.023(ya)-.15 G -.18(rg)-3.023 G .523(uments are supplied when)
.18 F F1<ad6c>3.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523
.18 F F3<ad6c>3.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523
(n, the names).15 F .28(of the signals corresponding to the ar)144 403.2
R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E
F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 415.2 Q .378(gument to)-.18 F
F1<ad6c>2.878 E F0 .378
F3<ad6c>2.878 E F0 .378
(is a number specifying either a signal number or the e)2.878 F .377
(xit status of a process termi-)-.15 F .593(nated by a signal.)144 427.2
R F1(kill)5.593 E F0 .593(returns true if at least one signal w)3.093 F
R F3(kill)5.593 E F0 .593(returns true if at least one signal w)3.093 F
.593(as successfully sent, or f)-.1 F .594(alse if an error)-.1 F
(occurs or an in)144 439.2 Q -.25(va)-.4 G(lid option is encountered.)
.25 E F1(let)108 456 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E
F0(...])2.5 E(Each)144 468 Q F2(ar)3.965 E(g)-.37 E F0 1.135
(is an arithmetic e)3.855 F 1.134(xpression to be e)-.15 F -.25(va)-.25
G 1.134(luated \(see).25 F F3 1.134(ARITHMETIC EV)3.634 F(ALU)-1.215 E
-.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(\).)A F0 1.134(If the)
5.634 F(last)144 480 Q F2(ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G
(luates to 0,).25 E F1(let)2.5 E F0(returns 1; 0 is returned otherwise.)
2.5 E F1(local)108 496.8 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(name)
.25 E F3(let)108 456 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E
F0(...])2.5 E(Each)144 468 Q F2(ar)3.027 E(g)-.37 E F0 .197
(is an arithmetic e)2.917 F .197(xpression to be e)-.15 F -.25(va)-.25 G
.196(luated \(see).25 F F1 .196(ARITHMETIC EV)2.696 F(ALU)-1.215 E -.855
(AT)-.54 G(ION).855 E F0(abo)2.446 E -.15(ve)-.15 G 2.696(\). If).15 F
(the last)144 480 Q F2(ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G
(luates to 0,).25 E F3(let)2.5 E F0(returns 1; 0 is returned otherwise.)
2.5 E F3(local)108 496.8 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(name)
-2.5 E F0([=)A F2(value)A F0 2.5(].)C(..])-2.5 E -.15(Fo)144 508.8 S
2.56(re).15 G .06(ach ar)-2.56 F .06(gument, a local v)-.18 F .06
(ariable named)-.25 F F2(name)2.92 E F0 .06(is created, and assigned)
2.74 F F2(value)2.56 E F0 5.06(.T).18 G(he)-5.06 E F2(option)2.56 E F0
.06(can be)2.56 F(an)144 520.8 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653
(he options accepted by)-3.153 F F1(declar)3.153 E(e)-.18 E F0 5.652(.W)
C(hen)-5.652 E F1(local)3.152 E F0 .652
(he options accepted by)-3.153 F F3(declar)3.153 E(e)-.18 E F0 5.652(.W)
C(hen)-5.652 E F3(local)3.152 E F0 .652
(is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144
532.8 Q F2(name)3.72 E F0 .86(to ha)3.54 F 1.16 -.15(ve a v)-.2 H .861
(isible scope restricted to that function and its children.).15 F -.4
(Wi)5.861 G .861(th no operands,).4 F F1(local)144 544.8 Q F0 1.165
(Wi)5.861 G .861(th no operands,).4 F F3(local)144 544.8 Q F0 1.165
(writes a list of local v)3.665 F 1.165
(ariables to the standard output.)-.25 F 1.165(It is an error to use)
6.165 F F1(local)3.664 E F0 1.164(when not)3.664 F .232
6.165 F F3(local)3.664 E F0 1.164(when not)3.664 F .232
(within a function.)144 556.8 R .233(The return status is 0 unless)5.232
F F1(local)2.733 E F0 .233(is used outside a function, an in)2.733 F
F F3(local)2.733 E F0 .233(is used outside a function, an in)2.733 F
-.25(va)-.4 G(lid).25 E F2(name)3.093 E F0(is)2.913 E(supplied, or)144
568.8 Q F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1
(logout)108 585.6 Q F0(Exit a login shell.)9.33 E F1(map\214le)108 602.4
Q F0([)2.5 E F1<ad6e>A F2(count)2.5 E F0 2.5(][)C F1<ad4f>-2.5 E F2
(origin)2.5 E F0 2.5(][)C F1<ad73>-2.5 E F2(count)2.5 E F0 2.5(][)C F1
<ad74>-2.5 E F0 2.5(][)C F1<ad75>-2.5 E F2(fd)2.5 E F0 2.5(][)C F1<ad43>
-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)C F1<ad63>-2.5 E F2(quantum)
2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0(])A F1 -.18(re)108 614.4 S
(adarray).18 E F0([)2.5 E F1<ad6e>A F2(count)2.5 E F0 2.5(][)C F1<ad4f>
-2.5 E F2(origin)2.5 E F0 2.5(][)C F1<ad73>-2.5 E F2(count)2.5 E F0 2.5
(][)C F1<ad74>-2.5 E F0 2.5(][)C F1<ad75>-2.5 E F2(fd)2.5 E F0 2.5(][)C
F1<ad43>-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)C F1<ad63>-2.5 E F2
568.8 Q F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F3
(logout)108 585.6 Q F0(Exit a login shell.)9.33 E F3(map\214le)108 602.4
Q F0([)2.5 E F3<ad6e>A F2(count)2.5 E F0 2.5(][)C F3<ad4f>-2.5 E F2
(origin)2.5 E F0 2.5(][)C F3<ad73>-2.5 E F2(count)2.5 E F0 2.5(][)C F3
<ad74>-2.5 E F0 2.5(][)C F3<ad75>-2.5 E F2(fd)2.5 E F0 2.5(][)C F3<ad43>
-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)C F3<ad63>-2.5 E F2(quantum)
2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0(])A F3 -.18(re)108 614.4 S
(adarray).18 E F0([)2.5 E F3<ad6e>A F2(count)2.5 E F0 2.5(][)C F3<ad4f>
-2.5 E F2(origin)2.5 E F0 2.5(][)C F3<ad73>-2.5 E F2(count)2.5 E F0 2.5
(][)C F3<ad74>-2.5 E F0 2.5(][)C F3<ad75>-2.5 E F2(fd)2.5 E F0 2.5(][)C
F3<ad43>-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)C F3<ad63>-2.5 E F2
(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0(])A .351
(Read lines from the standard input into the inde)144 626.4 R -.15(xe)
-.15 G 2.851(da).15 G .351(rray v)-2.851 F(ariable)-.25 E F2(arr)2.85 E
(ay)-.15 E F0 2.85(,o).32 G 2.85(rf)-2.85 G .35(rom \214le descriptor)
-2.85 F F2(fd)2.85 E F0 .924(if the)144 638.4 R F1<ad75>3.424 E F0 .924
(option is supplied.)3.424 F .925(The v)5.925 F(ariable)-.25 E F1
(MAPFILE)3.425 E F0 .925(is the def)3.425 F(ault)-.1 E F2(arr)3.425 E
(ay)-.15 E F0 5.925(.O)C .925(ptions, if supplied,)-5.925 F(ha)144 650.4
Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad6e>144
662.4 Q F0(Cop)24.74 E 2.5(ya)-.1 G 2.5(tm)-2.5 G(ost)-2.5 E F2(count)
2.7 E F0 2.5(lines. If)3.18 F F2(count)2.5 E F0
(is 0, all lines are copied.)2.5 E F1<ad4f>144 674.4 Q F0(Be)22.52 E
-2.85 F F2(fd)2.85 E F0 1.248(if the)144 638.4 R F3<ad75>3.748 E F0
1.248(option is supplied.)3.748 F 1.249(The v)6.249 F(ariable)-.25 E F1
(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 E F2(arr)3.749 E
(ay)-.15 E F0 6.249(.O)C 1.249(ptions, if supplied,)-6.249 F(ha)144
650.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F3<ad6e>
144 662.4 Q F0(Cop)24.74 E 2.5(ya)-.1 G 2.5(tm)-2.5 G(ost)-2.5 E F2
(count)2.7 E F0 2.5(lines. If)3.18 F F2(count)2.5 E F0
(is 0, all lines are copied.)2.5 E F3<ad4f>144 674.4 Q F0(Be)22.52 E
(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82 E(x)
-.15 E F2(origin)2.5 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E 2.5(xi)
-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1<ad73>144 686.4 Q F0
(Discard the \214rst)26.41 E F2(count)2.5 E F0(lines read.)2.5 E F1
<ad74>144 698.4 Q F0(Remo)26.97 E .3 -.15(ve a t)-.15 H
(railing line from each line read.).15 E F1<ad75>144 710.4 Q F0
-.15 G 2.5(s0)-2.5 G(.)-2.5 E F3<ad73>144 686.4 Q F0
(Discard the \214rst)26.41 E F2(count)2.5 E F0(lines read.)2.5 E F3
<ad74>144 698.4 Q F0(Remo)26.97 E .3 -.15(ve a t)-.15 H(railing ne).15 E
(wline from each line read.)-.25 E F3<ad75>144 710.4 Q F0
(Read lines from \214le descriptor)24.74 E F2(fd)2.5 E F0
(instead of the standard input.)2.5 E(GNU Bash-4.0)72 768 Q(2004 Apr 20)
148.735 E(10)198.725 E 0 Cg EP
@@ -1790,10 +1792,10 @@ F1(&&)3.73 E F0(or)3.73 E F4<efef>3.73 E F0 3.73(,a)C 1.53 -.15(ny c)
3.19 E F0 3.19(,i)C 3.19(fs)-3.19 G .69(et, is e)-3.19 F -.15(xe)-.15 G
.69(cuted before).15 F .686(the shell e)184 554.4 R 3.186(xits. This)
-.15 F .686(option applies to the shell en)3.186 F .686
(vironment and each subshell en)-.4 F(viron-)-.4 E .659
(ment separately \(see)184 566.4 R F1 .659(COMMAND EXECUTION ENVIR)3.159
F(ONMENT)-.3 E F0(abo)3.159 E -.15(ve)-.15 G .658(\), and may).15 F
(cause subshells to e)184 578.4 Q(xit before e)-.15 E -.15(xe)-.15 G
(vironment and each subshell en)-.4 F(viron-)-.4 E .068
(ment separately \(see)184 566.4 R F3 .068(COMMAND EXECUTION ENVIR)2.568
F(ONMENT)-.27 E F0(abo)2.318 E -.15(ve)-.15 G .068(\), and may cause).15
F(subshells to e)184 578.4 Q(xit before e)-.15 E -.15(xe)-.15 G
(cuting all the commands in the subshell.).15 E F1<ad66>144 590.4 Q F0
(Disable pathname e)30.97 E(xpansion.)-.15 E F1<ad68>144 602.4 Q F0
2.238(Remember the location of commands as the)28.74 F 4.738(ya)-.15 G
@@ -1832,11 +1834,11 @@ BP
(when the shell is interacti)224 168 R -.15(ve)-.25 G 3.45(,u).15 G .95
(nless the shell is started with the)-3.45 F F1(\255\255noediting)3.45 E
F0 2.5(option. This)224 180 R(also af)2.5 E(fects the editing interf)
-.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1
(errtrace)184 192 Q F0(Same as)5.03 E F1<ad45>2.5 E F0(.)A F1(functrace)
184 204 Q F0(Same as)224 216 Q F1<ad54>2.5 E F0(.)A F1(err)184 228 Q
(exit)-.18 E F0(Same as)11.31 E F1<ad65>2.5 E F0(.)A F1(hashall)184 240
Q F0(Same as)9.43 E F1<ad68>2.5 E F0(.)A F1(histexpand)184 252 Q F0
-.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(err)
184 192 Q(exit)-.18 E F0(Same as)11.31 E F1<ad65>2.5 E F0(.)A F1
(errtrace)184 204 Q F0(Same as)5.03 E F1<ad45>2.5 E F0(.)A F1(functrace)
184 216 Q F0(Same as)224 228 Q F1<ad54>2.5 E F0(.)A F1(hashall)184 240 Q
F0(Same as)9.43 E F1<ad68>2.5 E F0(.)A F1(histexpand)184 252 Q F0
(Same as)224 264 Q F1<ad48>2.5 E F0(.)A F1(history)184 276 Q F0 .586
(Enable command history)10 F 3.087(,a)-.65 G 3.087(sd)-3.087 G .587
(escribed abo)-3.087 F .887 -.15(ve u)-.15 H(nder).15 E/F3 9
@@ -1884,34 +1886,33 @@ F2(option\255name)3.572 E F0 3.572(,a)C 1.071(series of)-.001 F F1(set)
F3($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)-.27 E F0 1.072
(\214les are not pro-)3.322 F 1.501
(cessed, shell functions are not inherited from the en)184 666 R 1.5
(vironment, and the)-.4 F F3(SHELLOPTS)4 E F4(,)A F1 -.3(BA)184 678 S
(SHOPTS).3 E F0(,)A F1(CDP)3.186 E -.95(AT)-.74 G(H).95 E F0 3.186(,a)C
(nd)-3.186 E F1(GLOBIGNORE)3.186 E F0 -.25(va)3.186 G .686
(riables, if the).25 F 3.186(ya)-.15 G .686(ppear in the en)-3.186 F
(viron-)-.4 E .854(ment, are ignored.)184 690 R .854
(If the shell is started with the ef)5.854 F(fecti)-.25 E 1.154 -.15
(ve u)-.25 H .853(ser \(group\) id not equal to).15 F .043
(the real user \(group\) id, and the)184 702 R F1<ad70>2.543 E F0 .043
(option is not supplied, these actions are tak)2.543 F .043(en and the)
-.1 F(ef)184 714 Q(fecti)-.25 E 1.667 -.15(ve u)-.25 H 1.367
(ser id is set to the real user id.).15 F 1.367(If the)6.367 F F1<ad70>
3.867 E F0 1.366(option is supplied at startup, the)3.866 F(ef)184 726 Q
(fecti)-.25 E .708 -.15(ve u)-.25 H .408(ser id is not reset.).15 F -.45
(Tu)5.409 G .409(rning this option of).45 F 2.909(fc)-.25 G .409
(auses the ef)-2.909 F(fecti)-.25 E .709 -.15(ve u)-.25 H .409
(ser and group).15 F(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(14)
198.725 E 0 Cg EP
(vironment, and the)-.4 F F3(SHELLOPTS)4 E F4(,)A F3 -.27(BA)184 678 S
(SHOPTS).27 E F4(,)A F3(CDP)2.774 E -.855(AT)-.666 G(H).855 E F4(,)A F0
(and)2.774 E F3(GLOBIGNORE)3.024 E F0 -.25(va)2.774 G .524
(riables, if the).25 F 3.025(ya)-.15 G .525(ppear in the en)-3.025 F
(vironment,)-.4 E .38(are ignored.)184 690 R .38
(If the shell is started with the ef)5.38 F(fecti)-.25 E .679 -.15(ve u)
-.25 H .379(ser \(group\) id not equal to the real).15 F .461
(user \(group\) id, and the)184 702 R F1<ad70>2.961 E F0 .461
(option is not supplied, these actions are tak)2.961 F .462
(en and the ef)-.1 F(fec-)-.25 E(ti)184 714 Q .695 -.15(ve u)-.25 H .395
(ser id is set to the real user id.).15 F .395(If the)5.395 F F1<ad70>
2.895 E F0 .394(option is supplied at startup, the ef)2.895 F(fecti)-.25
E -.15(ve)-.25 G .386(user id is not reset.)184 726 R -.45(Tu)5.386 G
.386(rning this option of).45 F 2.886(fc)-.25 G .387(auses the ef)-2.886
F(fecti)-.25 E .687 -.15(ve u)-.25 H .387(ser and group ids to be).15 F
(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(14)198.725 E 0 Cg EP
%%Page: 15 15
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 290.48
(TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E
(ids to be set to the real user and group ids.)184 84 Q/F1 10
/Times-Bold@0 SF<ad74>144 96 Q F0(Exit after reading and e)30.97 E -.15
(xe)-.15 G(cuting one command.).15 E F1<ad75>144 108 Q F0 -.35(Tr)28.74
G .044(eat unset v).35 F .044(ariables and parameters other than the sp\
ecial parameters "@" and "*" as an)-.25 F .182
(set to the real user and group ids.)184 84 Q/F1 10/Times-Bold@0 SF
<ad74>144 96 Q F0(Exit after reading and e)30.97 E -.15(xe)-.15 G
(cuting one command.).15 E F1<ad75>144 108 Q F0 -.35(Tr)28.74 G .044
(eat unset v).35 F .044(ariables and parameters other than the special \
parameters "@" and "*" as an)-.25 F .182
(error when performing parameter e)184 120 R 2.682(xpansion. If)-.15 F
-.15(ex)2.682 G .183(pansion is attempted on an unset v).15 F(ari-)-.25
E .746(able or parameter)184 132 R 3.246(,t)-.4 G .746
@@ -2069,17 +2070,17 @@ Q F0 .448(If set,)184 356.4 R F1(bash)2.948 E F0 .448
(topped and running jobs before e)-2.949 F .449(xiting an interacti)-.15
F -.15(ve)-.25 G 3.439(shell. If)184 368.4 R(an)3.439 E 3.439(yj)-.15 G
.938(obs are running, this causes the e)-3.439 F .938
(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 1.456
(attempted without an interv)184 380.4 R 1.456(ening command \(see)-.15
F F1 1.456(JOB CONTR)3.956 F(OL)-.3 E F0(abo)3.956 E -.15(ve)-.15 G
3.956(\). The).15 F(shell)3.956 E(al)184 392.4 Q -.1(wa)-.1 G
(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G(obs are stopped.)
-2.5 E F1(checkwinsize)144 404.4 Q F0 .797(If set,)184 416.4 R F1(bash)
3.297 E F0 .797(checks the windo)3.297 F 3.297(ws)-.25 G .796
(ize after each command and, if necessary)-3.297 F 3.296(,u)-.65 G .796
(pdates the)-3.296 F -.25(va)184 428.4 S(lues of).25 E/F3 9/Times-Bold@0
SF(LINES)2.5 E F0(and)2.25 E F3(COLUMNS)2.5 E/F4 9/Times-Roman@0 SF(.)A
F1(cmdhist)144 440.4 Q F0 1.202(If set,)6.11 F F1(bash)3.702 E F0 1.202
(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 2.203
(attempted without an interv)184 380.4 R 2.203(ening command \(see)-.15
F/F3 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E
-.15(ve)-.15 G 4.703(\). The).15 F(shell)4.704 E(al)184 392.4 Q -.1(wa)
-.1 G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G
(obs are stopped.)-2.5 E F1(checkwinsize)144 404.4 Q F0 .797(If set,)184
416.4 R F1(bash)3.297 E F0 .797(checks the windo)3.297 F 3.297(ws)-.25 G
.796(ize after each command and, if necessary)-3.297 F 3.296(,u)-.65 G
.796(pdates the)-3.296 F -.25(va)184 428.4 S(lues of).25 E F3(LINES)2.5
E F0(and)2.25 E F3(COLUMNS)2.5 E/F4 9/Times-Roman@0 SF(.)A F1(cmdhist)
144 440.4 Q F0 1.202(If set,)6.11 F F1(bash)3.702 E F0 1.202
(attempts to sa)3.702 F 1.502 -.15(ve a)-.2 H 1.202
(ll lines of a multiple-line command in the same history).15 F(entry)184
452.4 Q 5(.T)-.65 G(his allo)-5 E
@@ -2142,52 +2143,53 @@ F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167 F 1.667
(cuting in a subroutine \(a shell function or a shell script e).15 F
-.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1
(sour)220 132 Q(ce)-.18 E F0 -.2(bu)2.5 G(iltins\), a call to).2 E F1
-.18(re)2.5 G(tur).18 E(n)-.15 E F0(is simulated.)2.5 E F1 26(4. B)184
144 R(ASH_ARGC)-.3 E F0(and)3.776 E F1 -.3(BA)3.776 G(SH_ARGV).3 E F0
1.275(are updated as described in their descrip-)3.776 F(tions abo)220
156 Q -.15(ve)-.15 G(.).15 E F1(5.)184 168 Q F0 1.359
-.18(re)2.5 G(tur).18 E(n)-.15 E F0(is simulated.)2.5 E F1(4.)184 144 Q
/F2 9/Times-Bold@0 SF -.27(BA)28.5 G(SH_ARGC).27 E F0(and)3.154 E F2
-.27(BA)3.404 G(SH_ARGV).27 E F0 .904
(are updated as described in their descriptions)3.154 F(abo)220 156 Q
-.15(ve)-.15 G(.).15 E F1(5.)184 168 Q F0 1.359
(Function tracing is enabled:)28.5 F 1.359
(command substitution, shell functions, and sub-)6.359 F(shells in)220
180 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E/F2 10
180 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E/F3 10
/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1
(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0(traps.)2.5 E F1(6.)
184 192 Q F0 .805(Error tracing is enabled:)28.5 F .804
(command substitution, shell functions, and subshells)5.805 F(in)220 204
Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F2
Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3
(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E(OR)-.3 E F0
(trap.)2.5 E F1(extglob)144 216 Q F0 .4(If set, the e)8.89 F .4
(xtended pattern matching features described abo)-.15 F .7 -.15(ve u)
-.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 228 Q
F0(are enabled.)2.5 E F1(extquote)144 240 Q F0 2.473(If set,)184 252 R
F1($)4.973 E F0<08>A F2(string)A F0 4.973<0861>C(nd)-4.973 E F1($)4.973
E F0(")A F2(string)A F0 4.973("q)C 2.473(uoting is performed within)
-4.973 F F1(${)4.973 E F2(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G
F1($)4.973 E F0<08>A F3(string)A F0 4.973<0861>C(nd)-4.973 E F1($)4.973
E F0(")A F3(string)A F0 4.973("q)C 2.473(uoting is performed within)
-4.973 F F1(${)4.973 E F3(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G
(pansions).15 E(enclosed in double quotes.)184 264 Q
(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 276 Q F0
1.424(If set, patterns which f)7.77 F 1.425
(ail to match \214lenames during pathname e)-.1 F 1.425
(xpansion result in an)-.15 F -.15(ex)184 288 S(pansion error).15 E(.)
-.55 E F1 -.25(fo)144 300 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0
.585(If set, the suf)184 312 R<8c78>-.25 E .585(es speci\214ed by the)
-.15 F F1(FIGNORE)3.085 E F0 .585(shell v)3.085 F .585(ariable cause w)
-.25 F .585(ords to be ignored)-.1 F .32(when performing w)184 324 R .32
.937(If set, the suf)184 312 R<8c78>-.25 E .936(es speci\214ed by the)
-.15 F F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w)
-.25 F .936(ords to be ignored)-.1 F .32(when performing w)184 324 R .32
(ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G .32
(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 3.33
(pletions. See)184 336 R/F3 9/Times-Bold@0 SF .83(SHELL V)3.33 F
(ARIABLES)-1.215 E F0(abo)3.08 E 1.13 -.15(ve f)-.15 H .829
(or a description of).15 F F1(FIGNORE)3.329 E F0 5.829(.T)C .829
(his option)-5.829 F(is enabled by def)184 348 Q(ault.)-.1 E F1
(globstar)144 360 Q F0 .178(If set, the pattern)5 F F1(**)2.678 E F0
.178(used in a pathname e)2.678 F .178(xpansion conte)-.15 F .179
(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.948
(pletions. See)184 336 R F2 .448(SHELL V)2.948 F(ARIABLES)-1.215 E F0
(abo)2.698 E .748 -.15(ve f)-.15 H .448(or a description of).15 F F2
(FIGNORE)2.947 E/F4 9/Times-Roman@0 SF(.)A F0 .447(This option is)4.947
F(enabled by def)184 348 Q(ault.)-.1 E F1(globstar)144 360 Q F0 .178
(If set, the pattern)5 F F1(**)2.678 E F0 .178(used in a pathname e)
2.678 F .178(xpansion conte)-.15 F .179
(xt will match a \214les and zero or)-.15 F 1.298
(more directories and subdirectories.)184 372 R 1.298
(If the pattern is follo)6.298 F 1.298(wed by a)-.25 F F1(/)3.797 E F0
3.797(,o)C 1.297(nly directories)-3.797 F(and subdirectories match.)184
384 Q F1(gnu_errfmt)144 396 Q F0(If set, shell error messages are writt\
en in the standard GNU error message format.)184 408 Q F1(histappend)144
420 Q F0 .383
420 Q F0 .676
(If set, the history list is appended to the \214le named by the v)184
432 R .384(alue of the)-.25 F F1(HISTFILE)2.884 E F0 -.25(va)2.884 G
432 R .676(alue of the)-.25 F F2(HISTFILE)3.177 E F0 -.25(va)2.927 G
(ri-).25 E(able when the shell e)184 444 Q(xits, rather than o)-.15 E
-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 456 Q(eedit)-.18
E F0 .576(If set, and)184 468 R F1 -.18(re)3.076 G(adline).18 E F0 .575
@@ -2205,16 +2207,16 @@ G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182
(will attempt to perform hostname completion)3.682 F 1.381(when a w)184
564 R 1.381(ord containing a)-.1 F F1(@)3.881 E F0 1.381
(is being completed \(see)3.881 F F1(Completing)3.88 E F0(under)3.88 E
F3(READLINE)3.88 E F0(abo)184 576 Q -.15(ve)-.15 G 2.5(\). This).15 F
F2(READLINE)3.88 E F0(abo)184 576 Q -.15(ve)-.15 G 2.5(\). This).15 F
(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 588 Q F0(If set,)
184 600 Q F1(bash)2.5 E F0(will send)2.5 E F3(SIGHUP)2.5 E F0
184 600 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0
(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H(ogin shell e)
.15 E(xits.)-.15 E F1(interacti)144 612 Q -.1(ve)-.1 G(_comments).1 E F0
.33(If set, allo)184 624 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33
(ginning with)-.15 F F1(#)2.83 E F0 .33(to cause that w)2.83 F .33
(ord and all remaining characters on)-.1 F .967
(that line to be ignored in an interacti)184 636 R 1.267 -.15(ve s)-.25
H .967(hell \(see).15 F F3(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve)-.15
H .967(hell \(see).15 F F2(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve)-.15
G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 648 Q
(ault.)-.1 E F1(lithist)144 660 Q F0 .654(If set, and the)15.55 F F1
(cmdhist)3.154 E F0 .654(option is enabled, multi-line commands are sa)
@@ -2223,7 +2225,7 @@ G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 648 Q
(wlines rather than using semicolon separators where possible.)-.25 E F1
(login_shell)144 684 Q F0 .486
(The shell sets this option if it is started as a login shell \(see)184
696 R F3(INV)2.986 E(OCA)-.405 E(TION)-.855 E F0(abo)2.736 E -.15(ve)
696 R F2(INV)2.986 E(OCA)-.405 E(TION)-.855 E F0(abo)2.736 E -.15(ve)
-.15 G 2.986(\). The).15 F -.25(va)184 708 S(lue may not be changed.).25
E(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(17)198.725 E 0 Cg EP
%%Page: 18 18
@@ -2238,10 +2240,10 @@ BP
-.1(wa)184 108 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
(`The mail in)-.74 E/F2 10/Times-Italic@0 SF(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 F1
(no_empty_cmd_completion)144 120 Q F0 .146(If set, and)184 132 R F1 -.18
(re)2.646 G(adline).18 E F0 .146(is being used,)2.646 F F1(bash)2.646 E
F0 .145(will not attempt to search the)2.646 F F1 -.74(PA)2.645 G(TH)
-.21 E F0 .145(for possible)2.645 F
(no_empty_cmd_completion)144 120 Q F0 .325(If set, and)184 132 R F1 -.18
(re)2.825 G(adline).18 E F0 .325(is being used,)2.825 F F1(bash)2.824 E
F0 .324(will not attempt to search the)2.824 F/F3 9/Times-Bold@0 SF
-.666(PA)2.824 G(TH)-.189 E F0 .324(for possible)2.574 F
(completions when completion is attempted on an empty line.)184 144 Q F1
(nocaseglob)144 156 Q F0 .436(If set,)184 168 R F1(bash)2.936 E F0 .436
(matches \214lenames in a case\255insensiti)2.936 F .737 -.15(ve f)-.25
@@ -2265,9 +2267,9 @@ E F1([[)2.5 E F0(conditional commands.)2.5 E F1(nullglob)144 228 Q F0
(go parameter e)-.18 F 1.448(xpansion, command substitution, arithmetic)
-.15 F -.15(ex)184 324 S .171(pansion, and quote remo).15 F -.25(va)-.15
G 2.67(la).25 G .17(fter being e)-2.67 F .17(xpanded as described in)
-.15 F/F3 9/Times-Bold@0 SF(PR)2.67 E(OMPTING)-.27 E F0(abo)2.42 E -.15
(ve)-.15 G(.).15 E(This option is enabled by def)184 336 Q(ault.)-.1 E
F1 -.18(re)144 348 S(stricted_shell).18 E F0 1.069
-.15 F F3(PR)2.67 E(OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E
(This option is enabled by def)184 336 Q(ault.)-.1 E F1 -.18(re)144 348
S(stricted_shell).18 E F0 1.069
(The shell sets this option if it is started in restricted mode \(see)
184 360 R F3 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 372 Q 4.178
(w\). The)-.25 F -.25(va)4.178 G 1.678(lue may not be changed.).25 F
@@ -2617,17 +2619,18 @@ F(If)6.655 E F2<ad61>4.155 E F0 1.655
F -.15(ve)-.15 G 2.96(d. Each).15 F .903(unset v)144 201.6 R .903
(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.402(df).15 G .902
(rom the en)-3.402 F .902(vironment passed to subsequent commands.)-.4 F
(If)5.902 E(an)144 213.6 Q 4.284(yo)-.15 G(f)-4.284 E/F3 9/Times-Bold@0
SF(RANDOM)4.284 E/F4 9/Times-Roman@0 SF(,)A F3(SECONDS)4.035 E F4(,)A F3
(LINENO)4.035 E F4(,)A F3(HISTCMD)4.035 E F4(,)A F3(FUNCN)4.035 E(AME)
-.18 E F4(,)A F3(GR)4.035 E(OUPS)-.27 E F4(,)A F0(or)4.035 E F3(DIRST)
4.285 E -.495(AC)-.81 G(K).495 E F0(are)4.035 E .329(unset, the)144
225.6 R 2.829(yl)-.15 G .328(ose their special properties, e)-2.829 F
-.15(ve)-.25 G 2.828(ni).15 G 2.828(ft)-2.828 G(he)-2.828 E 2.828(ya)
-.15 G .328(re subsequently reset.)-2.828 F .328(The e)5.328 F .328
(xit status is true)-.15 F(unless a)144 237.6 Q F1(name)2.86 E F0
(is readonly)2.68 E(.)-.65 E F2(wait)108 254.4 Q F0([)2.5 E F1 2.5(n.)C
(..)-2.5 E F0(])A -.8(Wa)144 266.4 S .288
(If)5.902 E(an)144 213.6 Q 6.915(yo)-.15 G(f)-6.915 E/F3 9/Times-Bold@0
SF(COMP_W)6.915 E(ORDBREAKS)-.09 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM)
6.665 E F4(,)A F3(SECONDS)6.665 E F4(,)A F3(LINENO)6.665 E F4(,)A F3
(HISTCMD)6.666 E F4(,)A F3(FUNCN)6.666 E(AME)-.18 E F4(,)A F3(GR)144
225.6 Q(OUPS)-.27 E F4(,)A F0(or)2.523 E F3(DIRST)2.773 E -.495(AC)-.81
G(K).495 E F0 .272(are unset, the)2.522 F 2.772(yl)-.15 G .272
(ose their special properties, e)-2.772 F -.15(ve)-.25 G 2.772(ni).15 G
2.772(ft)-2.772 G(he)-2.772 E 2.772(ya)-.15 G .272(re subsequently)
-2.772 F 2.5(reset. The)144 237.6 R -.15(ex)2.5 G
(it status is true unless a).15 E F1(name)2.86 E F0(is readonly)2.68 E
(.)-.65 E F2(wait)108 254.4 Q F0([)2.5 E F1 2.5(n.)C(..)-2.5 E F0(])A
-.8(Wa)144 266.4 S .288
(it for each speci\214ed process and return its termination status.).8 F
(Each)5.288 E F1(n)3.148 E F0 .288(may be a process ID or a)3.028 F .722
(job speci\214cation; if a job spec is gi)144 278.4 R -.15(ve)-.25 G
+6 -5
View File
@@ -1,6 +1,6 @@
%!PS-Adobe-3.0
%%Creator: groff version 1.19.2
%%CreationDate: Wed Dec 23 16:47:11 2009
%%CreationDate: Wed Dec 30 13:07:37 2009
%%DocumentNeededResources: font Times-Roman
%%+ font Times-Bold
%%DocumentSuppliedResources: procset grops 1.19 2
@@ -240,9 +240,10 @@ E F0(\(1\))A F1(RESTRICTED SHELL)72 112.8 Q F0(If)108 124.8 Q F2(bash)
(bash)2.5 E F0(with the e)2.5 E(xception that the follo)-.15 E
(wing are disallo)-.25 E(wed or not performed:)-.25 E 32.5<8363>108
165.6 S(hanging directories with)-32.5 E F2(cd)2.5 E F0 32.5<8373>108
182.4 S(etting or unsetting the v)-32.5 E(alues of)-.25 E F2(SHELL)2.5 E
F0(,)A F2 -.74(PA)2.5 G(TH)-.21 E F0(,)A F2(ENV)2.5 E F0 2.5(,o)C(r)-2.5
E F2 -.3(BA)2.5 G(SH_ENV).3 E F0 32.5<8373>108 199.2 S
182.4 S(etting or unsetting the v)-32.5 E(alues of)-.25 E/F3 9
/Times-Bold@0 SF(SHELL)2.5 E/F4 9/Times-Roman@0 SF(,)A F3 -.666(PA)2.25
G(TH)-.189 E F4(,)A F3(ENV)2.25 E F4(,)A F0(or)2.25 E F3 -.27(BA)2.5 G
(SH_ENV).27 E F0 32.5<8373>108 199.2 S
(pecifying command names containing)-32.5 E F2(/)2.5 E F0 32.5<8373>108
216 S(pecifying a \214le name containing a)-32.5 E F2(/)2.5 E F0
(as an ar)2.5 E(gument to the)-.18 E F2(.)2.5 E F0 -.2(bu)5 G
@@ -252,7 +253,7 @@ E F2 -.3(BA)2.5 G(SH_ENV).3 E F0 32.5<8373>108 199.2 S
(hash)2.851 E F0 -.2(bu)2.851 G .351(iltin com-).2 F(mand)144 244.8 Q
32.5<8369>108 261.6 S(mporting function de\214nitions from the shell en)
-32.5 E(vironment at startup)-.4 E 32.5<8370>108 278.4 S(arsing the v)
-32.5 E(alue of)-.25 E F2(SHELLOPTS)2.5 E F0(from the shell en)2.5 E
-32.5 E(alue of)-.25 E F3(SHELLOPTS)2.5 E F0(from the shell en)2.25 E
(vironment at startup)-.4 E 32.5<8372>108 295.2 S(edirecting output usi\
ng the >, >|, <>, >&, &>, and >> redirection operators)-32.5 E 32.5
<8375>108 312 S(sing the)-32.5 E F2(exec)2.5 E F0 -.2(bu)2.5 G
+2
View File
@@ -4198,7 +4198,9 @@ execute_function (var, words, flags, fds_to_close, async, subshell)
if (variable_context == 0 || this_shell_function == 0)
{
make_funcname_visible (0);
#if defined (PROCESS_SUBSTITUTION)
unlink_fifo_list ();
#endif
}
return (result);
-1
View File
@@ -1 +0,0 @@
../../COPYING
+674
View File
@@ -0,0 +1,674 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
-1
View File
@@ -1 +0,0 @@
../../include/ansi_stdlib.h
+54
View File
@@ -0,0 +1,54 @@
/* ansi_stdlib.h -- An ANSI Standard stdlib.h. */
/* A minimal stdlib.h containing extern declarations for those functions
that bash uses. */
/* Copyright (C) 1993 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined (_STDLIB_H_)
#define _STDLIB_H_ 1
/* String conversion functions. */
extern int atoi ();
extern double atof ();
extern double strtod ();
/* Memory allocation functions. */
/* Generic pointer type. */
#ifndef PTR_T
#if defined (__STDC__)
# define PTR_T void *
#else
# define PTR_T char *
#endif
#endif /* PTR_T */
extern PTR_T malloc ();
extern PTR_T realloc ();
extern void free ();
/* Other miscellaneous functions. */
extern void abort ();
extern void exit ();
extern char *getenv ();
extern void qsort ();
#endif /* _STDLIB_H */
-1
View File
@@ -1 +0,0 @@
../../../doc/fdl.texi
+506
View File
@@ -0,0 +1,506 @@
@c The GNU Free Documentation License.
@center Version 1.3, 3 November 2008
@c This file is intended to be included within another document,
@c hence no sectioning command or @node.
@display
Copyright @copyright{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
@uref{http://fsf.org/}
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@end display
@enumerate 0
@item
PREAMBLE
The purpose of this License is to make a manual, textbook, or other
functional and useful document @dfn{free} in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
This License is a kind of ``copyleft'', which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
@item
APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The ``Document'', below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as ``you''. You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
A ``Modified Version'' of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
A ``Secondary Section'' is a named appendix or a front-matter section
of the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject. (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
The ``Invariant Sections'' are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
The ``Cover Texts'' are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
A ``Transparent'' copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not ``Transparent'' is called ``Opaque''.
Examples of suitable formats for Transparent copies include plain
@sc{ascii} without markup, Texinfo input format, La@TeX{} input
format, @acronym{SGML} or @acronym{XML} using a publicly available
@acronym{DTD}, and standard-conforming simple @acronym{HTML},
PostScript or @acronym{PDF} designed for human modification. Examples
of transparent image formats include @acronym{PNG}, @acronym{XCF} and
@acronym{JPG}. Opaque formats include proprietary formats that can be
read and edited only by proprietary word processors, @acronym{SGML} or
@acronym{XML} for which the @acronym{DTD} and/or processing tools are
not generally available, and the machine-generated @acronym{HTML},
PostScript or @acronym{PDF} produced by some word processors for
output purposes only.
The ``Title Page'' means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, ``Title Page'' means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
The ``publisher'' means any person or entity that distributes copies
of the Document to the public.
A section ``Entitled XYZ'' means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as ``Acknowledgements'',
``Dedications'', ``Endorsements'', or ``History''.) To ``Preserve the Title''
of such a section when you modify the Document means that it remains a
section ``Entitled XYZ'' according to this definition.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
@item
VERBATIM COPYING
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
@item
COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
@item
MODIFICATIONS
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
@enumerate A
@item
Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
@item
List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
@item
State on the Title page the name of the publisher of the
Modified Version, as the publisher.
@item
Preserve all the copyright notices of the Document.
@item
Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
@item
Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
@item
Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
@item
Include an unaltered copy of this License.
@item
Preserve the section Entitled ``History'', Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled ``History'' in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
@item
Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the ``History'' section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
@item
For any section Entitled ``Acknowledgements'' or ``Dedications'', Preserve
the Title of the section, and preserve in the section all the
substance and tone of each of the contributor acknowledgements and/or
dedications given therein.
@item
Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
@item
Delete any section Entitled ``Endorsements''. Such a section
may not be included in the Modified Version.
@item
Do not retitle any existing section to be Entitled ``Endorsements'' or
to conflict in title with any Invariant Section.
@item
Preserve any Warranty Disclaimers.
@end enumerate
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
You may add a section Entitled ``Endorsements'', provided it contains
nothing but endorsements of your Modified Version by various
parties---for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
@item
COMBINING DOCUMENTS
You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled ``History''
in the various original documents, forming one section Entitled
``History''; likewise combine any sections Entitled ``Acknowledgements'',
and any sections Entitled ``Dedications''. You must delete all
sections Entitled ``Endorsements.''
@item
COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
@item
AGGREGATION WITH INDEPENDENT WORKS
A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an ``aggregate'' if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
@item
TRANSLATION
Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
If a section in the Document is Entitled ``Acknowledgements'',
``Dedications'', or ``History'', the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
@item
TERMINATION
You may not copy, modify, sublicense, or distribute the Document
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense, or distribute it is void, and
will automatically terminate your rights under this License.
However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, receipt of a copy of some or all of the same material does
not give you any rights to use it.
@item
FUTURE REVISIONS OF THIS LICENSE
The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
@uref{http://www.gnu.org/copyleft/}.
Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License ``or any later version'' applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation. If the Document
specifies that a proxy can decide which future versions of this
License can be used, that proxy's public statement of acceptance of a
version permanently authorizes you to choose that version for the
Document.
@item
RELICENSING
``Massive Multiauthor Collaboration Site'' (or ``MMC Site'') means any
World Wide Web server that publishes copyrightable works and also
provides prominent facilities for anybody to edit those works. A
public wiki that anybody can edit is an example of such a server. A
``Massive Multiauthor Collaboration'' (or ``MMC'') contained in the
site means any set of copyrightable works thus published on the MMC
site.
``CC-BY-SA'' means the Creative Commons Attribution-Share Alike 3.0
license published by Creative Commons Corporation, a not-for-profit
corporation with a principal place of business in San Francisco,
California, as well as future copyleft versions of that license
published by that same organization.
``Incorporate'' means to publish or republish a Document, in whole or
in part, as part of another Document.
An MMC is ``eligible for relicensing'' if it is licensed under this
License, and if all works that were first published under this License
somewhere other than this MMC, and subsequently incorporated in whole
or in part into the MMC, (1) had no cover texts or invariant sections,
and (2) were thus incorporated prior to November 1, 2008.
The operator of an MMC Site may republish an MMC contained in the site
under CC-BY-SA on the same site at any time before August 1, 2009,
provided the MMC is eligible for relicensing.
@end enumerate
@page
@heading ADDENDUM: How to use this License for your documents
To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
@smallexample
@group
Copyright (C) @var{year} @var{your name}.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled ``GNU
Free Documentation License''.
@end group
@end smallexample
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the ``with@dots{}Texts.'' line with this:
@smallexample
@group
with the Invariant Sections being @var{list their titles}, with
the Front-Cover Texts being @var{list}, and with the Back-Cover Texts
being @var{list}.
@end group
@end smallexample
If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.
@c Local Variables:
@c ispell-local-pdict: "ispell-dict"
@c End:
-1
View File
@@ -1 +0,0 @@
../../include/posixdir.h
+61
View File
@@ -0,0 +1,61 @@
/* posixdir.h -- Posix directory reading includes and defines. */
/* Copyright (C) 1987,1991 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
/* This file should be included instead of <dirent.h> or <sys/dir.h>. */
#if !defined (_POSIXDIR_H_)
#define _POSIXDIR_H_
#if defined (HAVE_DIRENT_H)
# include <dirent.h>
# if defined (HAVE_STRUCT_DIRENT_D_NAMLEN)
# define D_NAMLEN(d) ((d)->d_namlen)
# else
# define D_NAMLEN(d) (strlen ((d)->d_name))
# endif /* !HAVE_STRUCT_DIRENT_D_NAMLEN */
#else
# if defined (HAVE_SYS_NDIR_H)
# include <sys/ndir.h>
# endif
# if defined (HAVE_SYS_DIR_H)
# include <sys/dir.h>
# endif
# if defined (HAVE_NDIR_H)
# include <ndir.h>
# endif
# if !defined (dirent)
# define dirent direct
# endif /* !dirent */
# define D_NAMLEN(d) ((d)->d_namlen)
#endif /* !HAVE_DIRENT_H */
#if defined (HAVE_STRUCT_DIRENT_D_INO) && !defined (HAVE_STRUCT_DIRENT_D_FILENO)
# define d_fileno d_ino
#endif
#if defined (_POSIX_SOURCE) && (!defined (HAVE_STRUCT_DIRENT_D_INO) || defined (BROKEN_DIRENT_D_INO))
/* Posix does not require that the d_ino field be present, and some
systems do not provide it. */
# define REAL_DIR_ENTRY(dp) 1
#else
# define REAL_DIR_ENTRY(dp) (dp->d_ino != 0)
#endif /* _POSIX_SOURCE */
#endif /* !_POSIXDIR_H_ */
-1
View File
@@ -1 +0,0 @@
../../include/posixjmp.h
+40
View File
@@ -0,0 +1,40 @@
/* posixjmp.h -- wrapper for setjmp.h with changes for POSIX systems. */
/* Copyright (C) 1987,1991 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _POSIXJMP_H_
#define _POSIXJMP_H_
#include <setjmp.h>
/* This *must* be included *after* config.h */
#if defined (HAVE_POSIX_SIGSETJMP)
# define procenv_t sigjmp_buf
# if !defined (__OPENNT)
# undef setjmp
# define setjmp(x) sigsetjmp((x), 1)
# undef longjmp
# define longjmp(x, n) siglongjmp((x), (n))
# endif /* !__OPENNT */
#else
# define procenv_t jmp_buf
#endif
#endif /* _POSIXJMP_H_ */
-1
View File
@@ -1 +0,0 @@
../../include/posixselect.h
+47
View File
@@ -0,0 +1,47 @@
/* posixselect.h -- wrapper for select(2) includes and definitions */
/* Copyright (C) 2009 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _POSIXSELECT_H_
#define _POSIXSELECT_H_
#if defined (FD_SET) && !defined (HAVE_SELECT)
# define HAVE_SELECT 1
#endif
#if defined (HAVE_SELECT)
# if !defined (HAVE_SYS_SELECT_H) || !defined (M_UNIX)
# include <sys/time.h>
# endif
#endif /* HAVE_SELECT */
#if defined (HAVE_SYS_SELECT_H)
# include <sys/select.h>
#endif
#ifndef USEC_PER_SEC
# define USEC_PER_SEC 1000000
#endif
#define USEC_TO_TIMEVAL(us, tv) \
do { \
(tv).tv_sec = (us) / USEC_PER_SEC; \
(tv).tv_usec = (us) % USEC_PER_SEC; \
} while (0)
#endif /* _POSIXSELECT_H_ */
-1
View File
@@ -1 +0,0 @@
../../include/posixstat.h
+142
View File
@@ -0,0 +1,142 @@
/* posixstat.h -- Posix stat(2) definitions for systems that
don't have them. */
/* Copyright (C) 1987,1991 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
/* This file should be included instead of <sys/stat.h>.
It relies on the local sys/stat.h to work though. */
#if !defined (_POSIXSTAT_H_)
#define _POSIXSTAT_H_
#include <sys/stat.h>
#if defined (STAT_MACROS_BROKEN)
# undef S_ISBLK
# undef S_ISCHR
# undef S_ISDIR
# undef S_ISFIFO
# undef S_ISREG
# undef S_ISLNK
#endif /* STAT_MACROS_BROKEN */
/* These are guaranteed to work only on isc386 */
#if !defined (S_IFDIR) && !defined (S_ISDIR)
# define S_IFDIR 0040000
#endif /* !S_IFDIR && !S_ISDIR */
#if !defined (S_IFMT)
# define S_IFMT 0170000
#endif /* !S_IFMT */
/* Posix 1003.1 5.6.1.1 <sys/stat.h> file types */
/* Some Posix-wannabe systems define _S_IF* macros instead of S_IF*, but
do not provide the S_IS* macros that Posix requires. */
#if defined (_S_IFMT) && !defined (S_IFMT)
#define S_IFMT _S_IFMT
#endif
#if defined (_S_IFIFO) && !defined (S_IFIFO)
#define S_IFIFO _S_IFIFO
#endif
#if defined (_S_IFCHR) && !defined (S_IFCHR)
#define S_IFCHR _S_IFCHR
#endif
#if defined (_S_IFDIR) && !defined (S_IFDIR)
#define S_IFDIR _S_IFDIR
#endif
#if defined (_S_IFBLK) && !defined (S_IFBLK)
#define S_IFBLK _S_IFBLK
#endif
#if defined (_S_IFREG) && !defined (S_IFREG)
#define S_IFREG _S_IFREG
#endif
#if defined (_S_IFLNK) && !defined (S_IFLNK)
#define S_IFLNK _S_IFLNK
#endif
#if defined (_S_IFSOCK) && !defined (S_IFSOCK)
#define S_IFSOCK _S_IFSOCK
#endif
/* Test for each symbol individually and define the ones necessary (some
systems claiming Posix compatibility define some but not all). */
#if defined (S_IFBLK) && !defined (S_ISBLK)
#define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */
#endif
#if defined (S_IFCHR) && !defined (S_ISCHR)
#define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR) /* character device */
#endif
#if defined (S_IFDIR) && !defined (S_ISDIR)
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
#endif
#if defined (S_IFREG) && !defined (S_ISREG)
#define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */
#endif
#if defined (S_IFIFO) && !defined (S_ISFIFO)
#define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO) /* fifo - named pipe */
#endif
#if defined (S_IFLNK) && !defined (S_ISLNK)
#define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK) /* symbolic link */
#endif
#if defined (S_IFSOCK) && !defined (S_ISSOCK)
#define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK) /* socket */
#endif
/*
* POSIX 1003.1 5.6.1.2 <sys/stat.h> File Modes
*/
#if !defined (S_IRWXU)
# if !defined (S_IREAD)
# define S_IREAD 00400
# define S_IWRITE 00200
# define S_IEXEC 00100
# endif /* S_IREAD */
# if !defined (S_IRUSR)
# define S_IRUSR S_IREAD /* read, owner */
# define S_IWUSR S_IWRITE /* write, owner */
# define S_IXUSR S_IEXEC /* execute, owner */
# define S_IRGRP (S_IREAD >> 3) /* read, group */
# define S_IWGRP (S_IWRITE >> 3) /* write, group */
# define S_IXGRP (S_IEXEC >> 3) /* execute, group */
# define S_IROTH (S_IREAD >> 6) /* read, other */
# define S_IWOTH (S_IWRITE >> 6) /* write, other */
# define S_IXOTH (S_IEXEC >> 6) /* execute, other */
# endif /* !S_IRUSR */
# define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
# define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
# define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
#endif /* !S_IRWXU */
/* These are non-standard, but are used in builtins.c$symbolic_umask() */
#define S_IRUGO (S_IRUSR | S_IRGRP | S_IROTH)
#define S_IWUGO (S_IWUSR | S_IWGRP | S_IWOTH)
#define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
#endif /* _POSIXSTAT_H_ */
-1
View File
@@ -1 +0,0 @@
../tilde/tilde.c
+502
View File
@@ -0,0 +1,502 @@
/* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */
/* Copyright (C) 1988-2009 Free Software Foundation, Inc.
This file is part of the GNU Readline Library (Readline), a library
for reading lines of text with interactive input and history editing.
Readline is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Readline is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Readline. If not, see <http://www.gnu.org/licenses/>.
*/
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#if defined (HAVE_UNISTD_H)
# ifdef _MINIX
# include <sys/types.h>
# endif
# include <unistd.h>
#endif
#if defined (HAVE_STRING_H)
# include <string.h>
#else /* !HAVE_STRING_H */
# include <strings.h>
#endif /* !HAVE_STRING_H */
#if defined (HAVE_STDLIB_H)
# include <stdlib.h>
#else
# include "ansi_stdlib.h"
#endif /* HAVE_STDLIB_H */
#include <sys/types.h>
#if defined (HAVE_PWD_H)
#include <pwd.h>
#endif
#include "tilde.h"
#if defined (TEST) || defined (STATIC_MALLOC)
static void *xmalloc (), *xrealloc ();
#else
# include "xmalloc.h"
#endif /* TEST || STATIC_MALLOC */
#if !defined (HAVE_GETPW_DECLS)
# if defined (HAVE_GETPWUID)
extern struct passwd *getpwuid PARAMS((uid_t));
# endif
# if defined (HAVE_GETPWNAM)
extern struct passwd *getpwnam PARAMS((const char *));
# endif
#endif /* !HAVE_GETPW_DECLS */
#if !defined (savestring)
#define savestring(x) strcpy ((char *)xmalloc (1 + strlen (x)), (x))
#endif /* !savestring */
#if !defined (NULL)
# if defined (__STDC__)
# define NULL ((void *) 0)
# else
# define NULL 0x0
# endif /* !__STDC__ */
#endif /* !NULL */
/* If being compiled as part of bash, these will be satisfied from
variables.o. If being compiled as part of readline, they will
be satisfied from shell.o. */
extern char *sh_get_home_dir PARAMS((void));
extern char *sh_get_env_value PARAMS((const char *));
/* The default value of tilde_additional_prefixes. This is set to
whitespace preceding a tilde so that simple programs which do not
perform any word separation get desired behaviour. */
static const char *default_prefixes[] =
{ " ~", "\t~", (const char *)NULL };
/* The default value of tilde_additional_suffixes. This is set to
whitespace or newline so that simple programs which do not
perform any word separation get desired behaviour. */
static const char *default_suffixes[] =
{ " ", "\n", (const char *)NULL };
/* If non-null, this contains the address of a function that the application
wants called before trying the standard tilde expansions. The function
is called with the text sans tilde, and returns a malloc()'ed string
which is the expansion, or a NULL pointer if the expansion fails. */
tilde_hook_func_t *tilde_expansion_preexpansion_hook = (tilde_hook_func_t *)NULL;
/* If non-null, this contains the address of a function to call if the
standard meaning for expanding a tilde fails. The function is called
with the text (sans tilde, as in "foo"), and returns a malloc()'ed string
which is the expansion, or a NULL pointer if there is no expansion. */
tilde_hook_func_t *tilde_expansion_failure_hook = (tilde_hook_func_t *)NULL;
/* When non-null, this is a NULL terminated array of strings which
are duplicates for a tilde prefix. Bash uses this to expand
`=~' and `:~'. */
char **tilde_additional_prefixes = (char **)default_prefixes;
/* When non-null, this is a NULL terminated array of strings which match
the end of a username, instead of just "/". Bash sets this to
`:' and `=~'. */
char **tilde_additional_suffixes = (char **)default_suffixes;
static int tilde_find_prefix PARAMS((const char *, int *));
static int tilde_find_suffix PARAMS((const char *));
static char *isolate_tilde_prefix PARAMS((const char *, int *));
static char *glue_prefix_and_suffix PARAMS((char *, const char *, int));
/* Find the start of a tilde expansion in STRING, and return the index of
the tilde which starts the expansion. Place the length of the text
which identified this tilde starter in LEN, excluding the tilde itself. */
static int
tilde_find_prefix (string, len)
const char *string;
int *len;
{
register int i, j, string_len;
register char **prefixes;
prefixes = tilde_additional_prefixes;
string_len = strlen (string);
*len = 0;
if (*string == '\0' || *string == '~')
return (0);
if (prefixes)
{
for (i = 0; i < string_len; i++)
{
for (j = 0; prefixes[j]; j++)
{
if (strncmp (string + i, prefixes[j], strlen (prefixes[j])) == 0)
{
*len = strlen (prefixes[j]) - 1;
return (i + *len);
}
}
}
}
return (string_len);
}
/* Find the end of a tilde expansion in STRING, and return the index of
the character which ends the tilde definition. */
static int
tilde_find_suffix (string)
const char *string;
{
register int i, j, string_len;
register char **suffixes;
suffixes = tilde_additional_suffixes;
string_len = strlen (string);
for (i = 0; i < string_len; i++)
{
#if defined (__MSDOS__)
if (string[i] == '/' || string[i] == '\\' /* || !string[i] */)
#else
if (string[i] == '/' /* || !string[i] */)
#endif
break;
for (j = 0; suffixes && suffixes[j]; j++)
{
if (strncmp (string + i, suffixes[j], strlen (suffixes[j])) == 0)
return (i);
}
}
return (i);
}
/* Return a new string which is the result of tilde expanding STRING. */
char *
tilde_expand (string)
const char *string;
{
char *result;
int result_size, result_index;
result_index = result_size = 0;
if (result = strchr (string, '~'))
result = (char *)xmalloc (result_size = (strlen (string) + 16));
else
result = (char *)xmalloc (result_size = (strlen (string) + 1));
/* Scan through STRING expanding tildes as we come to them. */
while (1)
{
register int start, end;
char *tilde_word, *expansion;
int len;
/* Make START point to the tilde which starts the expansion. */
start = tilde_find_prefix (string, &len);
/* Copy the skipped text into the result. */
if ((result_index + start + 1) > result_size)
result = (char *)xrealloc (result, 1 + (result_size += (start + 20)));
strncpy (result + result_index, string, start);
result_index += start;
/* Advance STRING to the starting tilde. */
string += start;
/* Make END be the index of one after the last character of the
username. */
end = tilde_find_suffix (string);
/* If both START and END are zero, we are all done. */
if (!start && !end)
break;
/* Expand the entire tilde word, and copy it into RESULT. */
tilde_word = (char *)xmalloc (1 + end);
strncpy (tilde_word, string, end);
tilde_word[end] = '\0';
string += end;
expansion = tilde_expand_word (tilde_word);
xfree (tilde_word);
len = strlen (expansion);
#ifdef __CYGWIN__
/* Fix for Cygwin to prevent ~user/xxx from expanding to //xxx when
$HOME for `user' is /. On cygwin, // denotes a network drive. */
if (len > 1 || *expansion != '/' || *string != '/')
#endif
{
if ((result_index + len + 1) > result_size)
result = (char *)xrealloc (result, 1 + (result_size += (len + 20)));
strcpy (result + result_index, expansion);
result_index += len;
}
xfree (expansion);
}
result[result_index] = '\0';
return (result);
}
/* Take FNAME and return the tilde prefix we want expanded. If LENP is
non-null, the index of the end of the prefix into FNAME is returned in
the location it points to. */
static char *
isolate_tilde_prefix (fname, lenp)
const char *fname;
int *lenp;
{
char *ret;
int i;
ret = (char *)xmalloc (strlen (fname));
#if defined (__MSDOS__)
for (i = 1; fname[i] && fname[i] != '/' && fname[i] != '\\'; i++)
#else
for (i = 1; fname[i] && fname[i] != '/'; i++)
#endif
ret[i - 1] = fname[i];
ret[i - 1] = '\0';
if (lenp)
*lenp = i;
return ret;
}
#if 0
/* Public function to scan a string (FNAME) beginning with a tilde and find
the portion of the string that should be passed to the tilde expansion
function. Right now, it just calls tilde_find_suffix and allocates new
memory, but it can be expanded to do different things later. */
char *
tilde_find_word (fname, flags, lenp)
const char *fname;
int flags, *lenp;
{
int x;
char *r;
x = tilde_find_suffix (fname);
if (x == 0)
{
r = savestring (fname);
if (lenp)
*lenp = 0;
}
else
{
r = (char *)xmalloc (1 + x);
strncpy (r, fname, x);
r[x] = '\0';
if (lenp)
*lenp = x;
}
return r;
}
#endif
/* Return a string that is PREFIX concatenated with SUFFIX starting at
SUFFIND. */
static char *
glue_prefix_and_suffix (prefix, suffix, suffind)
char *prefix;
const char *suffix;
int suffind;
{
char *ret;
int plen, slen;
plen = (prefix && *prefix) ? strlen (prefix) : 0;
slen = strlen (suffix + suffind);
ret = (char *)xmalloc (plen + slen + 1);
if (plen)
strcpy (ret, prefix);
strcpy (ret + plen, suffix + suffind);
return ret;
}
/* Do the work of tilde expansion on FILENAME. FILENAME starts with a
tilde. If there is no expansion, call tilde_expansion_failure_hook.
This always returns a newly-allocated string, never static storage. */
char *
tilde_expand_word (filename)
const char *filename;
{
char *dirname, *expansion, *username;
int user_len;
struct passwd *user_entry;
if (filename == 0)
return ((char *)NULL);
if (*filename != '~')
return (savestring (filename));
/* A leading `~/' or a bare `~' is *always* translated to the value of
$HOME or the home directory of the current user, regardless of any
preexpansion hook. */
if (filename[1] == '\0' || filename[1] == '/')
{
/* Prefix $HOME to the rest of the string. */
expansion = sh_get_env_value ("HOME");
/* If there is no HOME variable, look up the directory in
the password database. */
if (expansion == 0)
expansion = sh_get_home_dir ();
return (glue_prefix_and_suffix (expansion, filename, 1));
}
username = isolate_tilde_prefix (filename, &user_len);
if (tilde_expansion_preexpansion_hook)
{
expansion = (*tilde_expansion_preexpansion_hook) (username);
if (expansion)
{
dirname = glue_prefix_and_suffix (expansion, filename, user_len);
xfree (username);
free (expansion);
return (dirname);
}
}
/* No preexpansion hook, or the preexpansion hook failed. Look in the
password database. */
dirname = (char *)NULL;
#if defined (HAVE_GETPWNAM)
user_entry = getpwnam (username);
#else
user_entry = 0;
#endif
if (user_entry == 0)
{
/* If the calling program has a special syntax for expanding tildes,
and we couldn't find a standard expansion, then let them try. */
if (tilde_expansion_failure_hook)
{
expansion = (*tilde_expansion_failure_hook) (username);
if (expansion)
{
dirname = glue_prefix_and_suffix (expansion, filename, user_len);
free (expansion);
}
}
/* If we don't have a failure hook, or if the failure hook did not
expand the tilde, return a copy of what we were passed. */
if (dirname == 0)
dirname = savestring (filename);
}
#if defined (HAVE_GETPWENT)
else
dirname = glue_prefix_and_suffix (user_entry->pw_dir, filename, user_len);
#endif
xfree (username);
#if defined (HAVE_GETPWENT)
endpwent ();
#endif
return (dirname);
}
#if defined (TEST)
#undef NULL
#include <stdio.h>
main (argc, argv)
int argc;
char **argv;
{
char *result, line[512];
int done = 0;
while (!done)
{
printf ("~expand: ");
fflush (stdout);
if (!gets (line))
strcpy (line, "done");
if ((strcmp (line, "done") == 0) ||
(strcmp (line, "quit") == 0) ||
(strcmp (line, "exit") == 0))
{
done = 1;
break;
}
result = tilde_expand (line);
printf (" --> %s\n", result);
free (result);
}
exit (0);
}
static void memory_error_and_abort ();
static void *
xmalloc (bytes)
size_t bytes;
{
void *temp = (char *)malloc (bytes);
if (!temp)
memory_error_and_abort ();
return (temp);
}
static void *
xrealloc (pointer, bytes)
void *pointer;
int bytes;
{
void *temp;
if (!pointer)
temp = malloc (bytes);
else
temp = realloc (pointer, bytes);
if (!temp)
memory_error_and_abort ();
return (temp);
}
static void
memory_error_and_abort ()
{
fprintf (stderr, "readline: out of virtual memory\n");
abort ();
}
/*
* Local variables:
* compile-command: "gcc -g -DTEST -o tilde tilde.c"
* end:
*/
#endif /* TEST */
-1
View File
@@ -1 +0,0 @@
../tilde/tilde.h
+80
View File
@@ -0,0 +1,80 @@
/* tilde.h: Externally available variables and function in libtilde.a. */
/* Copyright (C) 1992-2009 Free Software Foundation, Inc.
This file contains the Readline Library (Readline), a set of
routines for providing Emacs style line input to programs that ask
for it.
Readline is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Readline is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Readline. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined (_TILDE_H_)
# define _TILDE_H_
#ifdef __cplusplus
extern "C" {
#endif
/* A function can be defined using prototypes and compile on both ANSI C
and traditional C compilers with something like this:
extern char *func PARAMS((char *, char *, int)); */
#if !defined (PARAMS)
# if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus)
# define PARAMS(protos) protos
# else
# define PARAMS(protos) ()
# endif
#endif
typedef char *tilde_hook_func_t PARAMS((char *));
/* If non-null, this contains the address of a function that the application
wants called before trying the standard tilde expansions. The function
is called with the text sans tilde, and returns a malloc()'ed string
which is the expansion, or a NULL pointer if the expansion fails. */
extern tilde_hook_func_t *tilde_expansion_preexpansion_hook;
/* If non-null, this contains the address of a function to call if the
standard meaning for expanding a tilde fails. The function is called
with the text (sans tilde, as in "foo"), and returns a malloc()'ed string
which is the expansion, or a NULL pointer if there is no expansion. */
extern tilde_hook_func_t *tilde_expansion_failure_hook;
/* When non-null, this is a NULL terminated array of strings which
are duplicates for a tilde prefix. Bash uses this to expand
`=~' and `:~'. */
extern char **tilde_additional_prefixes;
/* When non-null, this is a NULL terminated array of strings which match
the end of a username, instead of just "/". Bash sets this to
`:' and `=~'. */
extern char **tilde_additional_suffixes;
/* Return a new string which is the result of tilde expanding STRING. */
extern char *tilde_expand PARAMS((const char *));
/* Do the work of tilde expansion on FILENAME. FILENAME starts with a
tilde. If there is no expansion, call tilde_expansion_failure_hook. */
extern char *tilde_expand_word PARAMS((const char *));
/* Find the portion of the string beginning with ~ that should be expanded. */
extern char *tilde_find_word PARAMS((const char *, int, int *));
#ifdef __cplusplus
}
#endif
#endif /* _TILDE_H_ */
+2 -3
View File
@@ -2788,12 +2788,11 @@ reset_parser ()
dstack.delimiter_depth = 0; /* No delimiters found so far. */
open_brace_count = 0;
#if defined (EXTENDED_GLOB)
/* Reset to global value of extended glob */
if (parser_state & PST_EXTPAT)
{
/*itrace("reset_parser: parser_state includes PST_EXTPAT");*/
extended_glob = global_extglob;
}
#endif
parser_state = 0;
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -324,7 +324,7 @@ msgstr ""
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: leesalleen-funksie"
@@ -363,7 +363,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: kan nie %s skep nie"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -379,7 +379,7 @@ msgstr "%s: kan nie 'n bin
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -854,37 +854,37 @@ msgstr "Veranderlike boom"
msgid "timed out waiting for input: auto-logout\n"
msgstr ""
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "pypfout: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: bevel nie gevind nie"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: is 'n gids"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "kan nie fd %d na fd 0 dupliseer nie: %s"
@@ -968,7 +968,7 @@ msgstr "%s: heelgetal-uitdrukking is verwag\n"
msgid "getcwd: cannot access parent directories"
msgstr "Kan nie die program uitvoer nie:"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "kan nie fd %d na fd 0 dupliseer nie: %s"
@@ -1284,103 +1284,103 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr ""
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
#: parse.y:3944
#: parse.y:3960
#, fuzzy
msgid "syntax error in conditional expression"
msgstr "Sintaks fout in patroon"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
#, fuzzy
msgid "expected `)'"
msgstr "')' is verwag\n"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, fuzzy, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "%s: binêre operator is verwag\n"
#: parse.y:4108
#: parse.y:4124
#, fuzzy
msgid "conditional binary operator expected"
msgstr "%s: binêre operator is verwag\n"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, fuzzy, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "Soek die lêer vir 'n uitdrukking"
#: parse.y:4148
#: parse.y:4164
#, fuzzy, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "Soek die lêer vir 'n uitdrukking"
#: parse.y:4152
#: parse.y:4168
#, fuzzy, c-format
msgid "unexpected token %d in conditional command"
msgstr "Soek die lêer vir 'n uitdrukking"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr ""
#: parse.y:5461
#: parse.y:5477
#, fuzzy, c-format
msgid "syntax error near `%s'"
msgstr "Sintaks fout in patroon"
#: parse.y:5471
#: parse.y:5487
#, fuzzy
msgid "syntax error: unexpected end of file"
msgstr "Onverwagte einde van lêer tydens inlees van hulpbron."
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "sintaksfout"
#: parse.y:5533
#: parse.y:5549
#, fuzzy, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Gebruik Kaart na Los Tronk"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
@@ -1727,81 +1727,87 @@ msgstr "Sein kwaliteit:"
msgid "Unknown Signal #%d"
msgstr "Sein kwaliteit:"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, fuzzy, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "--Geen reëls in buffer--"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr ""
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
#, fuzzy
msgid "cannot make pipe for process substitution"
msgstr "Woord Substitusie"
#: subst.c:4790
#: subst.c:4802
#, fuzzy
msgid "cannot make child for process substitution"
msgstr "Woord Substitusie"
#: subst.c:4835
#: subst.c:4847
#, fuzzy, c-format
msgid "cannot open named pipe %s for reading"
msgstr "Kan nie oopmaak vir skrip-afvoer nie: \""
#: subst.c:4837
#: subst.c:4849
#, fuzzy, c-format
msgid "cannot open named pipe %s for writing"
msgstr "Kan nie oopmaak vir skrip-afvoer nie: \""
#: subst.c:4855
#: subst.c:4867
#, fuzzy, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "Kan nie oopmaak vir skrip-afvoer nie: \""
#: subst.c:5051
#: subst.c:5063
#, fuzzy
msgid "cannot make pipe for command substitution"
msgstr "Woord Substitusie"
#: subst.c:5085
#: subst.c:5097
#, fuzzy
msgid "cannot make child for command substitution"
msgstr "Woord Substitusie"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr ""
#: subst.c:5895
#: subst.c:5907
#, fuzzy, c-format
msgid "%s: substring expression < 0"
msgstr "ongeldige uitdrukking"
#: subst.c:6953
#: subst.c:6965
#, fuzzy, c-format
msgid "%s: bad substitution"
msgstr "Woord Substitusie"
#: subst.c:7033
#: subst.c:7045
#, fuzzy, c-format
msgid "$%s: cannot assign in this way"
msgstr "Kan nie soek 'n handtekening in hierdie boodskap!"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "--Geen reëls in buffer--"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
+55 -49
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -316,7 +316,7 @@ msgstr ""
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr ""
@@ -355,7 +355,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr ""
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -371,7 +371,7 @@ msgstr ""
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -831,36 +831,36 @@ msgstr ""
msgid "timed out waiting for input: auto-logout\n"
msgstr ""
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr ""
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr ""
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr ""
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
@@ -935,7 +935,7 @@ msgstr ""
msgid "getcwd: cannot access parent directories"
msgstr ""
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr ""
@@ -1242,99 +1242,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr ""
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr ""
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr ""
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr ""
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr ""
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr ""
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr ""
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr ""
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr ""
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr ""
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr ""
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr ""
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
@@ -1644,77 +1644,83 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr ""
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr ""
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr ""
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr ""
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr ""
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr ""
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr ""
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr ""
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr ""
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr ""
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr ""
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr ""
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr ""
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -320,7 +320,7 @@ msgstr "може да се използва само във функция"
msgid "cannot use `-f' to make functions"
msgstr "„-f“ не може да се използва за създаването на функции"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: функция с права само за четене"
@@ -359,7 +359,7 @@ msgstr "%s: не е зареден динамично"
msgid "%s: cannot delete: %s"
msgstr "%s: не може да се изтрие: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -375,7 +375,7 @@ msgstr "%s: не е обикновен файл"
msgid "%s: file is too large"
msgstr "%s: файлът е прекалено голям"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -914,38 +914,38 @@ msgstr ""
"^Gвремето за изчакване на вход изтече: следва автоматично излизане от "
"системата\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "стандартният вход от /dev/null не може да бъде пренасочен: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "в променливата $TIMEFORMAT: „%c“: грешен форматиращ знак"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "грешка при запис: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
"%s: ограничение: в имената на командите не може да присъства знакът „/“"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: командата не е открита"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: лош интерпретатор"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "файловият дескриптор %d не може да се дублира като дескриптор %d"
@@ -1021,7 +1021,7 @@ msgstr "%s: очаква се целочислен израз"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: родителските директории не могат да бъдат достъпени"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "не може да се изчисти режимът без забавяне на файловия дескриптор %d"
@@ -1344,100 +1344,100 @@ msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
"пренасочване: инструкцията за пренасочване „%d“ е извън допустимия диапазон"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
"неочакван знак за край на файл „EOF“, а се очакваше съответстващ знак „%c“"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "неочакван знак за край на файл „EOF“, а се очакваше „]]“"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "синтактична грешка в условен израз: неочаквана лексема „%s“"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "синтактична грешка в условен израз"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "неочаквана лексема „%s“, а се очакваше знакът „)“"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "очакваше се „)“"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "неочакван аргумент „%s“ за унарен условен оператор"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "неочакван аргумент за унарен условен оператор"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "неочаквана лексема „%s“, очакваше се бинарен условен оператор"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "очакваше се бинарен условен оператор"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "неочакван аргумент „%s“ за бинарен условен оператор"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "неочакван аргумент за бинарен условен оператор"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "неочаквана лексема „%c“ в условна команда"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "неочаквана лексема „%s“ в условна команда"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "неочаквана лексема %d в условна команда"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "синтактична грешка в близост до неочакваната лексема „%s“"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "синтактична грешка в близост до „%s“"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "синтактична грешка: неочакван край на файл"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "синтактична грешка"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Използвайте „%s“, за да излезете от обвивката.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "неочакван знак за край на файл „EOF“, очакваше се знакът „)“"
@@ -1756,79 +1756,85 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "лошо заместване: липсва затварящ знак „%s“ в %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: на член от масив не може да се присвои списък"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "не може да се създаде програмен канал за заместване на процеси"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "не може да се създаде дъщерен процес за заместване на процеси"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "именуваният програмен канал %s не може да се отвори за четене"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "именуваният програмен канал %s не може да се отвори за запис"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
"именуваният програмен канал %s не може да се\n"
"дублира като файловия дескриптор %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "не може да се създаде програмен канал за заместване на команди"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "не може да се създаде дъщерен процес за заместване на команди"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "заместване на команди: каналът не може да се дублира като fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: аргументът е null или не е зададен"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: изразът от подниза е < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: лошо заместване"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: не може да се задава по този начин"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "лошо заместване: липсва затварящ знак „%s“ в %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "няма съвпадение: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash-2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -323,7 +323,7 @@ msgstr ""
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funci? nom?s de lectura"
@@ -362,7 +362,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: no es pot crear: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -378,7 +378,7 @@ msgstr "%s: no es pot executar el fitxer binari"
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -855,37 +855,37 @@ msgid "timed out waiting for input: auto-logout\n"
msgstr ""
"%c ha excedit el temps d'espera per una entrada: fi autom?tica de sessi?\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "error del conducte: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restringit: no es pot especificar '/' en noms d'ordres"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: no s'ha trobat l'ordre"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: ?s un directori"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
@@ -965,7 +965,7 @@ msgstr "%s: s'esperava una expressi? de nombre enter"
msgid "getcwd: cannot access parent directories"
msgstr "getwd: no s'ha pogut accedir als directoris pares"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr ""
@@ -1285,107 +1285,107 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, fuzzy, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
"s'ha arribat inesperadament a la fi del fitxer (EOF) mentre\n"
"es buscava per '%c'"
#: parse.y:3935
#: parse.y:3951
#, fuzzy
msgid "unexpected EOF while looking for `]]'"
msgstr ""
"s'ha arribat inesperadament a la fi del fitxer (EOF) mentre\n"
"es buscava per '%c'"
#: parse.y:3940
#: parse.y:3956
#, fuzzy, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "hi ha un error inesperat de sintaxi prop del senyal '%s'"
#: parse.y:3944
#: parse.y:3960
#, fuzzy
msgid "syntax error in conditional expression"
msgstr "error de sintaxi a l'expressi?"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
#, fuzzy
msgid "expected `)'"
msgstr "s'esperava ')'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, fuzzy, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "%s: s'esperava un operador binari"
#: parse.y:4108
#: parse.y:4124
#, fuzzy
msgid "conditional binary operator expected"
msgstr "%s: s'esperava un operador binari"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, fuzzy, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "s'esperava ':' per a l'expressi? condicional"
#: parse.y:4148
#: parse.y:4164
#, fuzzy, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "s'esperava ':' per a l'expressi? condicional"
#: parse.y:4152
#: parse.y:4168
#, fuzzy, c-format
msgid "unexpected token %d in conditional command"
msgstr "s'esperava ':' per a l'expressi? condicional"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "hi ha un error inesperat de sintaxi prop del senyal '%s'"
#: parse.y:5461
#: parse.y:5477
#, fuzzy, c-format
msgid "syntax error near `%s'"
msgstr "hi ha un error inesperat de sintaxi prop del senyal '%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "error de sintaxi: s'ha arribat inesperadament a la fi del fitxer"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "error de sintaxi"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Utilitzeu ?%s? per a eixir de l'int?rpret d'ordres.\n"
#: parse.y:5695
#: parse.y:5711
#, fuzzy
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
@@ -1713,86 +1713,92 @@ msgstr "Senyal desconeguda #"
msgid "Unknown Signal #%d"
msgstr "Senyal desconeguda #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, fuzzy, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "substituci? inv?lida: no existeix '%s' en %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: no es pot assignar la llista a un element de la matriu"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
#, fuzzy
msgid "cannot make pipe for process substitution"
msgstr "no es pot establir un conducte per a la substituci? del proc?s: %s"
#: subst.c:4790
#: subst.c:4802
#, fuzzy
msgid "cannot make child for process substitution"
msgstr "no es pot establir un proc?s fill per a la substituci? del proc?s: %s"
#: subst.c:4835
#: subst.c:4847
#, fuzzy, c-format
msgid "cannot open named pipe %s for reading"
msgstr "no es pot obrir el conducte anomenat %s per a %s: %s"
#: subst.c:4837
#: subst.c:4849
#, fuzzy, c-format
msgid "cannot open named pipe %s for writing"
msgstr "no es pot obrir el conducte anomenat %s per a %s: %s"
#: subst.c:4855
#: subst.c:4867
#, fuzzy, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
"no es pot duplicar el conducte anomenat %s\n"
"com a descripci? de fitxer %d: %s"
#: subst.c:5051
#: subst.c:5063
#, fuzzy
msgid "cannot make pipe for command substitution"
msgstr "no es poden establir conductes per a la substituci? de l'ordre: %s"
#: subst.c:5085
#: subst.c:5097
#, fuzzy
msgid "cannot make child for command substitution"
msgstr "no es pot crear un proc?s fill per a la substituci? del proc?s: %s"
#: subst.c:5102
#: subst.c:5114
#, fuzzy
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
"command_substitute(): el coducte no es pot duplicar\n"
"com a descripci? de fitxer 1: %s"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: par?metre nul o no ajustat"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: la sub-cadena de l'expressi? ?s < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: substituci? inv?lida"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: no es pot assignar d'aquesta manera"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substituci? inv?lida: no existeix '%s' en %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-09-23 14:23+0200\n"
"Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
@@ -323,7 +323,7 @@ msgstr "může být použito jen ve funkci"
msgid "cannot use `-f' to make functions"
msgstr "„-f“ nezle použít na výrobu funkce"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkce jen pro čtení"
@@ -362,7 +362,7 @@ msgstr "%s: není dynamicky nahráno"
msgid "%s: cannot delete: %s"
msgstr "%s: nelze smazat: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -378,7 +378,7 @@ msgstr "%s: není obyčejný soubor"
msgid "%s: file is too large"
msgstr "%s: soubor je příliš velký"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -907,36 +907,36 @@ msgstr "%s: nevázaná proměnná"
msgid "timed out waiting for input: auto-logout\n"
msgstr "časový limit pro čekání na vstup vypršel: automatické odhlášení\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "standardní vstup nelze přesměrovat z /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c“: chybný formátovací znak"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "chyba v rouře"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: omezeno: v názvu příkazu nesmí být „/“"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: příkaz nenalezen"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: chybný interpretr"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "deskriptor souboru %d nelze duplikovat na deskriptor %d"
@@ -1011,7 +1011,7 @@ msgstr "%s: chyba výrazu\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: rodičovské adresáře nejsou přístupné"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "na deskriptoru %d nelze resetovat režim nodelay"
@@ -1322,102 +1322,102 @@ msgstr "„here“ dokument na řádku %d ukončen koncem souboru (požadováno
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: instrukce přesměrování „%d“ mimo rozsah"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "neočekávaný konec souboru při hledání znaku odpovídajícímu „%c“"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "neočekávaný konec souboru při hledání „]]“"
# XXX: Condional means condition (adj.) probably. Can English distinguish
# between the condition (podmínkový) and the code branch (podmíněný)? Check
# for all "conditional" string occurences.
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "chyba syntaxe ve výrazu podmínky: neočekávaný token „%s“"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "chyba syntaxe ve výrazu podmínky"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "neočekávaný token „%s“, očekávána „)“"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "očekávána „)“"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "neočekávaný argument „%s“ u podmínkového unárního operátoru"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "neočekávaný argument u podmínkového unárního operátoru"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "neočekávaný token „%s“, očekáván podmínkový binární operátor"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "očekáván podmínkový binární operátor"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "neočekávaný argument „%s„ u podmínkového binárního operátoru"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "neočekávaný argument u podmínkového binárního operátoru"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "neočekávaný token „%c“ v podmínkovém příkazu"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "neočekávaný token „%s“ v podmínkovém příkazu"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "neočekávaný token %d v podmínkovém příkazu"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "chyba syntaxe poblíž neočekávaného tokenu „%s“"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "chyba syntaxe poblíž „%s“"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "chyba syntaxe: nenadálý konec souboru"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "chyba syntaxe"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Shell lze ukončit příkazem „%s“.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "nenadálý konec souboru při hledání odpovídající „)“"
@@ -1737,77 +1737,83 @@ msgstr "Neznámé číslo signálu"
msgid "Unknown Signal #%d"
msgstr "Neznámý signál č.%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "chybná substituce: v %2$s chybí uzavírací „%1$s“"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: seznam nelze přiřadit do prvku pole"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "nelze vyrobit rouru za účelem substituce procesu"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "nelze vytvořit potomka za účelem substituce procesu"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "pojmenovanou rouru %s nelze otevřít pro čtení"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "pojmenovanou rouru %s nelze otevřít pro zápis"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "pojmenovanou rouru %s nelze zdvojit jako deskriptor %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "nelze vytvořit rouru pro substituci příkazu"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "nelze vytvořit potomka pro substituci příkazu"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: rouru nelze zdvojit jako deskriptor 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametr null nebo nenastaven"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: výraz podřetězce < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: chybná substituce"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: takto nelze přiřazovat"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "chybná substituce: v %s chybí uzavírací „`“"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "žádná shoda: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-09-14 20:37+0200\n"
"Last-Translator: Nils Naumann <nnau@gmx.net>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
@@ -320,7 +320,7 @@ msgstr "kann nur innerhalb einer Funktion benutzt werden."
msgid "cannot use `-f' to make functions"
msgstr "Mit `-f' können keine Funktionen erzeugt werden."
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: Schreibgeschützte Funktion."
@@ -360,7 +360,7 @@ msgstr "%s: Ist nicht dynamisch geladen."
msgid "%s: cannot delete: %s"
msgstr "%s: Kann nicht löschen: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -376,7 +376,7 @@ msgstr "%s: Ist keine normale Datei."
msgid "%s: file is too large"
msgstr "%s: Die Datei ist zu groß."
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -898,36 +898,36 @@ msgstr "%s ist nicht gesetzt."
msgid "timed out waiting for input: auto-logout\n"
msgstr "Zu lange keine Eingabe: Automatisch ausgeloggt.\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "Kann nicht die Standardeingabe von /dev/null umleiten: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': Ungültiges Formatzeichen."
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "Pipe-Fehler"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: Verboten: `/' ist in Kommandonamen unzulässig."
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: Kommando nicht gefunden."
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: Defekter Interpreter"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "Kann fd %d nicht auf fd %d verdoppeln."
@@ -1003,7 +1003,7 @@ msgstr "%s: Fehler im Ausdruck.\n"
msgid "getcwd: cannot access parent directories"
msgstr "getwd: Kann nicht auf das übergeordnete Verzeichnis zugreifen."
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "Konnte den No-Delay Modus für fd %d nicht wieder herstellen."
@@ -1328,100 +1328,100 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "Dateiende beim Suchen nach `%c' erreicht."
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "Dateiende beim Suchen nach `]]' erreicht."
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "Syntaxfehler im bedingten Ausdruck: Unerwartetes Zeichen `%s'."
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "Syntaxfehler im bedingen Ausdruck."
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "Unerwartetes Zeichen: `%s' anstatt von `)'"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "`)' erwartet."
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr ""
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr ""
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr ""
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr ""
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "Syntaxfehler beim unerwarteten Wort `%s'"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "Syntaxfehler beim unerwarteten Wort `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "Syntax Fehler: Unerwartetes Dateiende."
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "Syntax Fehler"
# Du oder Sie?
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Benutze \"%s\" um die Shell zu verlassen.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "Dateiende beim Suchen nach passender `)' erreicht."
@@ -1733,79 +1733,85 @@ msgstr "Unbekannte Signalnummer."
msgid "Unknown Signal #%d"
msgstr "Unbekanntes Signal Nr.: %d."
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "Falsche Ersetzung: Keine schließende `%s' in `%s' enthalten."
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: Kann einem Feldelement keine Liste zuweisen."
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "Kann keine Pipe für die Prozeßersetzung erzeugen."
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "Kann den Kindsprozess für die Prozeßersetzung nicht erzeugen."
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "Kann nicht die benannte Pipe %s zum lesen öffnen."
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "Kann nicht die benannte Pipe %s zum schreiben öffnen."
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "Kann die benannte Pipe %s nicht auf fd %d."
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "Kann keine Pipes für Kommandoersetzung erzeugen."
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "Kann keinen Unterprozess für die Kommandoersetzung erzeugen."
# interner Fehler
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "Kommandoersetzung: Kann Pipe nicht als fd 1 duplizieren."
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: Parameter ist Null oder nicht gesetzt."
# interner Fehler
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: Teilstring-Ausdruck < 0."
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: Falsche Variablenersetzung."
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: Kann so nicht zuweisen."
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "Falsche Ersetzung: Keine schließende \"`\" in %s."
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "Keine Entsprechung: %s"
Binary file not shown.
+59 -51
View File
@@ -30,10 +30,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: GNU bash 4.1-rc1\n"
"Project-Id-Version: GNU bash 4.1-release\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"PO-Revision-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-12-30 08:25-0500\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@@ -350,7 +350,7 @@ msgstr "can only be used in a function"
msgid "cannot use `-f' to make functions"
msgstr "cannot use -f to make functions"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: readonly function"
@@ -389,7 +389,7 @@ msgstr "%s: not dynamically loaded"
msgid "%s: cannot delete: %s"
msgstr "%s: cannot delete: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -405,7 +405,7 @@ msgstr "%s: not a regular file"
msgid "%s: file is too large"
msgstr "%s: file is too large"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -937,36 +937,36 @@ msgstr "%s: unbound variable"
msgid "timed out waiting for input: auto-logout\n"
msgstr "timed out waiting for input: auto-logout\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "cannot redirect standard input from /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: %c: invalid format character"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "pipe error"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restricted: cannot specify / in command names"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: command not found"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: bad interpreter"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "cannot duplicate fd %d to fd %d"
@@ -1041,7 +1041,7 @@ msgstr "%s: expression error\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: cannot access parent directories"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "cannot reset nodelay mode for fd %d"
@@ -1350,99 +1350,99 @@ msgstr "here-document at line %d delimited by end-of-file (wanted %s
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: redirection instruction %d out of range"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "unexpected EOF while looking for matching %c"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "unexpected EOF while looking for ]]"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "syntax error in conditional expression: unexpected token %s"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "syntax error in conditional expression"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "unexpected token %s, expected )"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "expected )"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "unexpected argument %s to conditional unary operator"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "unexpected argument to conditional unary operator"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "unexpected token %s, conditional binary operator expected"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "conditional binary operator expected"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "unexpected argument %s to conditional binary operator"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "unexpected argument to conditional binary operator"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "unexpected token %c in conditional command"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "unexpected token %s in conditional command"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "unexpected token %d in conditional command"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "syntax error near unexpected token %s"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "syntax error near %s"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "syntax error: unexpected end of file"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "syntax error"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Use “%s” to leave the shell.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "unexpected EOF while looking for matching )"
@@ -1757,77 +1757,85 @@ msgstr "Unknown Signal #"
msgid "Unknown Signal #%d"
msgstr "Unknown Signal #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "bad substitution: no closing %s in %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: cannot assign list to array member"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "cannot make pipe for process substitution"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "cannot make child for process substitution"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "cannot open named pipe %s for reading"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "cannot open named pipe %s for writing"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "cannot duplicate named pipe %s as fd %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "cannot make pipe for command substitution"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "cannot make child for command substitution"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: cannot duplicate pipe as fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parameter null or not set"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: substring expression < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: bad substitution"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: cannot assign in this way"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "bad substitution: no closing “`” in %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "no match: %s"
BIN
View File
Binary file not shown.
+59 -51
View File
@@ -27,10 +27,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: GNU bash 4.1-rc1\n"
"Project-Id-Version: GNU bash 4.1-release\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"PO-Revision-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-12-30 08:25-0500\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@@ -347,7 +347,7 @@ msgstr "can only be used in a function"
msgid "cannot use `-f' to make functions"
msgstr "cannot use -f to make functions"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: readonly function"
@@ -386,7 +386,7 @@ msgstr "%s: not dynamically loaded"
msgid "%s: cannot delete: %s"
msgstr "%s: cannot delete: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -402,7 +402,7 @@ msgstr "%s: not a regular file"
msgid "%s: file is too large"
msgstr "%s: file is too large"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -928,36 +928,36 @@ msgstr "%s: unbound variable"
msgid "timed out waiting for input: auto-logout\n"
msgstr "timed out waiting for input: auto-logout\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "cannot redirect standard input from /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: %c: invalid format character"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "pipe error"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restricted: cannot specify / in command names"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: command not found"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: bad interpreter"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "cannot duplicate fd %d to fd %d"
@@ -1032,7 +1032,7 @@ msgstr "%s: expression error\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: cannot access parent directories"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "cannot reset nodelay mode for fd %d"
@@ -1341,99 +1341,99 @@ msgstr "here-document at line %d delimited by end-of-file (wanted %s)"
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: redirection instruction %d out of range"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "unexpected EOF while looking for matching %c"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "unexpected EOF while looking for ]]"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "syntax error in conditional expression: unexpected token %s"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "syntax error in conditional expression"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "unexpected token %s, expected )"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "expected )"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "unexpected argument %s to conditional unary operator"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "unexpected argument to conditional unary operator"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "unexpected token %s, conditional binary operator expected"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "conditional binary operator expected"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "unexpected argument %s to conditional binary operator"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "unexpected argument to conditional binary operator"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "unexpected token %c in conditional command"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "unexpected token %s in conditional command"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "unexpected token %d in conditional command"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "syntax error near unexpected token %s"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "syntax error near %s"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "syntax error: unexpected end of file"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "syntax error"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Use “%s” to leave the shell.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "unexpected EOF while looking for matching )"
@@ -1745,77 +1745,85 @@ msgstr "Unknown Signal #"
msgid "Unknown Signal #%d"
msgstr "Unknown Signal #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "bad substitution: no closing %s in %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: cannot assign list to array member"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "cannot make pipe for process substitution"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "cannot make child for process substitution"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "cannot open named pipe %s for reading"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "cannot open named pipe %s for writing"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "cannot duplicate named pipe %s as fd %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "cannot make pipe for command substitution"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "cannot make child for command substitution"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: cannot duplicate pipe as fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parameter null or not set"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: substring expression < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: bad substitution"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: cannot assign in this way"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "bad substitution: no closing “`” in %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "no match: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-06-01 00:31+0600\n"
"Last-Translator: Sergio Pokrovskij <sergio.pokrovskij@gmail.com>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@@ -332,7 +332,7 @@ msgstr "Uzeblas nur ene de funkcio"
msgid "cannot use `-f' to make functions"
msgstr "„-f‟ ne estas uzebla por fari funkciojn"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: Nurlega funkcio"
@@ -371,7 +371,7 @@ msgstr "%s: Ne ŝargita dinamike"
msgid "%s: cannot delete: %s"
msgstr "%s: Ne eblas forigi: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -387,7 +387,7 @@ msgstr "%s: Ne ordinara dosiero"
msgid "%s: file is too large"
msgstr "%s: Tro granda dosiero"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -921,37 +921,37 @@ msgid "timed out waiting for input: auto-logout\n"
msgstr "Tro longe sen enigo: Aŭtomata seancofino\n"
# XXX: internal error:
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "Fiaskis provo nomumi la disponaĵon «/dev/null» ĉefenigujo: %s"
# XXX: internal error:
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c‟: Misa formatsigno"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "Eraro en dukto"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: Malpermesitas uzi „/‟ en komandonomoj"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: Komando ne trovita"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: Misa interpretilo"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "Ne eblas kunnomumi al dosiernumero %d la dosiernumeron %d"
@@ -1026,7 +1026,7 @@ msgstr "%s: Misa esprimo\n"
msgid "getcwd: cannot access parent directories"
msgstr "getwd: Ne eblas atingi patrajn dosierujojn"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "Ne eblas reŝalti senprokrastan reĝimon por dosiernumero %d"
@@ -1359,99 +1359,99 @@ msgstr "Tuj-dokumenton de linio %d limigas dosierfino (mankas „%s‟)"
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: Alidirektada komando „%d‟ ekster sia variejo"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "Neatendita dosierfino dum serĉo de responda „%c‟"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "Neatendita dosierfino dum serĉo de „]]‟"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "Sintaksa eraro en kondiĉa esprimo: Neatendita simbolo „%s‟"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "Sintaksa eraro en kondiĉa esprimo"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "Nekonvena simbolo „%s‟ anstataŭ „)‟"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "Mankas „)‟"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "La argumento „%s‟ ne konvenas por unuloka kondiĉa operacisimbolo"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "Maltaŭga argumento por unuloka kondiĉa operacisimbolo"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "Misa simbolo „%s‟ anstataŭ duloka kondiĉa operacisigno"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "ĉi tie devas esti duloka kondiĉa operacisigno"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "La argumento „%s‟ ne konvenas por duloka kondiĉa operacisimbolo"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "<maltaŭga argumento por duloka kondiĉa operacisimbolo"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "Misa simbolo „%c‟ en kondiĉa komando"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "Misa simbolo „%s‟ en kondiĉa komando"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "Misa simbolo „%d‟ en kondiĉa komando"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "Sintaksa eraro apud neatendita simbolo „%s‟"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "Sintaksa eraro apud „%s‟"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "Sintaksa eraro: Neatendita dosierfino"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "Sintaksa eraro"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Uzu «%s» por eliri el la ŝelo.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "Neatendita dosierfino dum serĉo de responda „)‟"
@@ -1812,77 +1812,83 @@ msgstr "Nekonata signalnumero"
msgid "Unknown Signal #%d"
msgstr "Nekonata signalo n-ro %d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "Misa anstataŭigo: Mankas ferma „%s‟ en %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: Maleblas valorizi tabelanon per listo"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "Ne prosperis fari dukton por proceza anstataŭigo"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "Ne prosperis krei idon por proceza anstataŭigo"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "Ne prosperis malfermi nomitan dukton %s porlegan"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "Ne prosperis malfermi nomitan dukton %s por skribado"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "Ne prosperis kunnomumi nomhavan dukton %s kiel dosiernumeron %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "Ne prosperis fari dukton por komanda anstataŭigo"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "Ne prosperis krei procezidon por komanda anstataŭigo"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: Ne prosperis kunnomumi la dosiernumeron 1 al dukto"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: Parametro estas NUL aŭ malaktiva"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: subĉeno-esprimo < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: Misa anstataŭigo"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: ĉi tiel ne valorizebla"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "Misa anstataŭigo: Mankas ferma „`‟ en %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "Nenio kongrua: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-03-19 19:34-0600\n"
"Last-Translator: Cristian Othón Martínez Vera <cfuga@itam.mx>\n"
"Language-Team: Spanish <es@li.org>\n"
@@ -322,7 +322,7 @@ msgstr "s
msgid "cannot use `-f' to make functions"
msgstr "no se puede usar `-f' para hacer funciones"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: función de sólo lectura"
@@ -361,7 +361,7 @@ msgstr "%s: no se carg
msgid "%s: cannot delete: %s"
msgstr "%s: no se puede borrar: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -379,7 +379,7 @@ msgstr "%s: el fichero es demasiado grande"
# file=fichero. archive=archivo. Si no, es imposible traducir tar. sv
# De acuerdo. Corregido en todo el fichero. cfuga
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -908,36 +908,36 @@ msgstr "%s: variable sin asignar"
msgid "timed out waiting for input: auto-logout\n"
msgstr "ha expirado mientras esperaba alguna entrada: auto-logout\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "no se puede redirigir la salida estándar desde /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': carácter de formato inválido"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "error de tubería"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: restringido: no se puede especificar `/' en nombres de órdenes"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: no se encontró la orden"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: intérprete erróneo"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "no se puede duplicar el df %d al df %d"
@@ -1018,7 +1018,7 @@ msgstr "%s: error de expresi
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: no se puede acceder a los directorios padre"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "no se puede reestablecer el modo nodelay para el df %d"
@@ -1339,71 +1339,71 @@ msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
"make_redirection: la instrucción de redirección `%d' está fuera de rango"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "EOF inesperado mientras se buscaba un `%c' coincidente"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "EOF inesperado mientras se buscaba `]]'"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "error sintáctico en la expresión condicional: elemento inesperado `%s'"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "error sintáctico en la expresión condicional"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "elemento inesperado `%s', se esperaba `)'"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "se esperaba `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "argumento inesperado `%s' para el operador unario condicional"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "argumento inesperado para el operador unario condicional"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "elemento inesperado `%s', se esperaba un operador binario condicional"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "se esperaba un operador binario condicional"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "argumento inesperado `%s' para el operador binario condicional"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "argumento inesperado para el operador binario condicional"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "elemento inesperado `%c' en la orden condicional"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "elemento inesperado `%s' en la orden condicional"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "elemento inesperado %d en la orden condicional"
@@ -1414,12 +1414,12 @@ msgstr "elemento inesperado %d en la orden condicional"
# provocado por el símbolo. Simplemente estar cerca del mismo. cfuga
# Por consistencia con el siguiente, yo borraría la coma. sv
# Cierto. Coma borrada. cfuga
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "error sintáctico cerca del elemento inesperado `%s'"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "error sintáctico cerca de `%s'"
@@ -1428,20 +1428,20 @@ msgstr "error sint
# no se esperaba el final de la línea em+
# Ojo, que end of file es fin de fichero, no de línea. sv
# Se hicieron ambos cambios. cfuga
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "error sintáctico: no se esperaba el final del fichero"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "error sintáctico"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Use \"%s\" para dejar el shell.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "EOF inesperado mientras se buscaba un `)' coincidente"
@@ -1776,77 +1776,83 @@ msgstr "Se
msgid "Unknown Signal #%d"
msgstr "Señal Desconocida #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "sustitución errónea: no hay un `%s' que cierre en %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: no se puede asignar una lista a un miembro de la matriz"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "no se puede crear la tubería para la sustitución del proceso"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "no se puede crear un proceso hijo para la sustitución del proceso"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "no se puede abrir la tubería llamada %s para lectura"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "no se puede abrir la tubería llamada %s para escritura"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "no se puede duplicar la tubería llamada %s como df %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "no se pueden crear la tubería para la sustitución de la orden"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "no se puede crear un proceso hijo para la sustitución de la orden"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: no se puede duplicar la tubería como df 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parámetro nulo o no establecido"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: expresión de subcadena < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: sustitución errónea"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: no se puede asignar de esta forma"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "sustitución errónea: no hay una \"`\" que cierre en %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "no hay coincidencia: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -316,7 +316,7 @@ msgstr "saab kasutada ainult funktsioonis"
msgid "cannot use `-f' to make functions"
msgstr "võtit `-f' ei saa funktsiooni loomiseks kasutada"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funktsioon ei ole muudetav"
@@ -355,7 +355,7 @@ msgstr "%s: pole d
msgid "%s: cannot delete: %s"
msgstr "%s: ei saa kustutada: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -371,7 +371,7 @@ msgstr "%s: ei ole tavaline fail"
msgid "%s: file is too large"
msgstr "%s: fail on liiga suur"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -832,37 +832,37 @@ msgstr "%s: sidumata muutuja"
msgid "timed out waiting for input: auto-logout\n"
msgstr ""
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "kirjutamise viga: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: piiratud: käskudes ei saa kasutada sümboleid `/'"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: käsku ei ole"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: halb interpretaator"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
@@ -937,7 +937,7 @@ msgstr "%s: oodati t
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: vanemkataloogidele ei ole juurdepääsu"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr ""
@@ -1245,99 +1245,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr ""
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "süntaksi viga tingimuslikus avaldises"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "ootamatu märk `%s', oodati `)'"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "oodati `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr ""
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr ""
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr ""
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr ""
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr ""
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "süntaksi viga kohal `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "süntaksi viga: ootamatu faililõpp"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "süntaksi viga"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Käsuinterpretaatorist väljumiseks kasutage \"%s\".\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
@@ -1651,77 +1651,83 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr ""
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr ""
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr ""
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr ""
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr ""
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr ""
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr ""
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr ""
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parameeter on null või pole seatud"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr ""
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: halb asendus"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: sedasi ei saa omistada"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "sulgev `%c' puudub %s sees"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "ei leitud: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash-4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-05-09 15:13+0300\n"
"Last-Translator: Pekka Niemi <pekka.niemi@iki.fi>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -323,7 +323,7 @@ msgstr "voidaan käyttää ainoastaan funktiossa"
msgid "cannot use `-f' to make functions"
msgstr "”-f”:ää ei voida käyttää funktioiden luomiseen"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: kirjoitussuojattu funktio"
@@ -362,7 +362,7 @@ msgstr "%s: ei dynaamisesti ladattu"
msgid "%s: cannot delete: %s"
msgstr "%s: ei voida poistaa: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -378,7 +378,7 @@ msgstr "%s: ei tavallinen tiedosto"
msgid "%s: file is too large"
msgstr "%s: tiedosto on liian iso"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -903,36 +903,36 @@ msgstr "%s: sitomaton muuttuja"
msgid "timed out waiting for input: auto-logout\n"
msgstr "aikakatkaisu: automaattinen uloskirjautuminen\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "syötettä ei voida lukea tiedostosta /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "AJAN MUOTOMÄÄRITYS: ”%c”: virheellinen muotoilumerkki"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "putkitusvirhe"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: rajoitettu: komentojen nimissä ei voi käyttää ”/”-merkkiä"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: komentoa ei löydy"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: virheellinen tulkki"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "tiedostokahvaa %d ei voida kopioida kahvaksi %d"
@@ -1007,7 +1007,7 @@ msgstr "%s: virhe lausekkeessa\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: ylempiin hakemistoihin ei päästä"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nodelay-tilaa ei voida asettaa tiedostokahvalle %d"
@@ -1317,100 +1317,100 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: uudelleenohjaus ”%d” rajojen ulkopuolella"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "odottamaton EOF (tiedostonloppu) odotettaessa sulkevaa ”%c”"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "odottamaton EOF odotettaessa ”]]”"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "lauseoppivirhe ehdollisessa lausekkeessa: odottamaton avainsana ”%s”"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "lauseoppivirhe ehdollisessa lausekkeessa"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "odottamaton avainsana ”%s”, odotettiin ”)”"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "odototettiin ”)”"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "odottamaton argumentti ”%s” ehdolliselle unaariselle operaattorille"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "odottamaton argumentti ehdolliselle unaariselle operaattorille"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
"odottamaton avainsana ”%s”, odotettiin ehdollista binääristä operaattoria"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "odotettiin ehdollista binääristä operaattoria"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "odottamaton argumentti ”%s” ehdolliselle binääriselle operaattorille"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "odottamaton argumentti ehdolliselle binääriselle operaattorille"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "odottamaton avainsana ”%c” ehdollisessa komennossa"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "odottamaton avainsana ”%s” ehdollisessa komennossa"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "odottamaton avainsana %d ehdollisessa komennossa"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "lauseoppivirhe lähellä odottamatonta avainsanaa ”%s”"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "lauseoppivirhe lähellä ”%s”"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "lauseoppivirhe: odottamaton tiedostonloppu"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "lauseoppivirhe"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Kirjoita ”%s” poistuaksesi komentotulkista.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "Odottamaton EOF odotettaessa vastaavaa ”)”"
@@ -1727,77 +1727,83 @@ msgstr "Tuntematon signaali #"
msgid "Unknown Signal #%d"
msgstr "Tuntematon signaali #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "virheellinen korvaus: ei sulkevaa ”%s” jonossa %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: listaa ei voida sijoittaa taulukon alkioon"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "putkea ei voida luoda prosessin korvaamista varten"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "lapsiprosessia ei voida luoda prosessin korvaamista varten"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "nimettyä putkea %s ei voida avata lukemista varten"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "nimettyä putkea %s ei voida avata kirjoitusta varten"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "nimettyä putkea %s ei voida kopioida tiedostokahvaksi %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "putkea ei voida luoda komennon korvaamista varten"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "ei voida luoda lapsiprosessia komennon korvaamista varten"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: putkea ei voida kopioida tiedostokahvaksi 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametria ei ole tai sitä ei ole asetettu"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: alimerkkijonolauseke < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: virheellinen korvaus"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: ei voida asettaa näin"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "virheellinen korvaus: ei sulkevaa ”`” jonossa %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "ei osumia: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -326,7 +326,7 @@ msgstr "utilisable seulement dans une fonction"
msgid "cannot use `-f' to make functions"
msgstr "« -f » ne peut pas être utilisé pour fabriquer des fonctions"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s : fonction en lecture seule"
@@ -365,7 +365,7 @@ msgstr "%s : non chargé dynamiquement"
msgid "%s: cannot delete: %s"
msgstr "%s : impossible d'effacer : %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -381,7 +381,7 @@ msgstr "%s : ceci n'est pas un fichier régulier"
msgid "%s: file is too large"
msgstr "%s : le fichier est trop grand"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -926,38 +926,38 @@ msgstr "%s : variable sans liaison"
msgid "timed out waiting for input: auto-logout\n"
msgstr "attente de données expirée : déconnexion automatique\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
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:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT : « %c » : caractère de format non valable"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "erreur d'écriture : %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, 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:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s : commande introuvable"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s : %s : mauvais interpréteur"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "Impossible de dupliquer le fd %d vers le fd %d"
@@ -1032,7 +1032,7 @@ msgstr "%s : nombre entier attendu comme expression"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd : ne peut accéder aux répertoires parents"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "Impossible de réinitialiser le mode « nodelay » pour le fd %d"
@@ -1345,104 +1345,104 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection : l'instruction de redirection « %d » est hors plage"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
"Caractère de fin de fichier (EOF) prématuré lors de la recherche du « %c » "
"correspondant"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr ""
"Caractère de fin de fichier (EOF) prématuré lors de la recherche de « ]] »"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
"Erreur de syntaxe dans une expression conditionnelle : symbole « %s » "
"inattendu"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "Erreur de syntaxe dans une expression conditionnelle"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "Symbole inattendu « %s » au lieu de « ) »"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "« ) » attendu"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "argument inattendu « %s » pour l'opérateur conditionnel à un argument"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "argument inattendu pour l'opérateur conditionnel à un argument"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "Symbole « %s » trouvé à la place d'un opérateur binaire conditionnel"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "opérateur binaire conditionnel attendu"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "argument « %s » inattendu pour l'opérateur binaire conditionnel"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "argument inattendu pour l'opérateur binaire conditionnel"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "Symbole « %c » inattendu dans la commande conditionnelle"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "Symbole « %s » inattendu dans la commande conditionnelle"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "Symbole « %d » inattendu dans la commande conditionnelle"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "Erreur de syntaxe près du symbole inattendu « %s »"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "Erreur de syntaxe près de « %s »"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "Erreur de syntaxe : fin de fichier prématurée"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "Erreur de syntaxe"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Utilisez « %s » pour quitter le shell.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
"Caractère de fin de fichier (EOF) prématuré lors de la recherche d'un « ) » "
@@ -1762,78 +1762,84 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "Mauvaise substitution : pas de « %s » de fermeture dans %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s : impossible d'affecter une liste à un élément de tableau"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "Impossible de fabriquer un tube pour une substitution de processus"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "Impossible de fabriquer un fils pour une substitution de processus"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "Impossible d'ouvrir le tube nommé « %s » en lecture"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "Impossible d'ouvrir le tube nommé « %s » en écriture"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "Impossible de dupliquer le tube nommé « %s » vers le fd %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "Impossible de fabriquer un tube pour une substitution de commande"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr ""
"Impossible de fabriquer un processus fils pour une substitution de commande"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute : impossible de dupliquer le tube vers le fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s : paramètre vide ou non défini"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s : expression de sous-chaîne négative"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s : mauvaise substitution"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s : affectation impossible de cette façon"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "Mauvaise substitution : pas de « %s » de fermeture dans %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "Pas de correspondance : %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-09-24 23:08+0100\n"
"Last-Translator: Séamus Ó Ciardhuáin <seoc@iolfree.ie>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@@ -324,7 +324,7 @@ msgstr "Inúsáidte i bhfeidhmeanna amháin. "
msgid "cannot use `-f' to make functions"
msgstr "Ní féidir \"-f\" a úsáid chun feidhmeanna a dhéanamh"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: feidhm inléite amháin"
@@ -364,7 +364,7 @@ msgstr "%s: níl sé luchtaithe go dinimiciúil"
msgid "%s: cannot delete: %s"
msgstr "%s: ní féidir scrios: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -380,7 +380,7 @@ msgstr "%s: ní gnáthchomhad é"
msgid "%s: file is too large"
msgstr "%s: tá an comhad ró-mhór"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -852,36 +852,36 @@ msgstr "%s: athróg neamhcheangailte"
msgid "timed out waiting for input: auto-logout\n"
msgstr "imithe thar am ag feitheamh le hionchur: logáil amach uathoibríoch\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "Ní féidir an ionchur caighdeánach a atreorú ó /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "FORMÁID_AMA: \"%c\": carachtar formáide neamhbhaií."
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "earráid phíopa"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: srianta: ní féidir \"/\" a shonrú in ainmneacha ordaithe"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: níor aimsíodh an t-ordú"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: drochléirmhínitheoir"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
@@ -957,7 +957,7 @@ msgstr "%s: earráid sloinn\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: ní féidir na máthairchomhadlanna a rochtain."
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr ""
@@ -1275,103 +1275,103 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: ordú atreoraithe \"%d\" as raon."
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "Deireadh comhaid gan súil leis agus \"%c\" a mheaitseálann á lorg."
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "Deireadh comhaid gan súil leis agus \"]]\" á lorg."
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
"Earráid chomhréire i slonn coinníollach: comhartha \"%s\" gan suil leis."
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "Earráid chomhréire i slonn coinníollach."
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "Comhartha \"%s\" gan súil leis; ag súil le \")\"."
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "Ag súil le \")\""
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "Argóint \"%s\" gan súil lei go hoibreoir aonártha coinníollach."
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "Argóint gan súil lei go hoibreoir coinníollach aonártha ."
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
"Comhartha \"%s\" gan súil leis. Bhíothas ag súil le hoibreoir coinníollach "
"dénártha."
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "Bhíothas ag súil le hoibreoir coinníollach dénártha."
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "Argóint \"%s\" gan súil lei go hoibreoir dénártha coinníollach."
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "Argóint gan súil lei go hoibreoir dénártha coinníollach."
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "Comhartha \"%c\" gan súil leis in ordú coinníollach."
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "Comhartha \"%s\" gan súil leis in ordú coinníollach."
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "Comhartha %d gan súil leis in ordú coinníollach."
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr ""
"Earráid chomhréire in aice comhartha \"%s\" nach rabhthas ag súil leis."
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "Earráid chomhréire in aice \"%s\""
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "Earráid chomhréire: deireadh comhaid gan súil leis."
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "Earráid chomhréire"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Úsáid \"%s\" le scoir den mblaosc.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "Deireadh comhaid gan súil leis agus \")\" á lorg le meaitseáil."
@@ -1687,80 +1687,86 @@ msgstr "Comhartha neamhaithnid #"
msgid "Unknown Signal #%d"
msgstr "Comhartha neamhaithnid #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "Drochionadú: níl \"%s\" dúnta i %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: ní féidir liosta a shannadh go ball eagair."
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "Ní féidir píopa a dhéanamh le haghaidh ionadaíocht próisis."
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "Ní féidir macphróiseas a dhéanamh le haghaidh ionadaíocht próisis."
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "Ní féidir píopa ainmnithe %s a oscailt le haghaidh léamh."
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "Ní féidir píopa ainmnithe %s a oscailt le haghaidh scríofa."
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
"Ní féidir an píopa ainmnithe %s a dhúbailt mar thuairisceoir comhaid %d."
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "Ní féidir píopa a dhéanamh le haghaidh ionadú ordaithe."
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "Ní féidir macphróiseas a dhéanamh le haghaidh ionadú ordaithe."
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
"command_substitute: ní feidir an píopa a dhúbailt mar thuairisceoir comhaid "
"1."
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: paraiméadar neamhnitheach nó gan socrú."
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: slonn fotheaghráin < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: drochionadú"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: ní féidir sannadh mar seo."
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "drochionadú: níl \"`\" dúnta i %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "gan meaitseáil: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -322,7 +322,7 @@ msgstr "A local-t csak funkci
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s Csak olvasható funkció"
@@ -361,7 +361,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: nem lehet létrehozni: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -377,7 +377,7 @@ msgstr "%s: nem futtathat
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -852,37 +852,37 @@ msgstr "%s felszabad
msgid "timed out waiting for input: auto-logout\n"
msgstr "%c túl sokáig nem csinált semmit:automatikus kilépés\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "Csõ (pipe)hiba %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: fenntartva: parancs nem tartalmazhat '/' karaktert"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: parancs nem található"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: egy könyvtár"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nem másolható a fd %d fd 0: %s-re"
@@ -961,7 +961,7 @@ msgstr "%s eg
msgid "getcwd: cannot access parent directories"
msgstr "getwd: nem elérhetõ a szülõ könyvtár"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nem másolható a fd %d fd 0: %s-re"
@@ -1275,103 +1275,103 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, fuzzy, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "váratlan EOF amíg vizsgáltam a `%c'-t"
#: parse.y:3935
#: parse.y:3951
#, fuzzy
msgid "unexpected EOF while looking for `]]'"
msgstr "váratlan EOF amíg vizsgáltam a `%c'-t"
#: parse.y:3940
#: parse.y:3956
#, fuzzy, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "szintaktikai hiba a váratlan %s vezérjel körül"
#: parse.y:3944
#: parse.y:3960
#, fuzzy
msgid "syntax error in conditional expression"
msgstr "szintaktikai hiba a kifelyezésben"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
#, fuzzy
msgid "expected `)'"
msgstr "')' szükséges"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, fuzzy, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "%s:bináris mûvelet szükséges"
#: parse.y:4108
#: parse.y:4124
#, fuzzy
msgid "conditional binary operator expected"
msgstr "%s:bináris mûvelet szükséges"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, fuzzy, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "`:' túllépte a kifelyezés feltételeit"
#: parse.y:4148
#: parse.y:4164
#, fuzzy, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "`:' túllépte a kifelyezés feltételeit"
#: parse.y:4152
#: parse.y:4168
#, fuzzy, c-format
msgid "unexpected token %d in conditional command"
msgstr "`:' túllépte a kifelyezés feltételeit"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "szintaktikai hiba a váratlan %s vezérjel körül"
#: parse.y:5461
#: parse.y:5477
#, fuzzy, c-format
msgid "syntax error near `%s'"
msgstr "szintaktikai hiba a váratlan %s vezérjel körül"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "szintaktikai hiba: váratlan fájl vég"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "szintaktikai hiba"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Használja \"%s\" a parancsértelmezõ elhagyásához.\n"
#: parse.y:5695
#: parse.y:5711
#, fuzzy
msgid "unexpected EOF while looking for matching `)'"
msgstr "váratlan EOF amíg vizsgáltam a `%c'-t"
@@ -1691,84 +1691,90 @@ msgstr "Ismeretlen # Szign
msgid "Unknown Signal #%d"
msgstr "Ismeretlen #%d Szignál"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, fuzzy, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "rossz behelyettesítés: ne a %s be a %s-t"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: nem lehet a listához rendelni az elemet"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
#, fuzzy
msgid "cannot make pipe for process substitution"
msgstr "nem lehet létrehozni a pipe-ot feladat behelyettesítéshez: %s"
#: subst.c:4790
#: subst.c:4802
#, fuzzy
msgid "cannot make child for process substitution"
msgstr ""
"nem lehet létrehozni a gyermekfolyamatott feladat behelyettesítéshez: %s"
#: subst.c:4835
#: subst.c:4847
#, fuzzy, c-format
msgid "cannot open named pipe %s for reading"
msgstr "nem lehet létrehozni a %s \"named pipe\"-ot a %s-nek: %s"
#: subst.c:4837
#: subst.c:4849
#, fuzzy, c-format
msgid "cannot open named pipe %s for writing"
msgstr "nem lehet létrehozni a %s \"named pipe\"-ot a %s-nek: %s"
#: subst.c:4855
#: subst.c:4867
#, fuzzy, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "nem lehet másolni a %s \"named pipe\"-ot mint fd %d :%s"
#: subst.c:5051
#: subst.c:5063
#, fuzzy
msgid "cannot make pipe for command substitution"
msgstr "nem lehet létrehozni a \"pipe\"-ot parancs behelyettesítéséhez: %s"
#: subst.c:5085
#: subst.c:5097
#, fuzzy
msgid "cannot make child for command substitution"
msgstr ""
"nem lehet létrehozni a gyermekfolyamatot a parancs behelyettesítéséhez: %s"
#: subst.c:5102
#: subst.c:5114
#, fuzzy
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: nem lehet másolni a \"pipe\"-ot mint fd 1: %s"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s paraméter semmis vagy nincs beállítva"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s szövegrész kifejezés < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s rossz behelyettesítés"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s így nem lehet hozzárendelni"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "rossz behelyettesítés: ne a %s be a %s-t"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-03-21 11:40+0700\n"
"Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n"
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
@@ -320,7 +320,7 @@ msgstr "hanya dapat digunakan dalam sebuah fungsi"
msgid "cannot use `-f' to make functions"
msgstr "tidak dapat menggunakan `-f' untuk membuat fungsi"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: fungsi baca-saja"
@@ -359,7 +359,7 @@ msgstr "%s: bukan dinamically loaded"
msgid "%s: cannot delete: %s"
msgstr "%s: tidak dapat menghapus: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -375,7 +375,7 @@ msgstr "%s: bukan sebuah file umum"
msgid "%s: file is too large"
msgstr "%s: file terlalu besar"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -906,37 +906,37 @@ msgstr "%s: variabel tidak terikat"
msgid "timed out waiting for input: auto-logout\n"
msgstr "kehabisan waktu menunggu masukan: otomatis-keluar\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "tidak dapat menyalurkan masukan standar dari /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': karakter format tidak valid"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "pipe error"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
"%s: dibatasi: tidak dapat menspesifikasikan '/' dalam nama nama perintah"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: perintah tidak ditemukan"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: interpreter buruk"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "tidak dapat menduplikasikan fd %d ke fd %d"
@@ -1011,7 +1011,7 @@ msgstr "%s: expresi error\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: tidak dapat mengakses direktori orang tua"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "tidak dapat mereset mode nodelay untuk fd %d"
@@ -1324,99 +1324,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: instruksi redireksi `%d' diluar dari jangkauan"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "EOF tidak terduga ketika mencari untuk pencocokan `%c'"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "EOF tidak terduga ketika mencari untuk `]]'"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "syntax error dalam ekspresi kondisional: tanda `%s' tidak terduga"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "syntax error dalam ekspresi kondisional"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "tanda `%s' tidak terduga, diduga `)'"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "diduga `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "argumen tidak terduga `%s' ke operator kondisional unary"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "argumen tidak terduga untuk operasi unary kondisional"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "tanda `%s' tidak terduga, operator binary kondisional diduga"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "operator binary kondisional diduga"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "argumen `%s' tidak terduga ke operator binary kondisional"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "argumen tidak terduga ke operasi binary kondisional"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "tanda `%c' tidak terduga dalam perintah kondisional"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "tanda `%s' tidak terduga dalam perintah kondisional"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "tanda %d tidak terduga dalam perintah kondisional"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "syntax error didekat tanda `%s' yang tidak terduga"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "syntax error didekat `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "syntax error: tidak terduga diakhir dari berkas"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "syntax error"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Gunakan \"%s\" untuk meninggalkan shell.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "EOF tidak terduga ketika mencari untuk pencocokan ')'"
@@ -1732,77 +1732,83 @@ msgstr "Sinyal tidak diketahui #"
msgid "Unknown Signal #%d"
msgstr "Sinyal tidak diketahui #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "substitusi buruk: tidak ada penutupan `%s' dalam %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: tidak dapat meng-assign daftar kedalam anggoya array"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "tidak dapat membuat pipe untuk proses substitusi"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "tidak dapat membuat anak untuk proses substitusi"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "tidak dapat membuka named pipe %s untuk membaca"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "tidak dapat membukan named pipe %s untuk menulis"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "tidak dapat menduplikasi nama pipe %s sebagai fd %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "tidak dapat membuat pipe untuk perintah substitusi"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "tidak dapat membuat anak untuk perintah substitusi"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: tidak dapat menduplikasikan pipe sebagi fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parameter kosong atau tidak diset"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: substring expresi < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: substitusi buruk"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: tidak dapat meng-assign dengan cara ini"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substitusi buruk: tidak ada penutupan \"\" dalam %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "tidak cocok: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -320,7 +320,7 @@ msgstr ""
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: 読み込みのみの関数"
@@ -359,7 +359,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: %s を作成できません"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -375,7 +375,7 @@ msgstr "%s:
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -847,37 +847,37 @@ msgstr "%s: Ÿ
msgid "timed out waiting for input: auto-logout\n"
msgstr "%cは入力待ちからタイムアウトしました: 自動ログアウト\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "パイプエラー: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: 制限: `/' をコマンド名に記述できません"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: コマンドが見つかりません"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: はディレクトリです"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "fd %d を fd 0 に複製できません: %s"
@@ -956,7 +956,7 @@ msgstr "%s:
msgid "getcwd: cannot access parent directories"
msgstr "getwd: 上位ディレクトリにアクセスできません"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "fd %d を fd 0 に複製できません: %s"
@@ -1269,102 +1269,102 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, fuzzy, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "期待してないファイルの終了(EOF)が`%c'を見付けるまえに発生"
#: parse.y:3935
#: parse.y:3951
#, fuzzy
msgid "unexpected EOF while looking for `]]'"
msgstr "期待してないファイルの終了(EOF)が`%c'を見付けるまえに発生"
#: parse.y:3940
#: parse.y:3956
#, fuzzy, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "期待してない token `%s' のあたりにシンタックスエラー"
#: parse.y:3944
#: parse.y:3960
#, fuzzy
msgid "syntax error in conditional expression"
msgstr "表現にシンタックスエラー"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
#, fuzzy
msgid "expected `)'"
msgstr "`)' を期待"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr ""
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, fuzzy, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "`:' を条件の表現のため期待してます"
#: parse.y:4148
#: parse.y:4164
#, fuzzy, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "`:' を条件の表現のため期待してます"
#: parse.y:4152
#: parse.y:4168
#, fuzzy, c-format
msgid "unexpected token %d in conditional command"
msgstr "`:' を条件の表現のため期待してます"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "期待してない token `%s' のあたりにシンタックスエラー"
#: parse.y:5461
#: parse.y:5477
#, fuzzy, c-format
msgid "syntax error near `%s'"
msgstr "期待してない token `%s' のあたりにシンタックスエラー"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "シンタックス エラー: 期待してないファイルの終了"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "シンタックスエラー"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "シェルから脱出するのに \"%s\" を使いなさい.\n"
#: parse.y:5695
#: parse.y:5711
#, fuzzy
msgid "unexpected EOF while looking for matching `)'"
msgstr "期待してないファイルの終了(EOF)が`%c'を見付けるまえに発生"
@@ -1680,82 +1680,88 @@ msgstr "̤
msgid "Unknown Signal #%d"
msgstr "未知のシグナル #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, fuzzy, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "悪い代入: `%s' が %s にはありません"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: リストを配列メンバーに割り当てられません"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
#, fuzzy
msgid "cannot make pipe for process substitution"
msgstr "プロセスの代入にパイプを作成できません: %s"
#: subst.c:4790
#: subst.c:4802
#, fuzzy
msgid "cannot make child for process substitution"
msgstr "プロセスの代入に子を作成できません: %s"
#: subst.c:4835
#: subst.c:4847
#, fuzzy, c-format
msgid "cannot open named pipe %s for reading"
msgstr "named pipe %s を %s へ開けません: %s"
#: subst.c:4837
#: subst.c:4849
#, fuzzy, c-format
msgid "cannot open named pipe %s for writing"
msgstr "named pipe %s を %s へ開けません: %s"
#: subst.c:4855
#: subst.c:4867
#, fuzzy, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "named pipe %s を fd %d のために複製することはできません: %s"
#: subst.c:5051
#: subst.c:5063
#, fuzzy
msgid "cannot make pipe for command substitution"
msgstr "代理コマンドにパイプを作成できません: %s"
#: subst.c:5085
#: subst.c:5097
#, fuzzy
msgid "cannot make child for command substitution"
msgstr "代理コマンドに子を作成できません: %s"
#: subst.c:5102
#: subst.c:5114
#, fuzzy
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: パイプを fd 1 として複製できません: %s"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: パラメータがヌル又はセットされていません"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr ""
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: 悪い代理"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: このように指定できません"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "悪い代入: `%s' が %s にはありません"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash-4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-03-25 16:49+0200\n"
"Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -318,7 +318,7 @@ msgstr "galima naudoti tik funkcijoje"
msgid "cannot use `-f' to make functions"
msgstr "negalima naudoti „-f“ funkcijoms kurti"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkcija tik skaitymui"
@@ -357,7 +357,7 @@ msgstr "%s: nedinamiškai įkrauta"
msgid "%s: cannot delete: %s"
msgstr "%s: nepavyko ištrinti: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -373,7 +373,7 @@ msgstr "%s: ne paprastas failas"
msgid "%s: file is too large"
msgstr "%s: failas per didelis"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -847,37 +847,37 @@ msgstr "%s: nepriskirtas kintamasis"
msgid "timed out waiting for input: auto-logout\n"
msgstr "laukiant įvedimo baigėsi laikas: automatiškai atsijungta\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "nepavyko peradresuoti standartinio įvedimo iš /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c“: netaisyklingas formato simbolis"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "rašymo klaida: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: apribota: negalima naudoti „/“ komandų pavadinimuose"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: komanda nerasta"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: blogas interpretatorius"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nepavyko dublikuoti fd %d į fd %d"
@@ -953,7 +953,7 @@ msgstr "%s: išraiškos klaida\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: nepavyko pasiekti aukštesnių aplankų"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nepavyko dublikuoti fd %d į fd %d"
@@ -1262,99 +1262,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: nukreipimo instrukcija „%d“ už ribų"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "netikėta failo pabaiga ieškant atitinkamo „%c“"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "netikėta failo pabaiga ieškant „]]“"
#: parse.y:3940
#: parse.y:3956
#, 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:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "sintaksės klaida sąlygos išraiškoje"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "netikėta leksema „%s“, tikėtasi „)“"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "tikėtasi „)“"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "netikėtas argumentas „%s“ sąlygos unariniam operatoriui"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "netikėtas argumentas sąlygos unariniam operatoriui"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "netikėta leksema „%s“, tikėtasi sąlyginio binarinio operatoriaus"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "tikėtasi sąlygos binarinio operatoriaus"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "netikėtas argumentas „%s“ sąlygos binariniam operatoriui"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "netikėtas argumentas sąlygos binariniam operatoriui"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "netikėta leksema „%c“ sąlygos komandoje"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "netikėta leksema „%s“ sąlygos komandoje"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "netikėta leksema %d sąlygos komandoje"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "sintaksės klaida prie netikėtos leksemos: „%s“"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "sintaksės klaida prie „%s“"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "sintaksės klaida: netikėta failo pabaiga"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "sintaksės klaida"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Naudokite „%s“, jei norite išeiti iš ap.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "netikėta failo pabaiga ieškant atitinkamo „)“"
@@ -1670,77 +1670,83 @@ msgstr "Nežinomas signalas #"
msgid "Unknown Signal #%d"
msgstr "Nežinomas signalas #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "blogas keitinys: trūksta „%s“ %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: negalima priskirti sąrašo masyvo elementui"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr ""
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr ""
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr ""
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr ""
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr ""
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr ""
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametras tuščias arba nenustatytas"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: posekio išraiška < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: blogas keitinys"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: negalima tokiu būdu priskirti"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "blogas keitinys: trūksta „%s“ %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "nėra atitikmenų: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -25,7 +25,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash-4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-12-03 15:15+0100\n"
"Last-Translator: Erwin Poeze <erwin.poeze@gmail.com>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -338,7 +338,7 @@ msgstr "kan alleen worden gebruikt binnen een functie"
msgid "cannot use `-f' to make functions"
msgstr "'-f' kan niet gebruikt worden om een functie te definiëren"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: is een alleen-lezen functie"
@@ -377,7 +377,7 @@ msgstr "%s: is niet dynamisch geladen"
msgid "%s: cannot delete: %s"
msgstr "Kan %s niet verwijderen: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -393,7 +393,7 @@ msgstr "%s: is geen normaal bestand"
msgid "%s: file is too large"
msgstr "%s: bestand is te groot"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -919,36 +919,36 @@ msgstr "%s: ongebonden variabele"
msgid "timed out waiting for input: auto-logout\n"
msgstr "wachten op invoer duurde te lang -- automatisch afgemeld\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "kan standaardinvoer niet omleiden vanaf /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: '%c': ongeldig opmaakteken"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "pijpfout"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: beperkte modus: '/' in opdrachtnamen is niet toegestaan"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: opdracht niet gevonden"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: ongeldige interpreter"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "kan bestandsdescriptor %d niet dupliceren naar bestandsdescriptor %d"
@@ -1023,7 +1023,7 @@ msgstr "%s: expressiefout\n"
msgid "getcwd: cannot access parent directories"
msgstr "getwd(): kan geen geen toegang verkrijgen tot bovenliggende mappen"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "kan 'nodelay'-modus niet uitschakelen voor bestandsdescriptor %d"
@@ -1337,100 +1337,100 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection(): omleidingsinstructie '%d' valt buiten bereik"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "onverwacht bestandseinde tijdens zoeken naar bijpassende '%c'"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "onverwacht bestandseinde tijdens zoeken naar ']]'"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "syntaxfout in conditionele expressie: onverwacht symbool '%s'"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "syntaxfout in conditionele expressie"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "onverwacht symbool '%s'; ')' werd verwacht"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "')' werd verwacht"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "onverwacht argument '%s' bij eenzijdige conditionele operator"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "onverwacht argument bij eenzijdige conditionele operator"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
"onverwacht symbool '%s'; tweezijdige conditionele operator werd verwacht"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "tweezijdige conditionele operator werd verwacht"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "onverwacht argument '%s' bij tweezijdige conditionele operator"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "onverwacht argument bij tweezijdige conditionele operator"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "onverwacht symbool '%c' in conditionele opdracht"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "onverwacht symbool '%s' in conditionele opdracht"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "onverwacht symbool %d in conditionele opdracht"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "syntaxfout nabij onverwacht symbool '%s'"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "syntaxfout nabij '%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "syntaxfout: onverwacht bestandseinde"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "syntaxfout"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Gebruik \"%s\" om de shell te verlaten.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "onverwacht bestandseinde tijdens zoeken naar bijpassende ')'"
@@ -1745,78 +1745,84 @@ msgstr "Onbekend signaalnummer"
msgid "Unknown Signal #%d"
msgstr "Onbekend signaal #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "ongeldige vervanging: geen sluit-'%s' in %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: kan geen lijst toewijzen aan een array-element"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "kan geen pijp maken voor procesvervanging"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "kan geen dochterproces maken voor procesvervanging"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "kan pijp genaamd %s niet openen om te lezen"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "kan pijp genaamd %s niet openen om te schrijven"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "kan pijp genaamd %s niet dupliceren als bestandsdescriptor %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "kan geen pijp maken voor opdrachtvervanging"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "kan geen dochterproces maken voor opdrachtvervanging"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
"command_substitute(): kan pijp niet dupliceren als bestandsdescriptor 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: lege parameter, of niet ingesteld"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: resultaat van deeltekenreeks is kleiner dan nul"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: ongeldige vervanging"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: kan niet op deze manier toewijzen"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "ongeldige vervanging: geen afsluitende '`' in %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "geen overeenkomst: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -323,7 +323,7 @@ msgstr "mo
msgid "cannot use `-f' to make functions"
msgstr "nie mo¿na u¿ywaæ `-f' do tworzenia funkcji"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkcja tylko do odczytu"
@@ -362,7 +362,7 @@ msgstr "%s: nie jest
msgid "%s: cannot delete: %s"
msgstr "%s: nie mo¿na usun±æ: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -378,7 +378,7 @@ msgstr "%s: nie jest zwyk
msgid "%s: file is too large"
msgstr "%s: plik jest za du¿y"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -910,37 +910,37 @@ msgstr "%s: nieustawiona zmienna"
msgid "timed out waiting for input: auto-logout\n"
msgstr "przekroczony czas oczekiwania na dane wej¶ciowe: auto-wylogowanie\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "nie mo¿na przekierowaæ standardowego wej¶cia z /dev/null: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': nieprawid³owy znak formatuj±cy"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "b³±d zapisu: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: ograniczony: nie mo¿na podawaæ `/' w nazwach poleceñ"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: nie znaleziono polecenia"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: z³y interpreter"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nie mo¿na skopiowaæ deskryptora pliku %d do %d"
@@ -1017,7 +1017,7 @@ msgstr "%s: oczekiwano wyra
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: niemo¿liwy dostêp do katalogów nadrzêdnych"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nie mo¿na wy³±czyæ trybu nieblokuj±cego dla deskryptora %d"
@@ -1329,99 +1329,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: instrukcja przekierowania `%d' poza zakresem"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "nieoczekiwany EOF podczas poszukiwania pasuj±cego `%c'"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "nieoczekiwany EOF podczas poszukiwania `]]'"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "b³±d sk³adni w wyra¿eniu warunkowym: nieoczekiwany znacznik `%s'"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "b³±d sk³adni w wyra¿eniu warunkowym"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "nieoczekiwany znacznik `%s', oczekiwano `)'"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "oczekiwano `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "nieoczekiwany argument `%s' jednoargumentowego operatora warunkowego"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "nieoczekiwany argument jednoargumentowego operatora warunkowego"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "nieoczekiwany argument `%s', oczekiwano dwuarg. operatora warunkowego"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "oczekiwano dwuargumentowego operatora warunkowego"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "nieoczekiwany argument `%s' dwuargumentowego operatora warunkowego"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "nieoczekiwany argument dwuargumentowego operatora warunkowego"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "nieoczekiwany znacznik `%c' w poleceniu warunkowym"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "nieoczekiwany znacznik `%s' w poleceniu warunkowym"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "nieoczekiwany znacznik %d w poleceniu warunkowym"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "b³±d sk³adni przy nieoczekiwanym znaczniku `%s'"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "b³±d sk³adni przy `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "b³±d sk³adni: nieoczekiwany koniec pliku"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "b³±d sk³adni"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "U¿yj \"%s\", aby opu¶ciæ tê pow³okê.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "nieoczekiwany EOF podczas poszukiwania pasuj±cego `)'"
@@ -1739,77 +1739,83 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "z³e podstawienie: brak zamykaj±cego `%s' w %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: nie mo¿na przypisaæ listy do elementu tablicy"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "nie mo¿na utworzyæ potoku dla podstawienia procesu"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "nie mo¿na utworzyæ procesu potomnego dla podstawienia procesu"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "nie mo¿na otworzyæ nazwanego potoku %s do odczytu"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "nie mo¿na otworzyæ nazwanego potoku %s do zapisu"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "nie mo¿na powieliæ nazwanego potoku %s jako deskryptor %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "nie mo¿na utworzyæ potoku dla podstawienia polecenia"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "nie mo¿na utworzyæ procesu potomnego dla podstawienia polecenia"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: nie mo¿na powieliæ potoku jako deskryptora 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametr pusty lub nieustawiony"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: wyra¿enie dla pod³añcucha < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: z³e podstawienie"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: nie mo¿na przypisywaæ w ten sposób"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "z³e podstawienie: brak zamykaj±cego `%s' w %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "brak pasuj±cego: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -322,7 +322,7 @@ msgstr "somente pode ser usado dentro de fun
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: função somente para leitura"
@@ -361,7 +361,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: impossível criar: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -377,7 +377,7 @@ msgstr "%s: imposs
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -854,37 +854,37 @@ msgstr ""
"%ctempo limite de espera excedido aguardando entrada:\n"
"fim automático da sessão\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "erro de `pipe': %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, 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:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: comando não encontrado"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: é um diretório"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "impossível duplicar fd (descritor de arquivo) %d para fd 0: %s"
@@ -963,7 +963,7 @@ msgstr "%s: esperado express
msgid "getcwd: cannot access parent directories"
msgstr "getwd: impossível acessar os diretórios pais (anteriores)"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "impossível duplicar fd (descritor de arquivo) %d para fd 0: %s"
@@ -1280,103 +1280,103 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, fuzzy, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "encontrado EOF não esperado enquanto procurava por `%c'"
#: parse.y:3935
#: parse.y:3951
#, fuzzy
msgid "unexpected EOF while looking for `]]'"
msgstr "encontrado EOF não esperado enquanto procurava por `%c'"
#: parse.y:3940
#: parse.y:3956
#, fuzzy, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "erro de sintaxe próximo do `token' não esperado `%s'"
#: parse.y:3944
#: parse.y:3960
#, fuzzy
msgid "syntax error in conditional expression"
msgstr "erro de sintaxe na expressão"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
#, fuzzy
msgid "expected `)'"
msgstr "esperado `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, fuzzy, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "%s: esperado operador binário"
#: parse.y:4108
#: parse.y:4124
#, fuzzy
msgid "conditional binary operator expected"
msgstr "%s: esperado operador binário"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, fuzzy, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "`:' esperado para expressão condicional"
#: parse.y:4148
#: parse.y:4164
#, fuzzy, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "`:' esperado para expressão condicional"
#: parse.y:4152
#: parse.y:4168
#, fuzzy, c-format
msgid "unexpected token %d in conditional command"
msgstr "`:' esperado para expressão condicional"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "erro de sintaxe próximo do `token' não esperado `%s'"
#: parse.y:5461
#: parse.y:5477
#, fuzzy, c-format
msgid "syntax error near `%s'"
msgstr "erro de sintaxe próximo do `token' não esperado `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "erro de sintaxe: fim prematuro do arquivo"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "erro de sintaxe"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Use \"%s\" para sair da `shell'.\n"
#: parse.y:5695
#: parse.y:5711
#, fuzzy
msgid "unexpected EOF while looking for matching `)'"
msgstr "encontrado EOF não esperado enquanto procurava por `%c'"
@@ -1696,86 +1696,92 @@ msgstr "Sinal desconhecido #"
msgid "Unknown Signal #%d"
msgstr "Sinal desconhecido #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, fuzzy, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "substituição incorreta: nenhum `%s' em %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: impossível atribuir uma lista a um membro de uma matriz (array)"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
#, fuzzy
msgid "cannot make pipe for process substitution"
msgstr "impossível criar `pipe' para a substituição do processo: %s"
#: subst.c:4790
#: subst.c:4802
#, fuzzy
msgid "cannot make child for process substitution"
msgstr "impossível criar um processo filho para a substituição do processo: %s"
#: subst.c:4835
#: subst.c:4847
#, fuzzy, c-format
msgid "cannot open named pipe %s for reading"
msgstr "impossível abrir o `named pipe' %s para %s: %s"
#: subst.c:4837
#: subst.c:4849
#, fuzzy, c-format
msgid "cannot open named pipe %s for writing"
msgstr "impossível abrir o `named pipe' %s para %s: %s"
#: subst.c:4855
#: subst.c:4867
#, fuzzy, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
"impossível duplicar o `named pipe' %s\n"
"como descritor de arquivo (fd) %d: %s"
#: subst.c:5051
#: subst.c:5063
#, fuzzy
msgid "cannot make pipe for command substitution"
msgstr "impossível construir `pipes' para substituição do comando: %s"
#: subst.c:5085
#: subst.c:5097
#, fuzzy
msgid "cannot make child for command substitution"
msgstr "impossível criar um processo filho para substituição do comando: %s"
#: subst.c:5102
#: subst.c:5114
#, fuzzy
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
"command_substitute: impossível duplicar o `pipe' como\n"
"descritor de arquivo (fd) 1: %s"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parâmetro nulo ou não inicializado"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: expressão de substring < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: substituição incorreta"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: impossível atribuir desta maneira"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substituição incorreta: nenhum `%s' em %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -321,7 +321,7 @@ msgstr "poate fi folosit doar
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funcþie doar în citire (readonly)"
@@ -360,7 +360,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: nu s-a putut crea: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -376,7 +376,7 @@ msgstr "%s: nu se poate executa fi
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -850,37 +850,37 @@ msgstr "%s: variabil
msgid "timed out waiting for input: auto-logout\n"
msgstr "%ca expirat aºteptând introducere de date: auto-logout\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "eroare de legãturã (pipe): %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: limitat: nu se poate specifica `/' în numele comenzilor"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: comandã negãsitã"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, fuzzy, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: este director"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, fuzzy, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nu se poate duplica fd %d în fd 0: %s"
@@ -959,7 +959,7 @@ msgstr "eroare de redirectare"
msgid "getcwd: cannot access parent directories"
msgstr "getwd: nu s-au putut accesa directoarele pãrinte"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr ""
@@ -1272,103 +1272,103 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, fuzzy, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "EOF brusc în cãutare dupã `%c'"
#: parse.y:3935
#: parse.y:3951
#, fuzzy
msgid "unexpected EOF while looking for `]]'"
msgstr "EOF brusc în cãutare dupã `%c'"
#: parse.y:3940
#: parse.y:3956
#, fuzzy, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "eroare de sintaxã neaºteptatã lângã `%s'"
#: parse.y:3944
#: parse.y:3960
#, fuzzy
msgid "syntax error in conditional expression"
msgstr "eroare de sintaxã în expresie "
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
#, fuzzy
msgid "expected `)'"
msgstr "se aºteaptã `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, fuzzy, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "%s: se aºteaptã operator binar"
#: parse.y:4108
#: parse.y:4124
#, fuzzy
msgid "conditional binary operator expected"
msgstr "%s: se aºteaptã operator binar"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, fuzzy, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "`:' aºteptat dupã expresie condiþionalã"
#: parse.y:4148
#: parse.y:4164
#, fuzzy, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "`:' aºteptat dupã expresie condiþionalã"
#: parse.y:4152
#: parse.y:4168
#, fuzzy, c-format
msgid "unexpected token %d in conditional command"
msgstr "`:' aºteptat dupã expresie condiþionalã"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "eroare de sintaxã neaºteptatã lângã `%s'"
#: parse.y:5461
#: parse.y:5477
#, fuzzy, c-format
msgid "syntax error near `%s'"
msgstr "eroare de sintaxã neaºteptatã lângã `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "eroare de sintaxã: sfârºit de fiºier neaºteptat"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "eroare de sintaxã"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Folosiþi \"%s\" pentru a pãrãsi shellul.\n"
#: parse.y:5695
#: parse.y:5711
#, fuzzy
msgid "unexpected EOF while looking for matching `)'"
msgstr "EOF brusc în cãutare dupã `%c'"
@@ -1687,82 +1687,88 @@ msgstr "Semnal Necunoscut #"
msgid "Unknown Signal #%d"
msgstr "Semnal Necunoscut #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, fuzzy, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "substituþie invalidã: nu existã '%s' în %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: nu pot asigna listã membrului intervalului"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
#, fuzzy
msgid "cannot make pipe for process substitution"
msgstr "nu pot face legãturã (pipe) pentru substituþia procesului: %s"
#: subst.c:4790
#: subst.c:4802
#, fuzzy
msgid "cannot make child for process substitution"
msgstr "nu pot crea un proces copil pentru substituirea procesului: %s"
#: subst.c:4835
#: subst.c:4847
#, fuzzy, c-format
msgid "cannot open named pipe %s for reading"
msgstr "nu pot deschide legãtura numitã %s pentru %s: %s"
#: subst.c:4837
#: subst.c:4849
#, fuzzy, c-format
msgid "cannot open named pipe %s for writing"
msgstr "nu pot deschide legãtura numitã %s pentru %s: %s"
#: subst.c:4855
#: subst.c:4867
#, fuzzy, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "nu se poate duplica legãtura numitã %s ca fd %d: %s "
#: subst.c:5051
#: subst.c:5063
#, fuzzy
msgid "cannot make pipe for command substitution"
msgstr "nu pot face legãturi(pipes) pentru substituþia de comenzi: %s"
#: subst.c:5085
#: subst.c:5097
#, fuzzy
msgid "cannot make child for command substitution"
msgstr "nu pot crea un copil pentru substituþia de comenzi: %s"
#: subst.c:5102
#: subst.c:5114
#, fuzzy
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: nu se poate duplica legãtura (pipe) ca fd 1: %s"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametru null sau nesetat"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: expresie subºir < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: substituþie invalidã"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: nu se poate asigna în acest mod"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "substituþie invalidã: nu existã ')' de final în %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU bash 3.1-release\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -319,7 +319,7 @@ msgstr "
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: ÄÏÓÔÕÐÎÁÑ ÔÏÌØËÏ ÎÁ ÞÔÅÎÉÅ ÆÕÎËÃÉÑ"
@@ -358,7 +358,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr "%s: ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -374,7 +374,7 @@ msgstr "%s:
msgid "%s: file is too large"
msgstr "%s: ÓÌÉÛËÏÍ ÂÏÌØÛÏÊ ÆÁÊÌ"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -837,37 +837,37 @@ msgstr ""
msgid "timed out waiting for input: auto-logout\n"
msgstr ""
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: ËÏÍÁÎÄÁ ÎÅ ÎÁÊÄÅÎÁ"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: ÐÌÏÈÏÊ ÉÎÔÅÒÐÒÅÔÁÔÏÒ"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "ÎÅ ÍÏÇÕ ÄÕÂÌÉÒÏ×ÁÔØ fd %d × fd %d"
@@ -942,7 +942,7 @@ msgstr "
msgid "getcwd: cannot access parent directories"
msgstr ""
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "ÎÅ ÍÏÇÕ ÄÕÂÌÉÒÏ×ÁÔØ fd %d × fd %d"
@@ -1250,99 +1250,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr ""
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr ""
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "ÏÖÉÄÁÌÓÑ `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr ""
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr ""
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr ""
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr ""
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr ""
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "ÏÛÉÂËÁ ÓÉÎÔÁËÓÉÓÁ ÏËÏÌÏ `%s'"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "ÏÛÉÂËÁ ÓÉÎÔÁËÓÉÓÁ: ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅÃ ÆÁÊÌÁ"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "ÏÛÉÂËÁ ÓÉÎÔÁËÓÉÓÁ"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "éÓÐÏÌØÚÕÊÔÅ \"%s\", ÞÔÏÂÙ ÚÁ×ÅÒÛÉÔØÓÑ ÒÁÂÏÔÕ Ó ÏÂÏÌÏÞËÏÊ.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
@@ -1656,77 +1656,83 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr ""
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr ""
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr ""
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr ""
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÉÍÅÎÎÏÊ ËÁÎÁÌ %s ÄÌÑ ÞÔÅÎÉÑ"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÉÍÅÎÎÏÊ ËÁÎÁÌ %s ÄÌÑ ÚÁÐÉÓÉ"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr ""
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr ""
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: ÐÁÒÁÍÅÔÒ null ÉÌÉ ÎÅ ÕÓÔÁÎÏ×ÌÅÎ"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr ""
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr ""
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr ""
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "ÎÅÔ ÚÁËÒÙ×ÁÀÝÅÇÏ `%c' × %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "ÎÅÔ ÓÏ×ÐÁÄÅÎÉÑ Ó: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-03-19 13:09+0100\n"
"Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -319,7 +319,7 @@ msgstr "je možné použiť iba vo funkcii"
msgid "cannot use `-f' to make functions"
msgstr "nie je možné použiť „-f“ pre tvorbu funkcií"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: funkcia iba na čítanie"
@@ -358,7 +358,7 @@ msgstr "%s: nie je dynamicky načítané"
msgid "%s: cannot delete: %s"
msgstr "%s: nie je možné zmazať: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -374,7 +374,7 @@ msgstr "%s: nie je obyčajný súbor"
msgid "%s: file is too large"
msgstr "%s: súbor je príliš veľký"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -903,36 +903,36 @@ msgstr "%s: neviazaná premenná"
msgid "timed out waiting for input: auto-logout\n"
msgstr "čas vypršal pri čakaní na vstup: automatické odhlásenie\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, 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:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: „%c“: neplatný formátovácí znak"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "chyba rúry"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, 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:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: príkaz nenájdený"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: chybný interpreter"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "nie je možné duplikovať fd %d na fd %d"
@@ -1007,7 +1007,7 @@ msgstr "%s: chyba výrazu\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: nie je možné pristupovať k rodičovským adresárom"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "nie j emožné resetovať nodelay režim fd %d"
@@ -1317,99 +1317,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: inštrukcia presmerovania „%d“ mimo rozsahu"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, 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:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "neočakávaný koniec súboru počas hľadania „]]“"
#: parse.y:3940
#: parse.y:3956
#, 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:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "chyba syntaxe v podmienečnom príkaze"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "neočakávaný token „%s“, očakávalo sa `)'"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "očakávalo sa `)'"
#: parse.y:4054
#: parse.y:4070
#, 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:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "neočakávaný argument podmienečného unárneho operátora"
#: parse.y:4104
#: parse.y:4120
#, 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:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "očakáva sa podmienečný binárny operátor"
#: parse.y:4130
#: parse.y:4146
#, 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:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "neočakávaný argument v podmienečnom binárnom operátore"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "neočakávaný token „%c“ v podmienečnom príkaze"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "neočakávaný token „%s“ v podmienečnom príkaze"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "neočakávaný token %d v podmienečnom príkaze"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "chyba syntaxe neďaleko neočakávaného tokenu „%s“"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "chyba syntaxe neďaleko „%s“"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "chyba syntaxe: neočakávaný koniec súboru"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "chyba syntaxe"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Na opustenie shellu použite „%s“.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "neočakávaný koniec súboru počas hľadania zodpovedajúceho „)“"
@@ -1724,77 +1724,83 @@ msgstr "Neznáme číslo signálu"
msgid "Unknown Signal #%d"
msgstr "Neznámy signál #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "chybná substitúcia: chýba „%s“ v %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: nie je možné priradiť zoznam položke poľa"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "nie je možné vytvoriť rúru pre substitúciu procesov"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "nie je možné vytvoriť potomka pre substitúciu procesov"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "nie je možné otvoriť pomenovanú rúru %s na čítanie"
#: subst.c:4837
#: subst.c:4849
#, 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:4855
#: subst.c:4867
#, 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:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "nie je možné vytvoriť rúru pre substitúciu príkazov"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "nie je možné vytvoriť potomka pre substitúciu príkazov"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: nie je možné duplikovať rúru ako fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parameter je null alebo nenastavený"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: výraz podreťazca < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: chybná substitúcia"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: nie je možné vykonať priradenie takýmto spôsobom"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "chybná substitúcia: : v reťazci %s chýba uzatvárajúci „`”"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "bez zhody: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-03-25 19:35+0100\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -322,7 +322,7 @@ msgstr "kan endast användas i en funktion"
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:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: endast läsbar funktion"
@@ -361,7 +361,7 @@ msgstr "%s: inte dynamiskt laddad"
msgid "%s: cannot delete: %s"
msgstr "%s: kan inte ta bort: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -377,7 +377,7 @@ msgstr "%s: inte en normal fil"
msgid "%s: file is too large"
msgstr "%s: filen är för stor"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -904,36 +904,36 @@ msgstr "%s: obunden variabel"
msgid "timed out waiting for input: auto-logout\n"
msgstr "tiden gick ut i väntan på indata: automatisk utloggning\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
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:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: \"%c\": ogiltigt formateringstecken"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "rörfel"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, 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:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: kommandot finns inte"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: felaktig tolk"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "det går inte att duplicera fb %d till fb %d"
@@ -1008,7 +1008,7 @@ msgstr "%s: uttrycksfel\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: det går inte att komma åt föräldrakatalogen"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "det går inte att återställa fördröjningsfritt läge för fb %d"
@@ -1319,99 +1319,99 @@ msgid "make_redirection: redirection instruction `%d' out of range"
msgstr ""
"make_redirection: omdirigeringsinstruktion \"%d\" utanför giltigt intervall"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "oväntat filslut vid sökning efter matchande \"%c\""
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "oväntat filslut vid sökning efter \"]]\""
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "syntaxfel i villkorligt uttryck: oväntad symbol \"%s\""
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "syntaxfel i villkorligt uttryck"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "oväntad symbol \"%s\", \")\" förväntades"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "\")\" förväntades"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "oväntat argument \"%s\" till villkorlig unär operator"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "oväntat argument till villkorlig unär operator"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "oväntad symbol \"%s\", villkorlig binär operator förväntades"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "villkorlig binär operato förväntades"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "oväntat argument \"%s\" till villkorlig binär operator"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "oväntat argument till villkorlig binär operator"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "oväntad symbol \"%c\" i villkorligt kommando"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "oväntad symbol \"%s\" i villkorligt kommando"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "oväntad symbol %d i villkorligt kommando"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "syntaxfel när den oväntade symbolen \"%s\""
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "syntaxfel nära \"%s\""
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "syntaxfel: oväntat filslut"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "syntaxfel"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Använd \"%s\" fär att lämna skalet.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "oväntat filslut när matchande \")\" söktes"
@@ -1725,77 +1725,83 @@ msgstr "Okänd signal nr "
msgid "Unknown Signal #%d"
msgstr "Okänd signal nr %d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "felaktig substitution: ingen avslutande \"%s\" i %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: det går inte att tilldela listor till vektormedlemmar"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "det går inte att skapa rör för processubstitution"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "det går inte att skapa barn för processubstitution"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "det går inte att öppna namngivet rör %s för läsning"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "det går inte att öppna namngivet rör %s för skrivning"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "det går inte att duplicera namngivet rör %s som fb %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "det går inte att skapa rör för kommandosubstitution"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "det går inte att skapa barn för kommandosubstitution"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: det går inte att duplicera rör som fb 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametern tom eller inte satt"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: delstränguttryck < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: felaktig substitution"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: det går inte att tilldela på detta sätt"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "felaktig ersättning: ingen avslutande \"`\" i %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "ingen match: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -318,7 +318,7 @@ msgstr "sadece bir işlevde kullanılabilir"
msgid "cannot use `-f' to make functions"
msgstr "işlev yapmak için `-f' kullanılamaz"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: salt okunur işlev"
@@ -357,7 +357,7 @@ msgstr "%s: özdevimli olarak yüklenmemiş"
msgid "%s: cannot delete: %s"
msgstr "%s: silinemiyor: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -373,7 +373,7 @@ msgstr "%s: bir dosya değil"
msgid "%s: file is too large"
msgstr "%s: dosya çok büyük"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -897,37 +897,37 @@ msgstr "%s: bağlanmamış değişken"
msgid "timed out waiting for input: auto-logout\n"
msgstr "girdi beklerken zamanaşımı: auto-logout\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr "/dev/null'dan standart girdiye yönlendirme yapılamaz: %s"
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr "TIMEFORMAT: `%c': biçim karakteri geçersiz"
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "yazma hatası: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr "%s: kısıtlı: komut adında `/' kullanamazsınız"
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: komut yok"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: hatalı yorumlayıcı"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "fd %d, fd %d olarak yinelenemiyor"
@@ -1002,7 +1002,7 @@ msgstr "%s: tamsayı ifadesi bekleniyordu"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: üst dizinlere erişilemiyor"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, fuzzy, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "fd %d için geciktirmeme kipi sıfırlanamıyor"
@@ -1313,99 +1313,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: yönlendirme yönergesi `%d' aralık dışında"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "`%c' için eşleşme aranırken beklenmedik dosya sonu"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "`]]' aranırken beklenmedik dosya sonu"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "koşullu ifadede sözdizimi hatası: beklenmedik dizgecik `%s'"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "koşullu ifadede sözdizimi hatası"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "beklenmedik dizgecik `%s', `)' umuluyordu"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "`)' umuluyordu"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "koşullu tek terimli işlece beklenmedik argüman `%s'"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "koşullu tek terimli işlece beklenmedik argüman"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "beklenmedik dizgecik `%s', koşullu iki terimli işleç umuluyordu"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "koşullu iki terimli işleç umuluyordu"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "koşullu iki terimli işlece beklenmedik argüman `%s'"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "koşullu iki terimli işlece beklenmedik argüman"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "koşullu komutta beklenmeyen dizgecik `%c'"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "koşullu komutta beklenmeyen dizgecik `%s'"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "koşullu komutta beklenmeyen dizgecik %d"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "beklenmeyen dizgecik `%s' yakınında sözdizimi hatası"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "`%s' yakınında sözdizimi hatası"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "sözdizimi hatası: beklenmeyen dosya sonu"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "sözdizimi hatası"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Kabuğu bırakmak için \"%s\" kullanın.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr "`)' için eşleşme aranırken beklenmedik dosya sonu"
@@ -1724,77 +1724,83 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "hatalı ikame: %2$s içinde kapatan `%1$s' yok"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: dizi üyesine liste atanamaz"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "süreç ikamesi için borulama yapılamıyor"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "süreç ikamesi için alt süreç yapılamıyor"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "isimli boru %s okumak için açılamıyor"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "isimli boru %s yazmak için açılamıyor"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "isimli boru %s fd %d olarak yinelenemiyor"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "komut ikamesi için boru yapılamıyor"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "komut ikamesi için alt süreç yapılamıyor"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: boru fd 1 olarak yinelenemiyor"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: parametre boş ya da değer atanmamış"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: altdizge ifadesi < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: hatalı ikame"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: bu yolla atama yapılmaz"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, fuzzy, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "hatalı ikame: %2$s içinde kapatan `%1$s' yok"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "eşleşme yok: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash 4.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-0500\n"
"PO-Revision-Date: 2009-09-19 21:17+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@@ -324,7 +324,7 @@ msgstr "chỉ có thể được dùng trong một hàm"
msgid "cannot use `-f' to make functions"
msgstr "không thể dùng « -f » để tạo hàm"
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s: hàm chỉ đọc"
@@ -363,7 +363,7 @@ msgstr "%s không phải được nạp động"
msgid "%s: cannot delete: %s"
msgstr "%s: không thể xoá: %s"
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -379,7 +379,7 @@ msgstr "%s: không phải là tập tin chuẩn"
msgid "%s: file is too large"
msgstr "%s: tập tin quá lớn"
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -912,36 +912,36 @@ msgstr "%s: biến chưa tổ hợp"
msgid "timed out waiting for input: auto-logout\n"
msgstr "\tquá hạn trong khi đợi dữ liệu nhập nên tự động đăng xuất\n"
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
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:1160
#: execute_cmd.c:1162
#, 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:2073
#: execute_cmd.c:2075
msgid "pipe error"
msgstr "lỗi ống dẫn"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, 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:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s: không tìm thấy lệnh"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr "%s: %s: bộ thông dịch sai"
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr "không thể nhân đôi fd %d tới fd %d"
@@ -1016,7 +1016,7 @@ msgstr "%s: lỗi biểu thức\n"
msgid "getcwd: cannot access parent directories"
msgstr "getcwd: không thể truy cập thư mục cấp trên"
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr "không thể đặt lại chế độ nodelay (không hoãn) cho fd %d"
@@ -1330,99 +1330,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection: chỉ dẫn chuyển hướng « %d » ở ngoại phạm vi"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr "gặp kết thúc tập tin bất thường trong khi tìm « %c » tương ứng"
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr "gặp kết thúc tập tin bất thường trong khi tìm « ]] »"
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr "gặp lỗi cú pháp trong biểu thức điều kiện: hiệu bài bất thường « %s »"
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "gặp lỗi cú pháp trong biểu thức điều kiện"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr "gặp hiệu bài bất thường « %s », còn mong đợi dấu ngoặc đóng « ) »"
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "đợi dấu đóng ngoặc « ) »"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr "đối số bất thường « %s » tới toán tử nguyên phân điều kiện"
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr "đối số bất thường tới toán tử nguyên phân điều kiện"
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr "hiệu bài bất thường « %s » còn đợi toán tử nhị phân điều kiện"
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr "đợi toán tử nhị phân điều kiện"
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr "đối số bất thường « %s » tới toán tử nhị phân điều kiện"
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr "đối số bất thường tới toán tử nhị phân điều kiện"
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr "gặp hiệu bài bất thường « %c » trong câu lệnh điều kiện"
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr "gặp hiệu bài bất thường « %s » trong câu lệnh điều kiện"
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr "gặp hiệu bài bất thường « %d » trong câu lệnh điều kiện"
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr "gặp lỗi cú pháp ở gần hiệu bài bất thường « %s »"
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr "gặp lỗi cú pháp gần « %s »"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr "lỗi cú pháp: kết thúc tập tin bất thường"
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "lỗi cú pháp"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr "Dùng « %s » để rời trình bao.\n"
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
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"
@@ -1740,77 +1740,83 @@ msgstr "Không rõ tín hiệu #"
msgid "Unknown Signal #%d"
msgstr "Không rõ tín hiệu #%d"
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr "sai thay thế: không có « %s » đóng trong %s"
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr "%s: không thể gán danh sách cho bộ phận của mảng"
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr "không thể tạo ống dẫn để thay thế tiến trình"
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr "không thể tạo tiến trình con để thay thế tiến trình"
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr "không thể mở ống dẫn đặt tên %s để đọc"
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr "không thể mở ống dẫn đặt tên %s để ghi"
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr "không thể nhân đôi ống dẫn đặt tên %s thành fd %d"
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr "không thể tạo ống dẫn để thay thế lệnh"
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr "không thể tạo tiến trình con để thay thế lệnh"
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr "command_substitute: không thể nhân đôi ống dẫn thành fd 1"
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr "%s: tham số vô giá trị hoặc chưa được đặt"
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr "%s: biểu thức chuỗi phụ < 0"
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr "%s: sai thay thế"
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr "$%s: không thể gán bằng cách này"
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr "sai thay thế: không có « ` » đóng trong %s"
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr "không khớp: %s"
BIN
View File
Binary file not shown.
+55 -49
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bash-3.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-17 10:20-0500\n"
"POT-Creation-Date: 2009-12-30 08:25-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"
@@ -317,7 +317,7 @@ msgstr "只能用在一個函數"
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:372 execute_cmd.c:4935
#: builtins/declare.def:372 execute_cmd.c:4937
#, c-format
msgid "%s: readonly function"
msgstr "%s:只讀函數"
@@ -356,7 +356,7 @@ msgstr ""
msgid "%s: cannot delete: %s"
msgstr ""
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4792
#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4794
#: shell.c:1452
#, c-format
msgid "%s: is a directory"
@@ -372,7 +372,7 @@ msgstr ""
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4862
#: builtins/evalfile.c:185 builtins/evalfile.c:203 execute_cmd.c:4864
#: shell.c:1462
#, c-format
msgid "%s: cannot execute binary file"
@@ -831,37 +831,37 @@ msgstr ""
msgid "timed out waiting for input: auto-logout\n"
msgstr ""
#: execute_cmd.c:495
#: execute_cmd.c:497
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1160
#: execute_cmd.c:1162
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2073
#: execute_cmd.c:2075
#, fuzzy
msgid "pipe error"
msgstr "寫入錯誤: %s"
#: execute_cmd.c:4479
#: execute_cmd.c:4481
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
#: execute_cmd.c:4570
#: execute_cmd.c:4572
#, c-format
msgid "%s: command not found"
msgstr "%s:命令找不到"
#: execute_cmd.c:4825
#: execute_cmd.c:4827
#, c-format
msgid "%s: %s: bad interpreter"
msgstr ""
#: execute_cmd.c:4974
#: execute_cmd.c:4976
#, c-format
msgid "cannot duplicate fd %d to fd %d"
msgstr ""
@@ -936,7 +936,7 @@ msgstr ""
msgid "getcwd: cannot access parent directories"
msgstr ""
#: input.c:94 subst.c:4845
#: input.c:94 subst.c:4857
#, c-format
msgid "cannot reset nodelay mode for fd %d"
msgstr ""
@@ -1244,99 +1244,99 @@ msgstr ""
msgid "make_redirection: redirection instruction `%d' out of range"
msgstr "make_redirection:重新導向指示 `%d' 超出範圍"
#: parse.y:3117 parse.y:3353
#: parse.y:3133 parse.y:3369
#, c-format
msgid "unexpected EOF while looking for matching `%c'"
msgstr ""
#: parse.y:3935
#: parse.y:3951
msgid "unexpected EOF while looking for `]]'"
msgstr ""
#: parse.y:3940
#: parse.y:3956
#, c-format
msgid "syntax error in conditional expression: unexpected token `%s'"
msgstr ""
#: parse.y:3944
#: parse.y:3960
msgid "syntax error in conditional expression"
msgstr "語法錯誤,在有條件的表達"
#: parse.y:4022
#: parse.y:4038
#, c-format
msgid "unexpected token `%s', expected `)'"
msgstr ""
#: parse.y:4026
#: parse.y:4042
msgid "expected `)'"
msgstr "預期 `)'"
#: parse.y:4054
#: parse.y:4070
#, c-format
msgid "unexpected argument `%s' to conditional unary operator"
msgstr ""
#: parse.y:4058
#: parse.y:4074
msgid "unexpected argument to conditional unary operator"
msgstr ""
#: parse.y:4104
#: parse.y:4120
#, c-format
msgid "unexpected token `%s', conditional binary operator expected"
msgstr ""
#: parse.y:4108
#: parse.y:4124
msgid "conditional binary operator expected"
msgstr ""
#: parse.y:4130
#: parse.y:4146
#, c-format
msgid "unexpected argument `%s' to conditional binary operator"
msgstr ""
#: parse.y:4134
#: parse.y:4150
msgid "unexpected argument to conditional binary operator"
msgstr ""
#: parse.y:4145
#: parse.y:4161
#, c-format
msgid "unexpected token `%c' in conditional command"
msgstr ""
#: parse.y:4148
#: parse.y:4164
#, c-format
msgid "unexpected token `%s' in conditional command"
msgstr ""
#: parse.y:4152
#: parse.y:4168
#, c-format
msgid "unexpected token %d in conditional command"
msgstr ""
#: parse.y:5443
#: parse.y:5459
#, c-format
msgid "syntax error near unexpected token `%s'"
msgstr ""
#: parse.y:5461
#: parse.y:5477
#, c-format
msgid "syntax error near `%s'"
msgstr ""
#: parse.y:5471
#: parse.y:5487
msgid "syntax error: unexpected end of file"
msgstr ""
#: parse.y:5471
#: parse.y:5487
msgid "syntax error"
msgstr "語法錯誤"
#: parse.y:5533
#: parse.y:5549
#, c-format
msgid "Use \"%s\" to leave the shell.\n"
msgstr ""
#: parse.y:5695
#: parse.y:5711
msgid "unexpected EOF while looking for matching `)'"
msgstr ""
@@ -1650,77 +1650,83 @@ msgstr ""
msgid "Unknown Signal #%d"
msgstr ""
#: subst.c:1321 subst.c:1442
#: subst.c:1333 subst.c:1454
#, c-format
msgid "bad substitution: no closing `%s' in %s"
msgstr ""
#: subst.c:2723
#: subst.c:2735
#, c-format
msgid "%s: cannot assign list to array member"
msgstr ""
#: subst.c:4742 subst.c:4758
#: subst.c:4754 subst.c:4770
msgid "cannot make pipe for process substitution"
msgstr ""
#: subst.c:4790
#: subst.c:4802
msgid "cannot make child for process substitution"
msgstr ""
#: subst.c:4835
#: subst.c:4847
#, c-format
msgid "cannot open named pipe %s for reading"
msgstr ""
#: subst.c:4837
#: subst.c:4849
#, c-format
msgid "cannot open named pipe %s for writing"
msgstr ""
#: subst.c:4855
#: subst.c:4867
#, c-format
msgid "cannot duplicate named pipe %s as fd %d"
msgstr ""
#: subst.c:5051
#: subst.c:5063
msgid "cannot make pipe for command substitution"
msgstr ""
#: subst.c:5085
#: subst.c:5097
msgid "cannot make child for command substitution"
msgstr ""
#: subst.c:5102
#: subst.c:5114
msgid "command_substitute: cannot duplicate pipe as fd 1"
msgstr ""
#: subst.c:5605
#: subst.c:5617
#, c-format
msgid "%s: parameter null or not set"
msgstr ""
#: subst.c:5895
#: subst.c:5907
#, c-format
msgid "%s: substring expression < 0"
msgstr ""
#: subst.c:6953
#: subst.c:6965
#, c-format
msgid "%s: bad substitution"
msgstr ""
#: subst.c:7033
#: subst.c:7045
#, c-format
msgid "$%s: cannot assign in this way"
msgstr ""
#: subst.c:7824
#: subst.c:7374
msgid ""
"future versions of the shell will force evaluation as an arithmetic "
"substitution"
msgstr ""
#: subst.c:7839
#, c-format
msgid "bad substitution: no closing \"`\" in %s"
msgstr ""
#: subst.c:8705
#: subst.c:8720
#, c-format
msgid "no match: %s"
msgstr ""
+2
View File
@@ -7370,7 +7370,9 @@ param_expand (string, sindex, quoted, expanded_something,
if (chk_arithsub (temp2, t_index) == 0)
{
free (temp2);
#if 0
internal_warning (_("future versions of the shell will force evaluation as an arithmetic substitution"));
#endif
goto comsub;
}
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File

Some files were not shown because too many files have changed in this diff Show More