Skip to content

pigYDoe/password-generator-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚿ password-generator-cli

License: MIT

It's a command-line program designed to create strong, customizable passwords, enhancing account security. With options for password length and character exclusion.

Usage

pwgen.exe [options]

Options:

-L password lenght (default 7)

-d exclude digits

-lc exclude lowercase letters

-sc exclude special characters

-uc exclude uppercase letters

How to compile statically?

Windows:

$env:CGO_ENABLED = "0"
$env:GOOS = "windows"
$env:GOARCH = "amd64"

go build -a -ldflags '-extldflags "-static"' -o output_binary_name.exe your_main_package.go

Linux:

export CGO_ENABLED=0
export GOOS=linux
export GOARCH=amd64

go build -a -ldflags '-extldflags "-static"' -o output_binary_name your_main_package.go

About

generate passowords in your terminal

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages