Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
verzac committed Jan 30, 2024
1 parent fb89f31 commit dd35014
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/cmd_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ func NewRunCmd() *cobra.Command {
return &cobra.Command{
Use: "run",
Aliases: []string{"r"},
Args: cobra.MinimumNArgs(1),
Short: "Runs arbitrary shell commands through n-cli.",
Long: "Runs arbitrary shell commands. For example, `n-cli run echo Hello, world!` If you'd like to pass in flags to your shell command, use `n-cli run mycommand -- --flag1=true --flag2`.",
Run: func(cobraCmd *cobra.Command, args []string) {
command := args[0]
commandArgs := args[1:]
Expand Down

0 comments on commit dd35014

Please sign in to comment.