github.com/jfrog/jfrog-cli@v1.54.1/docs/bintray/upload/help.go (about) 1 package upload 2 3 const Description string = "Upload files." 4 5 var Usage = []string{"jfrog bt u [command options] <source path> <target location> [target path]"} 6 7 const Arguments string = ` source path 8 The first argument specifies the local file system path to artifacts which should be uploaded to Bintray. 9 You can specify multiple artifacts by using wildcards or a regular expression as designated by the --regexp command option. 10 If you have specified that you are using regular expressions, then the first one used in the argument must be enclosed in parenthesis. 11 12 target location 13 The second argument specifies the location within Bintray for uploaded file, in the form of subject/repository/package/version. 14 15 target path 16 [Optional] 17 This third optional argument lets you specify a path under the target location to where the files should be uploaded. 18 NOTE: that the path should end with a slash (/) to indicate a directory, otherwise the last element 19 in your path will be interpreted as a file name, and the file you upload will be renamed to that filename. 20 For flexibility in specifying the upload path, you can include placeholders in the form of {1}, {2} etc. 21 which are replaced by corresponding tokens in the source path that are enclosed in parenthesis.`