Stephane Chazelas <[EMAIL PROTECTED]> writes:

> The behavior is the same in ksh, but in ksh ${@:0:1} expands to
> $0 which makes it more understandable ($0 has its meaning in
> functions as well in ksh which makes it somehow consistent).
>
> In bash, ${@:0:1} and ${@:1:1} expand to the same thing ($1). Is
> all that documented (I couldn't find it via a quick scan of the
> man page)?

$@ expands to the positional parameters, which $0 is not (it is a
special parameter).  Since index 0 does not exist, $1 is the first
counted parameter in the expansion.

Andreas.

-- 
Andreas Schwab, SuSE Labs, [EMAIL PROTECTED]
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Reply via email to