bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Return from function depending on number of parameters


From: Chris Elvidge
Subject: Re: Return from function depending on number of parameters
Date: Sat, 4 Jul 2020 11:39:51 +0100
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 03/07/2020 10:39 pm, Lawrence Velázquez wrote:
On Jul 3, 2020, at 2:00 PM, Chris Elvidge <celvidge001@gmail.com> wrote:

However 'N=0; echo $((!$N))' gives an error at the bash prompt.
'echo $[!$N]' echo's 1 as expected.

My question - is $[...] actually obsolete?

It might tell you something that $[...] is not even mentioned in
the man page for bash 3.2.57, which is decidedly not the current
version.

If so, what should I use at the bash prompt to get the same effect?


I expect that the error you encountered was caused by !$ expanding
to the last word of the previous command and making the contents
of $((...)) an invalid arithmetic expression. This didn't affect
your scripts because history expansion is not enabled in non-interactive
shells by default.

Try inserting a space.

        $ N=0; printf %s\\n "$((! $N))"
        1

You can even drop the $.

        $ N=0; printf %s\\n "$((! N))"
        1

vq



Thanks for the suggestion.

--
Chris Elvidge
England




reply via email to

[Prev in Thread] Current Thread [Next in Thread]