github.com/jfrog/jfrog-cli-go@v1.22.1-0.20200318093948-4826ef344ffd/docs/artifactory/move/help.go (about)

     1  package move
     2  
     3  const Description = "Move files."
     4  
     5  var Usage = []string{"jfrog rt mv [command options] <source pattern> <target pattern>",
     6  	"jfrog rt mv --spec=<File Spec path> [command options]"}
     7  
     8  const Arguments string = `	source pattern
     9  		Specifies the source path in Artifactory, from which the artifacts should be moved,
    10  		in the following format: <repository name>/<repository path>. You can use wildcards to specify multiple artifacts.
    11  
    12  	target pattern
    13  		Specifies the target path in Artifactory, to which the artifacts should be moved, in the following format: <repository name>/<repository path>.
    14  		If the pattern ends with a slash, the target path is assumed to be a folder. For example, if you specify the target as "repo-name/a/b/",
    15  		then "b" is assumed to be a folder in Artifactory into which files should be moved.
    16  		If there is no terminal slash, the target path is assumed to be a file to which the moved file should be renamed.
    17  		For example, if you specify the target as "repo-name/a/b", the moved file is renamed to "b" in Artifactory.
    18  		For flexibility in specifying the upload path, you can include placeholders in the form of {1}, {2} which are replaced by corresponding
    19  		tokens in the source path that are enclosed in parenthesis.`