mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-14 00:59:29 +00:00
Update cheatsheets
This commit is contained in:
29
apg
Normal file
29
apg
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# apg
|
||||
|
||||
> Creates arbitrarily complex random passwords.
|
||||
> More information: <https://manned.org/apg>.
|
||||
|
||||
- Create random passwords (default password length is 8):
|
||||
|
||||
`apg`
|
||||
|
||||
- Create a password with at least 1 symbol (S), 1 number (N), 1 uppercase (C), 1 lowercase (L):
|
||||
|
||||
`apg -M SNCL`
|
||||
|
||||
- Create a password with 16 characters:
|
||||
|
||||
`apg -m {{16}}`
|
||||
|
||||
- Create a password with maximum length of 16:
|
||||
|
||||
`apg -x {{16}}`
|
||||
|
||||
- Create a password that doesn't appear in a dictionary (the dictionary file has to be provided):
|
||||
|
||||
`apg -r {{path/to/dictionary_file}}`
|
||||
Reference in New Issue
Block a user