Files
cheatsheet-tldr/tldr/pwgen

22 lines
416 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pwgen
> Generate pronounceable passwords.
> More information: <https://github.com/tytso/pwgen>.
- Generate random password with s[y]mbols:
`pwgen -y {{length}}`
- Generate secure, hard-to-memorize passwords:
`pwgen -s {{length}}`
- Generate password with at least one capital letter in them:
`pwgen -c {{length}}`