github.com/xhghs/rclone@v1.51.1-0.20200430155106-e186a28cced8/docs/content/commands/rclone_copyurl.md (about) 1 --- 2 date: 2020-02-01T10:26:53Z 3 title: "rclone copyurl" 4 slug: rclone_copyurl 5 url: /commands/rclone_copyurl/ 6 --- 7 ## rclone copyurl 8 9 Copy url content to dest. 10 11 ### Synopsis 12 13 14 Download a URL's content and copy it to the destination without saving 15 it in temporary storage. 16 17 Setting --auto-filename will cause the file name to be retreived from 18 the from URL (after any redirections) and used in the destination 19 path. 20 21 Setting --stdout or making the output file name "-" will cause the 22 output to be written to standard output. 23 24 25 ``` 26 rclone copyurl https://example.com dest:path [flags] 27 ``` 28 29 ### Options 30 31 ``` 32 -a, --auto-filename Get the file name from the URL and use it for destination file path 33 -h, --help help for copyurl 34 --stdout Write the output to stdout rather than a file 35 ``` 36 37 See the [global flags page](/flags/) for global options not listed here. 38 39 ### SEE ALSO 40 41 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 42