On Mon, 24 Feb 2014, tclug at freakzilla.com wrote:

> Might want to throw a --quiet at that zip command, too. Just for kicks.
>
>> After all I wrote earlier, I forgot my zero option!  It should have
>> been:
>> 
>> zip -0r "$DIR".zip "$DIR" &>/dev/null

That's a good tip.  So I can drop the &>/dev/null and go with the -q:

zip -q0r "$DIR".zip "$DIR"

Or maybe I should retain the &>/dev/null to catch stderr, but the thing 
is, the way this will be used, I don't know what happens with stderr when 
Apache is running a cgi-bin script.  Is it logged somewhere?

Mike