We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7e7a6 commit 74678ecCopy full SHA for 74678ec
README.md
@@ -1,5 +1,19 @@
1
# process
2
-
3
-##### process is a simple Go package for finding, starting and working with unix processes.
+process is a simple Go package for working with unix processes.
4
5
For an example into what process is capable of doing, check out gobeat: https://github.com/radovskyb/gobeat.
+
6
+# Features
7
8
+- Find a process by PID.
9
+- Find a process by name.
10
+- Health check a process.
11
+- Start a new process.
12
+- Start a new process in a specified `tty`.
13
+- Other small features plus more to come...
14
15
+# Todo
16
17
+- Add `Kill` method.
18
+- Add `Restart` method.
19
+- Write more tests.
process.go
@@ -1,4 +1,3 @@
-// TODO: Add Process Kill method.
package process
import (
0 commit comments