github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/cmd/orbctl/file.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  func FileCommand() *cobra.Command {
     8  
     9  	return &cobra.Command{
    10  		Use:     "file <path> [command]",
    11  		Short:   "Work with an orbs remote repository file",
    12  		Example: `orbctl file <print|patch|edit|overwrite> orbiter.yml `,
    13  	}
    14  }