https://github.com/mmattozzi/randpass
Command line utility to quickly generate a passwordy type of string
https://github.com/mmattozzi/randpass
Last synced: 3 months ago
JSON representation
Command line utility to quickly generate a passwordy type of string
- Host: GitHub
- URL: https://github.com/mmattozzi/randpass
- Owner: mmattozzi
- License: apache-2.0
- Created: 2023-03-12T20:39:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-19T21:52:21.000Z (about 2 years ago)
- Last Synced: 2025-01-28T18:46:12.106Z (4 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```
randpassGenerates a random, password-like string. This uses the MersenneTwister19937
algorithm, re-seeded each time the program runs.Options
-l, --length number Length of password
-a, --alphanumeric-only Only use alphanumeric characters
-h, --help Display this usage guide.Examples
Random string randpass
Random string of length 16 randpass -l 16
Random string of alphanumerics randpass -a
```