mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-18 14:01:09 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
25
tldr/makepasswd
Normal file
25
tldr/makepasswd
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# makepasswd
|
||||
|
||||
> Generate and encrypt passwords.
|
||||
> More information: <https://manpages.debian.org/latest/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}}`
|
||||
Reference in New Issue
Block a user