diff --git a/_articles/miscellaneous/cli.md b/_articles/miscellaneous/cli.md index 53439b61..883d08d3 100644 --- a/_articles/miscellaneous/cli.md +++ b/_articles/miscellaneous/cli.md @@ -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.