Mercurial > cgi-bin > hgweb.cgi > PassMan
view src/main/kotlin/name/blackcap/passman/HelpSubcommand.kt @ 13:302d224bbd57
Improve help messages and csv error reportage.
author | David Barts <n5jrn@me.com> |
---|---|
date | Tue, 24 Jan 2023 20:13:13 -0800 |
parents | a38a2a1036c3 |
children | 0fc90892a3ae |
line wrap: on
line source
package name.blackcap.passman class HelpSubcommand(): Subcommand() { override fun run(args: Array<String>) { println("PassMan: a password manager") println("Available subcommands:") println("create Create a new username/password pair.") println("delete Delete existing record.") println("help Print this message.") println("import Import from CSV file.") println("list List records.") println("merge Merge passwords in from another PassMan database.") println("read Retrieve data from existing record.") println("rename Rename existing record.") println("update Update existing record.") println() println("Database is $DB_FILE .") } }