rclone/docs/content/commands/rclone_backend.md

69 lines
1.9 KiB
Markdown
Raw Normal View History

---
title: "rclone backend"
2022-03-18 13:29:54 +01:00
description: "Run a backend-specific command."
2022-12-20 18:16:14 +01:00
versionIntroduced: v1.52
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/backend/ and as part of making a release run "make commanddocs"
---
# rclone backend
2022-03-18 13:29:54 +01:00
Run a backend-specific command.
## Synopsis
2022-03-18 13:29:54 +01:00
This runs a backend-specific command. The commands themselves (except
for "help" and "features") are defined by the backends and you should
see the backend docs for definitions.
You can discover what commands a backend implements by using
rclone backend help remote:
rclone backend help <backendname>
You can also discover information about the backend using (see
2022-03-18 13:29:54 +01:00
[operations/fsinfo](/rc/#operations-fsinfo) in the remote control docs
for more info).
rclone backend features remote:
2021-02-02 14:42:35 +01:00
Pass options to the backend command with -o. This should be key=value or key, e.g.:
rclone backend stats remote:path stats -o format=json -o long
Pass arguments to the backend by placing them on the end of the line
rclone backend cleanup remote:path file1 file2 file3
Note to run these commands on a running backend then see
2022-03-18 13:29:54 +01:00
[backend/command](/rc/#backend-command) in the rc docs.
```
rclone backend <command> remote:path [opts] <args> [flags]
```
## Options
```
-h, --help help for backend
2021-11-01 16:42:05 +01:00
--json Always output in JSON format
-o, --option stringArray Option in the form name=value or name
```
2024-09-08 17:21:56 +02:00
Options shared with other commands are described next.
See the [global flags page](/flags/) for global options not listed here.
2023-08-02 11:02:38 +02:00
2024-09-08 17:21:56 +02:00
### Important Options
2023-08-02 11:02:38 +02:00
2024-09-08 17:21:56 +02:00
Important flags useful for most commands
2023-08-02 11:02:38 +02:00
```
-n, --dry-run Do a trial run with no permanent changes
-i, --interactive Enable interactive mode
-v, --verbose count Print lots more stuff (repeat for more)
```
2024-09-08 17:21:56 +02:00
## See Also
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.