On Wed, 8 Oct 2014 17:23:36 -0500
Duane Hill wrote:

> No.  &&  is  a  way  of chaining commands together. 
 
&& is a logical AND

> Your cron says run
> sa-update  and  then  restart  spamd.  In  other words, when sa-update
> finishes  running,  regardless  if there was an update applied or not,
> restart spamd.

No, it's conditional.

A && B has  a logical  value, if A is false then A && B can't possibly
be true so B isn't evaluated, this is called short-circuiting. 

Reply via email to