package show import ( "github.com/spf13/cobra" ) var ( baseCmd = &cobra.Command{ DisableFlagsInUseLine: true, Use: "show [OPTIONS] OVERLAY_NAME FILE", Short: "Show (cat) a file within a Warewulf Overlay", Long: "This command displays the contents of FILE within OVERLAY_NAME.", RunE: CobraRunE, Aliases: []string{"cat"}, Args: cobra.ExactArgs(2), } ) func init() { } // GetRootCommand returns the root cobra.Command for the application. func GetCommand() *cobra.Command { return baseCmd }