mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-07-13 05:09:09 +00:00
Define filter argument as persistent flag in list
command
This commit is contained in:
parent
4e5983dc43
commit
5ee20771a8
2 changed files with 6 additions and 7 deletions
|
@ -19,6 +19,12 @@ var listCmd = &cobra.Command{
|
|||
func init() {
|
||||
rootCmd.AddCommand(listCmd)
|
||||
listCmd.PersistentFlags().BoolP("json", "j", false, "Output JSON")
|
||||
listCmd.PersistentFlags().String("filter", "",
|
||||
"Define a CEl expression as filter for any list commands. In the expression, all available columns of subcommand can be used (see -c/--column).\n"+
|
||||
"See also CEl specifications under https://github.com/google/cel-spec.\n"+
|
||||
"Examples:\n"+
|
||||
"\t--filter '(Name == \"SomeName\" || matches(Name, \"RegExpr\")) && URI.startsWith(\"https://auth.\")'\n"+
|
||||
"\t--filter 'Username == \"User\" && CreatedTimestamp > timestamp(\"2022-06-10T00:00:00.000-00:00\")'")
|
||||
listCmd.AddCommand(resource.ResourceListCmd)
|
||||
listCmd.AddCommand(folder.FolderListCmd)
|
||||
listCmd.AddCommand(group.GroupListCmd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue