I'm new to Linux and have inherited keeping our single linux server running. It's our SVN server so it's relatively important.
Turns out the guy who maintained it before me had a cron task to email him when there are too many svnserve processes running, as they seem to be left dangling instead of terminating correctly.
First part of the question is, given that I run
ps -fu cvsuser
and get a list of the processes, how can I kill the ones that have an STIME not today? For example, something like
kill where STIME = Oct30
The other question is, does anyone know how to avoid having these dangling svnserve processes? (Here's the other question.)