diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-11-09 09:49:02 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-11-09 09:49:02 +0100 |
commit | 9a08dec095725012546ea93ac07142a570d1b220 (patch) | |
tree | b33557ad90ae94adb7d2e24dad1c45387910c18b /README.md | |
parent | c39913911b6c357ca9882d37b54db8daa23a5383 (diff) | |
download | jotpass-c0b035a339e971595bd70dfd884fa8b6c7b8f5ca.tar |
Port to GNU/Linuxjotpass-0.2.0
Tested on Void Linux x86_64 glibc.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 21 |
1 files changed, 18 insertions, 3 deletions
@@ -1,7 +1,7 @@ # Jotpass -Jotpass is a BSD utility that facilitates generating random passwords suitable -for handwriting. See [this][intro] blog post for an introduction. +The `jotpass` utility facilitates generating random passwords suitable for +handwriting. See [this][intro] blog post for an introduction. [intro]: https://www.skreutz.com/posts/readable-random-passwords-with-jot/ @@ -14,6 +14,21 @@ Print a random password: See the manual page for details. +## Dependencies + +The `jotpass` utility depends on `ksh(1)`, `jot(1)`, and some base utilities +like `sed(1)`. + +On OpenBSD these are included in the default base installation. + +On Void Linux you can install the dependencies using `xbps-install(1)`: +follows: + + $ sudo xbps-install -S oksh outils coreutils bc sed + ## Installation -Run `make install` as root to install the `jotpass` utility and man page. + $ ./configure + $ make + $ sudo make install + |