Bob Crandell wrote:

> This line is at the top of /etc/inetd.conf:
> "To re-configure the running INETD process, edit this file, then
> send the INETD process a SIGHUP signal."
> 
> How do you send the inetd process a SIGHUP signal from the
> command line?  Man inetd doesn't mention it.
> Is it done differently from different distributions?

Others have discussed "ps ax ; kill -HUP 234" (and discussed it to
death, and made bad puns).

The easier, all at once way is to use killall.

        # killall -HUP inetd

killall finds the process named inetd and sends it a SIGHUP.

-- 
                                        K<bob>
[EMAIL PROTECTED], http://www.jogger-egg.com/

Reply via email to