2025-03-14 21:59:59 -06:00
|
|
|
# makepasswd
|
|
|
|
|
|
|
|
|
|
> Generate and encrypt passwords.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://manned.org/makepasswd>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Generate a random password (8 to 10 characters long, containing letters and numbers):
|
|
|
|
|
|
|
|
|
|
`makepasswd`
|
|
|
|
|
|
|
|
|
|
- Generate a 10 characters long password:
|
|
|
|
|
|
|
|
|
|
`makepasswd --chars {{10}}`
|
|
|
|
|
|
|
|
|
|
- Generate a 5 to 10 characters long password:
|
|
|
|
|
|
|
|
|
|
`makepasswd --minchars {{5}} --maxchars {{10}}`
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- Generate a password containing only the characters "b", "a", or "r":
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
`makepasswd --string {{bar}}`
|