2018-09-01 11:58:00 +00:00
|
|
|
---
|
2020-05-22 11:22:52 +00:00
|
|
|
date: 2020-05-22T15:09:46+01:00
|
2018-09-01 11:58:00 +00:00
|
|
|
title: "rclone copyurl"
|
2020-05-16 14:11:55 +00:00
|
|
|
description: "Copy url content to dest."
|
2018-09-01 11:58:00 +00:00
|
|
|
slug: rclone_copyurl
|
|
|
|
url: /commands/rclone_copyurl/
|
2020-02-10 12:31:45 +00:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyurl/ and as part of making a release run "make commanddocs"
|
2018-09-01 11:58:00 +00:00
|
|
|
---
|
2020-05-22 10:17:37 +00:00
|
|
|
# rclone copyurl
|
2018-09-01 11:58:00 +00:00
|
|
|
|
|
|
|
Copy url content to dest.
|
|
|
|
|
2020-05-22 10:17:37 +00:00
|
|
|
## Synopsis
|
2018-09-01 11:58:00 +00:00
|
|
|
|
|
|
|
|
2020-02-01 10:31:42 +00:00
|
|
|
Download a URL's content and copy it to the destination without saving
|
|
|
|
it in temporary storage.
|
2018-09-01 11:58:00 +00:00
|
|
|
|
2020-02-01 10:31:42 +00:00
|
|
|
Setting --auto-filename will cause the file name to be retreived from
|
|
|
|
the from URL (after any redirections) and used in the destination
|
|
|
|
path.
|
|
|
|
|
2020-04-19 11:40:17 +00:00
|
|
|
Setting --no-clobber will prevent overwriting file on the
|
|
|
|
destination if there is one with the same name.
|
|
|
|
|
2020-02-01 10:31:42 +00:00
|
|
|
Setting --stdout or making the output file name "-" will cause the
|
|
|
|
output to be written to standard output.
|
2019-10-26 10:04:54 +00:00
|
|
|
|
2018-09-01 11:58:00 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
rclone copyurl https://example.com dest:path [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 10:17:37 +00:00
|
|
|
## Options
|
2018-09-01 11:58:00 +00:00
|
|
|
|
|
|
|
```
|
2020-02-01 10:31:42 +00:00
|
|
|
-a, --auto-filename Get the file name from the URL and use it for destination file path
|
2019-09-03 16:25:19 +00:00
|
|
|
-h, --help help for copyurl
|
2020-05-16 14:11:55 +00:00
|
|
|
--no-clobber Prevent overwriting file with same name
|
2020-02-01 10:31:42 +00:00
|
|
|
--stdout Write the output to stdout rather than a file
|
2018-09-01 11:58:00 +00:00
|
|
|
```
|
|
|
|
|
2019-06-20 15:18:02 +00:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2020-05-22 10:17:37 +00:00
|
|
|
## SEE ALSO
|
2018-09-01 11:58:00 +00:00
|
|
|
|
2018-10-15 10:03:08 +00:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-09-01 11:58:00 +00:00
|
|
|
|