Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
chiefMarlin committed Aug 11, 2023
1 parent 0b13187 commit a90d664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The `pwgen` tool located in cmd/pwgen provided in this project allows you to gen

### Installing pwgen
```bash
curl -L https://github.com/8ff/diceware/releases/download/latest/pwgen.linux.amd64 -o pwgen && chmod +x pwgen
repo="diceware"; name="pwgen"; os=$(uname | tr '[:upper:]' '[:lower:]'); arch=$(uname -m); case $arch in x86_64) arch="amd64" ;; arm64) arch="arm64" ;; esac; url="https://github.com/8ff/${repo}/releases/download/latest/${name}.${os}.${arch}"; curl -L $url -o ${name} && chmod +x ${name}
```

## Generating passwords
Expand Down

0 comments on commit a90d664

Please sign in to comment.