1
0
mirror of https://github.com/bitwarden/help synced 2026-01-06 02:23:22 +00:00

document generate command

This commit is contained in:
Kyle Spearrin
2018-05-18 11:40:24 -04:00
parent 499e45ec93
commit 96d1f4768a

View File

@@ -38,6 +38,7 @@ Bitwarden provides a powerful, full-featured command-line interface (CLI) tool t
- [Delete](#delete)
- [Other Useful Commands](#other-useful-commands)
- [Export](#export)
- [Generate](#generate)
- [Encode](#encode)
- [Config](#config)
- [Update](#update)
@@ -248,6 +249,19 @@ bw export
bw export myPassword321 --output ./backups/
```
### Generate
The `generate` command allows you to generate strong passwords.
```
bw generate [--lowercase --uppercase --number --special --length]
```
```
bw generate
bw generate -u -l --length 18
bw generate -ulns --length 25
```
### Encode
The `encode` command Base 64 encodes stdin. This command is a helpful utility when performing `create` and `update` operations.