feat(lss): adds --no-header and --short flags, and lowercases all flag descriptions
This commit is contained in:
parent
4e5064d07a
commit
15c1d6733c
22 changed files with 161 additions and 84 deletions
|
|
@ -121,9 +121,9 @@ func mvStore(cmd *cobra.Command, args []string) error {
|
|||
}
|
||||
|
||||
func init() {
|
||||
mvStoreCmd.Flags().Bool("copy", false, "Copy instead of move (keeps source)")
|
||||
mvStoreCmd.Flags().BoolP("interactive", "i", false, "Prompt before overwriting destination")
|
||||
mvStoreCmd.Flags().BoolP("yes", "y", false, "Skip all confirmation prompts")
|
||||
mvStoreCmd.Flags().Bool("safe", false, "Do not overwrite if the destination store already exists")
|
||||
mvStoreCmd.Flags().Bool("copy", false, "copy instead of move (keeps source)")
|
||||
mvStoreCmd.Flags().BoolP("interactive", "i", false, "prompt before overwriting destination")
|
||||
mvStoreCmd.Flags().BoolP("yes", "y", false, "skip all confirmation prompts")
|
||||
mvStoreCmd.Flags().Bool("safe", false, "do not overwrite if the destination store already exists")
|
||||
rootCmd.AddCommand(mvStoreCmd)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue