1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# Overview
Shoutrrr can be used via the CLI to both generate and verify service notification URL's, in addition to sending notifications.
```bash title="Shoutrrr run without arguments"
shoutrrr
```
```text title="Expected Output"
Shoutrrr CLI
Usage:
shoutrrr [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
docs Print documentation for services
generate Generates a notification service URL from user input
help Help about any command
send Send a notification using a service url
verify Verify the validity of a notification service URL
Flags:
-h, --help help for shoutrrr
-v, --version version for shoutrrr
Use "shoutrrr [command] --help" for more information about a command.
```
|