commit f49456a

Emilia Smólska  ·  2026-08-01 01:01:06 +0000 UTC
parent de17a55
Praise be Shrub
2 files changed,  +41, -24
D README
D README
+0, -24
 1@@ -1,24 +0,0 @@
 2-Haslo is a simple password manager.
 3-
 4-Dependencies:
 5-- Perl,
 6-- The Perl modules MIME::Base32, MIME::Base64 and Term::ReadKey (some may already be included in your system's Perl distribution),
 7-- RNP.
 8-
 9-Installation:
10-Run make install.
11-
12-Usage:
13-See haslo(1).
14-
15-Ksh(1) completion example:
16-set -A complete_haslo_1 -- del gen get put list
17-set -A complete_haslo_2 -- $(haslo list)
18-
19-Fish(1) completion example:
20-complete -c haslo -f
21-complete -c haslo -n 'not __fish_seen_subcommand_from del gen get put list' -a 'gen get put list'
22-complete -c haslo -n '__fish_seen_subcommand_from get del' -a "$(haslo list)"
23-
24-License:
25-Haslo is public domain software.
+41, -0
 1@@ -0,0 +1,41 @@
 2+.Dd $Mdocdate$
 3+.Dt README 7
 4+.Os
 5+.Sh NAME
 6+.Nm haslo
 7+.Nd a simple password manager
 8+.Sh DEPENDENCIES
 9+.Bl -dash -compact
10+.It
11+Perl
12+.It
13+The Perl modules MIME::Base32, MIME::Base64, and Term::ReadKey (some might
14+already be included in your system's Perl distribution)
15+.It
16+RNP
17+.Sh INSTALLATION
18+Run
19+.Ql make install .
20+.Sh USAGE
21+See
22+.Xr haslo 1 .
23+.Sh SHELL COMPLETION
24+For
25+.Xr ksh 1 :
26+.Bd -literal -offset indent -compact
27+set -A complete_haslo_1 -- del gen get put list
28+set -A complete_haslo_2 -- $(haslo list)
29+.Ed
30+For
31+.Xr fish 1 :
32+.Bd -literal -offset indent -compact
33+complete -c haslo -f
34+complete -c haslo -n 'not __fish_seen_subcommand_from del gen get put list' \
35+-a 'gen get put list'
36+complete -c haslo -n '__fish_seen_subcommand_from get del' -a "$(haslo list)"
37+.Ed
38+.Sh LICENSE
39+.Nm
40+is public domain software.
41+.Sh AUTHORS
42+.An Emilia Smólska Aq Mt emilia@hopeserv.net