This commit is contained in:
Shreyas Goenka 2023-06-05 17:48:21 +02:00
parent 8b4f22ce95
commit b64b7ab1a7
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import (
)
var rmCmd = &cobra.Command{
Use: "rm DIR_PATH",
Use: "rm PATH",
Short: "Remove files and directories from dbfs.",
Long: `Remove files and directories from dbfs.`,
Args: cobra.ExactArgs(1),
@ -32,6 +32,6 @@ var rmCmd = &cobra.Command{
var recursive bool
func init() {
rmCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Allow deletion of non-empty directories.")
rmCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Recursively delete a non-empty directory.")
fsCmd.AddCommand(rmCmd)
}