comparison src/main/kotlin/name/blackcap/passman/HelpSubcommand.kt @ 12:a38a2a1036c3

Add import subcommand.
author David Barts <n5jrn@me.com>
date Sun, 22 Jan 2023 09:22:53 -0800
parents c69665ff37d0
children 302d224bbd57
comparison
equal deleted inserted replaced
11:c69665ff37d0 12:a38a2a1036c3
5 println("PassMan: a password manager") 5 println("PassMan: a password manager")
6 println("Available subcommands:") 6 println("Available subcommands:")
7 println("create Create a new username/password pair.") 7 println("create Create a new username/password pair.")
8 println("delete Delete existing record.") 8 println("delete Delete existing record.")
9 println("help Print this message.") 9 println("help Print this message.")
10 println("import Import from CSV file.")
10 println("list List records.") 11 println("list List records.")
11 println("merge Merge passwords in from another PassMan database.") 12 println("merge Merge passwords in from another PassMan database.")
12 println("read Retrieve data from existing record.") 13 println("read Retrieve data from existing record.")
13 println("rename Rename existing record.") 14 println("rename Rename existing record.")
14 println("update Update existing record.") 15 println("update Update existing record.")