[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: spaces in $0
From: |
Ralf Wildenhues |
Subject: |
Re: spaces in $0 |
Date: |
Mon, 20 Mar 2006 20:29:48 +0100 |
User-agent: |
Mutt/1.5.9i |
Hi Paul,
* Paul Eggert wrote on Mon, Mar 20, 2006 at 07:47:57PM CET:
> Ralf Wildenhues <address@hidden> writes:
>
> > - ' <$as_myself |
> > + ' <"$as_myself" |
> > ...
> > - ' >$as_me.lineno &&
> > + ' >"$as_me.lineno" &&
>
> These two changes aren't needed, since word splitting has never been
> done on the targets of I/O redirection.
I don't understand:
$ foo='bar baz'
$ touch "$foo"
$ cat <$foo
bash: $foo: ambiguous redirect
$ cat <"$foo"
$ echo $BASH_VERSION
2.05b.0(1)-release
> Other than that, please install, and thanks.
Thanks for the review! It just looks to me like above would be needed.
Cheers,
Ralf