Skip to content

A simple password generator for the command line written in Swift

Notifications You must be signed in to change notification settings

3vincent/pwgenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pwgenerator

OVERVIEW: Generates a random Password

USAGE: pw-generator [] [-u] [-s] [-n]

ARGUMENTS: Specified length (default: 8)

OPTIONS: -u Include uppercase letters -s Include special characters -n Include numbers --version Show the version. -h, --help Show help information.

Compiling binary during development

While developing run the application with

$ swift run 

or

$ swift run pwgenerator <Arguments>

Example (in development)]

$ swift run pwgenerator 32 -usn

Build release version

$ swift build --configuration release

Copy the file from .build to e.g. /usr/local/bin

$ cp -f .build/release/pwgenerator /usr/local/bin/pwgenerator

Initial setup

Initial command line tool boilerplate for Xcode/swift was created with:

$ swift package init --type executable
$ git init && git add -A && git commit -m "Initial commit"

About

A simple password generator for the command line written in Swift

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages