Update cp help message to not require file scheme (#554)

## Tests
Manually

---------

Co-authored-by: Pieter Noordhuis <pieter.noordhuis@databricks.com>
This commit is contained in:
shreyas-goenka 2023-07-06 13:16:14 +02:00 committed by GitHub
parent 8eccc3442f
commit 6f023f46d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -132,8 +132,8 @@ var cpCmd = &cobra.Command{
Short: "Copy files and directories to and from DBFS.", Short: "Copy files and directories to and from DBFS.",
Long: `Copy files to and from DBFS. Long: `Copy files to and from DBFS.
It is required that you specify the scheme "file" for local files and For paths in DBFS it is required that you specify the "dbfs" scheme.
"dbfs" for dbfs files. For example: file:/foo/bar, file:/c:/foo/bar or dbfs:/foo/bar. For example: dbfs:/foo/bar.
Recursively copying a directory will copy all files inside directory Recursively copying a directory will copy all files inside directory
at SOURCE_PATH to the directory at TARGET_PATH. at SOURCE_PATH to the directory at TARGET_PATH.