mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 02:43:45 +00:00
22 lines
458 B
Plaintext
22 lines
458 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pwgen
|
|
|
|
> Generate pronounceable passwords.
|
|
> More information: <https://manned.org/pwgen>.
|
|
|
|
- Generate random password with symbols:
|
|
|
|
`pwgen {{[-y|--symbols]}} {{length}}`
|
|
|
|
- Generate secure, hard-to-memorize passwords:
|
|
|
|
`pwgen {{[-s|--secure]}} {{length}}`
|
|
|
|
- Generate password with at least one capital letter in them:
|
|
|
|
`pwgen {{[-c|--capitalize]}} {{length}}`
|