You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/enpasscli/main.go
+77Lines changed: 77 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ type Args struct {
68
68
pinEnable*bool
69
69
sort*bool
70
70
trashed*bool
71
+
detailed*bool
71
72
and*bool
72
73
clipboardPrimary*bool
73
74
// write command flags
@@ -91,6 +92,7 @@ func (args *Args) parse() {
91
92
args.and=flag.Bool("and", false, "Combines filters with AND instead of default OR.")
92
93
args.sort=flag.Bool("sort", false, "Sort the output by title and username of the 'list' and 'show' command.")
93
94
args.trashed=flag.Bool("trashed", false, "Show trashed items in the 'list' and 'show' command.")
95
+
args.detailed=flag.Bool("detailed", false, "Show every field of each entry in 'list' and 'show'. Without this flag, only the original summary fields (title, login, category, label, type) are displayed.")
94
96
args.clipboardPrimary=flag.Bool("clipboardPrimary", false, "Use primary X selection instead of clipboard for the 'copy' command.")
95
97
// write command flags
96
98
args.title=flag.String("title", "", "Entry title (for create/edit).")
0 commit comments