Re: Fix for defaults in createuser - Mailing list pgsql-patches

From Bruce Momjian
Subject Re: Fix for defaults in createuser
Date
Msg-id 200101211356.IAA10040@candle.pha.pa.us
Whole thread Raw
In response to Re: Fix for defaults in createuser  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-patches
> Bruce Momjian writes:
>
> > !       if [ $REPLY = "y" -o $REPLY = "Y" ]; then
> >
> > fixed to:
> >
> > !       if [ "$REPLY" = "y" -o "$REPLY" = "Y" ]; then
>
> Good.
>
> FYI, it's never necessary to quote the right side of a shell variable
> assignment.
>
> FOO=$BAR
>
> always works, as does
>
> case $foo in ...
>
> But it doesn't hurt of course.

I see:

    $ X="a b"
    $ Y=$X

I never realized that.  Now I am confused why 'test' needs it, but
assignment doesn't.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

pgsql-patches by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: Fix for defaults in createuser
Next
From: Tom Lane
Date:
Subject: Re: [HACKERS] Re: Patch to support transactions with BLOBs for current CVS