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 f2ade8e commit 31449bdCopy full SHA for 31449bd
1 file changed
src/readme.md
@@ -3,7 +3,21 @@
3
A dotnet global tool that gracefully stops processes by sending them SIGINT (Ctrl+C) in a cross platform way.
4
5
``` bash
6
-dnx stop
+dnx stop <processId> [--timeout <milliseconds>] [--quiet]
7
+```
8
+
9
+<!-- src/help.md -->
10
+```shell
11
+Usage: [arguments...] [options...] [-h|--help] [--version]
12
13
+Sends the SIGINT (Ctrl+C) signal to a process to gracefully stop it.
14
15
+Arguments:
16
+ [0] <int> ID of the process to stop.
17
18
+Options:
19
+ -t, --timeout <int?> Optional timeout in milliseconds to wait for the process to exit.
20
+ -q, --quiet Do not display any output.
21
```
22
23
<!-- src/help.md -->
0 commit comments