github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/docs/content/commands/rclone_copyurl.md (about) 1 --- 2 title: "rclone copyurl" 3 description: "Copy url content to dest." 4 slug: rclone_copyurl 5 url: /commands/rclone_copyurl/ 6 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyurl/ and as part of making a release run "make commanddocs" 7 --- 8 # rclone copyurl 9 10 Copy url content to dest. 11 12 ## Synopsis 13 14 15 Download a URL's content and copy it to the destination without saving 16 it in temporary storage. 17 18 Setting --auto-filename will cause the file name to be retrieved from 19 the from URL (after any redirections) and used in the destination 20 path. 21 22 Setting --no-clobber will prevent overwriting file on the 23 destination if there is one with the same name. 24 25 Setting --stdout or making the output file name "-" will cause the 26 output to be written to standard output. 27 28 29 ``` 30 rclone copyurl https://example.com dest:path [flags] 31 ``` 32 33 ## Options 34 35 ``` 36 -a, --auto-filename Get the file name from the URL and use it for destination file path 37 -h, --help help for copyurl 38 --no-clobber Prevent overwriting file with same name 39 --stdout Write the output to stdout rather than a file 40 ``` 41 42 See the [global flags page](/flags/) for global options not listed here. 43 44 ## SEE ALSO 45 46 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 47