When scripting, which is better? - Mailing list pgsql-hackers

From Justin Clift
Subject When scripting, which is better?
Date
Msg-id 3BB871A1.948C5AA1@postgresql.org
Whole thread Raw
Responses Re: When scripting, which is better?
Re: When scripting, which is better?
Re: When scripting, which is better?
List pgsql-hackers
Hi all,

Reading through the script files again, there seems to be several
different methods of doing the same thing :

i.e.  if [ -x "$self_path/postmaster" ] && [ -x "$self_path/psql" ];
then

or

if [[ -x "$self_path/postmaster" && -x "$self_path/psql" ]]; then




if [ x"$foo" = x"" ]; then

or

if [ "$op" = "" ]; then

or

if [ "$foo" ]; then


-- 
"My grandfather once told me that there are two kinds of people: those
who work and those who take the credit. He told me to try to be in the
first group; there was less competition there."    - Indira Gandhi



pgsql-hackers by date:

Previous
From: Oleg Bartunov
Date:
Subject: cvs problem
Next
From: "Marc G. Fournier"
Date:
Subject: Re: Preparation for Beta