Minor fixes in readme and clap help
This commit is contained in:
parent
f726083759
commit
8d127d840e
2 changed files with 5 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
|||
# mqrs
|
||||
`mqrs` is a small cli application to handle POSIX message queues.
|
||||
`mqrs` is a small cli application to handle different kinds of message
|
||||
queues.
|
||||
|
||||
## Install `mqrs`
|
||||
For information about how to build, install and run `mqrs` please see
|
||||
|
@ -8,8 +9,8 @@ For information about how to build, install and run `mqrs` please see
|
|||
## Using `mqrs`
|
||||
Depending on which backend you want to use there are different subsets
|
||||
of subcommands. Following backends are supported:
|
||||
- `posix`: Uses POSIX message queues
|
||||
- `sysv`: Uses SysV IPC message queues
|
||||
- `posix`: Use POSIX message queues
|
||||
- `sysv`: Use SysV IPC message queues
|
||||
|
||||
If a command is clearly distinguishable from all the others,
|
||||
it does not have to be completed further.
|
||||
|
|
|
@ -4,7 +4,7 @@ use clap::Clap;
|
|||
use log::warn;
|
||||
use std::{fs, os::unix::fs::PermissionsExt};
|
||||
|
||||
/// Print information about an existing message queue
|
||||
/// Print a list of existing message queues
|
||||
#[derive(Clap, Debug)]
|
||||
pub struct List {
|
||||
/// Show all parameters
|
||||
|
|
Loading…
Reference in a new issue