Re: "tee" process being killed

Tim Roberts <[email protected]> Sat, 11 Nov 2017 16:53:21 -0800
Newsgroups gmane.comp.python.cherrypy
Message-ID <[email protected]>
On Nov 11, 2017, at 5:54 AM, Andrew <[email protected]> wrote:
> 
> I am running a cherrypy server like this
> 
> sudo python -u server.py 2>&1 | tee server_log.dat >& /dev/null &

I'm curious to know why you would involve tee, when this equivalent:

    sudo python -u server.py 2>&1 > server_log.dat &
— 
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.

-- 
You received this message because you are subscribed to the Google Groups "cherrypy-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cherrypy-users+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/[email protected]
To post to this group, send email to cherrypy-users-/JYPxA39Uh5TLH3MbocFF+G/[email protected]
Visit this group at https://groups.google.com/group/cherrypy-users.
For more options, visit https://groups.google.com/d/optout.