Update usage strings

This commit is contained in:
Tim Van Baak 2025-03-07 11:16:53 -08:00
parent 17cd8a0db7
commit 6683876d25
9 changed files with 26 additions and 18 deletions

View File

@ -11,7 +11,7 @@ import (
) )
var actionCmd = &cobra.Command{ var actionCmd = &cobra.Command{
Use: "action", Use: "action --source name --action name {--item id | -- [argv]}",
GroupID: sourceGroup.ID, GroupID: sourceGroup.ID,
Short: "Manage and run source actions", Short: "Manage and run source actions",
Long: fmt.Sprintf(`Manage and run source actions on items. Long: fmt.Sprintf(`Manage and run source actions on items.
@ -51,6 +51,7 @@ In a dry run, the item will be printed in the chosen format and not updated.
boolArg(cmd, "force"), boolArg(cmd, "force"),
) )
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -8,7 +8,7 @@ import (
) )
var envCmd = &cobra.Command{ var envCmd = &cobra.Command{
Use: "env", Use: "env --source name --env NAME=VALUE [--env NAME=VALUE ...]",
GroupID: sourceGroup.ID, GroupID: sourceGroup.ID,
Short: "Manage source environment variables", Short: "Manage source environment variables",
Long: `Add, edit, list, or delete environment variables. Long: `Add, edit, list, or delete environment variables.
@ -21,6 +21,7 @@ action executions.
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
sourceEnv(stringArg(cmd, "source"), stringArrayArg(cmd, "env")) sourceEnv(stringArg(cmd, "source"), stringArrayArg(cmd, "env"))
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -9,7 +9,7 @@ import (
) )
var feedCmd = &cobra.Command{ var feedCmd = &cobra.Command{
Use: "feed", Use: "feed [{--source name | --channel name}] [--all]",
GroupID: feedGroup.ID, GroupID: feedGroup.ID,
Short: "Display the item feed", Short: "Display the item feed",
Long: fmt.Sprintf(`Display the intake item feed in various formats. Long: fmt.Sprintf(`Display the intake item feed in various formats.
@ -24,6 +24,7 @@ The default format is "headlines".
boolArg(cmd, "all"), boolArg(cmd, "all"),
) )
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -11,7 +11,7 @@ import (
) )
var listCmd = &cobra.Command{ var listCmd = &cobra.Command{
Use: "list", Use: "list {--sources | --channels | --channel name | --source name --actions | --source name --envs | --source name --argv action}",
GroupID: sourceGroup.ID, GroupID: sourceGroup.ID,
Aliases: []string{"ls"}, Aliases: []string{"ls"},
Short: "List sources, channels, or actions", Short: "List sources, channels, or actions",
@ -29,6 +29,7 @@ var listCmd = &cobra.Command{
stringArg(cmd, "source"), stringArg(cmd, "source"),
) )
}, },
DisableFlagsInUseLine: true,
} }
type OptString struct { type OptString struct {

View File

@ -10,7 +10,7 @@ import (
) )
var migrateCmd = &cobra.Command{ var migrateCmd = &cobra.Command{
Use: "migrate", Use: "migrate [--list]",
Short: "Migrate an intake database to the latest version", Short: "Migrate an intake database to the latest version",
Long: `Migrate an intake database to the latest version. Long: `Migrate an intake database to the latest version.
@ -18,6 +18,7 @@ Note that the database will be created if it does not exist, even with --list.`,
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
migrate(boolArg(cmd, "list")) migrate(boolArg(cmd, "list"))
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -22,8 +22,7 @@ their INTAKE_FETCH environment variables. A schedule may be:
- "on DOW[,DOW[...]] [at ...]", where DOW is an abbreviated weekday - "on DOW[,DOW[...]] [at ...]", where DOW is an abbreviated weekday
- "on M/D[,M/D[...]] [at ...]", where M/D is a month and day - "on M/D[,M/D[...]] [at ...]", where M/D is a month and day
`, `,
Example: ` Example: ` every 5m Every 5 minutes (00:00, 00:05, ...)
every 5m Every 5 minutes (00:00, 00:05, ...)
every 1d Once per day (at midnight) every 1d Once per day (at midnight)
every 7d Once per week (at midnight Sunday) every 7d Once per week (at midnight Sunday)
at 08:00 Once per day at 08:00 at 08:00 Once per day at 08:00
@ -36,6 +35,7 @@ on */7 Each month on the 7th
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
monitor() monitor()
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -11,7 +11,7 @@ import (
) )
var passwdCmd = &cobra.Command{ var passwdCmd = &cobra.Command{
Use: "passwd", Use: "passwd [--verify] [--stdin]",
GroupID: webGroup.ID, GroupID: webGroup.ID,
Short: "Set the password for the web interface", Short: "Set the password for the web interface",
Long: `Set the password for the web interface. Long: `Set the password for the web interface.
@ -25,6 +25,7 @@ the --stdin flag.
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
passwd(boolArg(cmd, "verify"), boolArg(cmd, "stdin")) passwd(boolArg(cmd, "verify"), boolArg(cmd, "stdin"))
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -11,7 +11,7 @@ import (
) )
var serveCmd = &cobra.Command{ var serveCmd = &cobra.Command{
Use: "serve", Use: "serve [--addr address] [--port port]",
GroupID: webGroup.ID, GroupID: webGroup.ID,
Short: "Serve the web interface", Short: "Serve the web interface",
Long: `Serve the intake web interface. Long: `Serve the intake web interface.
@ -19,6 +19,7 @@ var serveCmd = &cobra.Command{
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
serve(stringArg(cmd, "addr"), stringArg(cmd, "port")) serve(stringArg(cmd, "addr"), stringArg(cmd, "port"))
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {

View File

@ -10,7 +10,7 @@ import (
) )
var sourceCmd = &cobra.Command{ var sourceCmd = &cobra.Command{
Use: "source", Use: "source {--add name | --delete name [--yes]}",
GroupID: sourceGroup.ID, GroupID: sourceGroup.ID,
Short: "Manage sources", Short: "Manage sources",
Long: `Manage sources. Long: `Manage sources.
@ -22,6 +22,7 @@ update the feed.
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
source(stringArg(cmd, "add"), stringArg(cmd, "delete"), boolArg(cmd, "yes")) source(stringArg(cmd, "add"), stringArg(cmd, "delete"), boolArg(cmd, "yes"))
}, },
DisableFlagsInUseLine: true,
} }
func init() { func init() {