diff options
| author | Michael Klishin <michael@novemberain.com> | 2018-12-07 22:16:42 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-07 22:16:42 +0300 |
| commit | b26b353cd4e654846e4ac8f3e2eebcbdd856bb54 (patch) | |
| tree | b371427161eb44be2dbbf237964b439b2abbd3ec | |
| parent | ace9df7d26eb639922e5a5c4f1a91563509d5552 (diff) | |
| parent | 50dc4ec55c55190703a1b240eb82fa9a87e1d421 (diff) | |
| download | rabbitmq-server-git-b26b353cd4e654846e4ac8f3e2eebcbdd856bb54.tar.gz | |
Merge pull request #1795 from rabbitmq/rabbitmq-website-633
Document new cli switches
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | docs/rabbitmq-server.8 | 2 | ||||
| -rw-r--r-- | docs/rabbitmqctl.8 | 5 |
3 files changed, 7 insertions, 1 deletions
@@ -268,6 +268,7 @@ web-manpages: $(WEB_MANPAGES) gsub(/<h1/, "<h2", line); \ gsub(/<\/h1>/, "</h2>", line); \ gsub(/class="D1"/, "class=\"D1 sourcecode bash hljs\"", line); \ + gsub(/class="Bd Bd-indent"/, "class=\"Bd Bd-indent sourcecode bash hljs\"", line); \ print line; \ } } \ ' > "$@" diff --git a/docs/rabbitmq-server.8 b/docs/rabbitmq-server.8 index 84772aa042..4c469d25d0 100644 --- a/docs/rabbitmq-server.8 +++ b/docs/rabbitmq-server.8 @@ -74,7 +74,7 @@ Defaults to 5672. .Sh OPTIONS .\" ------------------------------------------------------------------ .Bl -tag -width Ds -.It Fl -detached +.It Fl detached Start the server process in the background. Note that this will cause the pid not to be written to the pid file. .Pp diff --git a/docs/rabbitmqctl.8 b/docs/rabbitmqctl.8 index c99170d175..524da897d1 100644 --- a/docs/rabbitmqctl.8 +++ b/docs/rabbitmqctl.8 @@ -73,6 +73,11 @@ for details of configuring the RabbitMQ broker. .It Fl q , -quiet Quiet output mode is selected. Informational messages are suppressed when quiet mode is in effect. +.It Fl s , -silent +Silent output mode is selected. +Informational messages and table headers are suppressed when silent mode is in effect. +.It Fl -no-table-headers +Do not output headers for tabular data. .It Fl -dry-run Do not run the command. Only print information message. |
