1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/common/makepasswd.md
2019-11-14 23:02:50 +01:00

20 lines
513 B
Markdown

# makepasswd
> Generate and encrypt passwords.
> More information: <https://manpages.debian.org/stretch/makepasswd/makepasswd.1.en.html>.
- 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}}`
- Generate a password containing only the characters "b", "a" or "r":
`makepasswd --string {{bar}}`