docs: set unsafe HTML parsing to false and fix raw HTML insertion
This means that markdown files can't contain <thing> any more.
This commit is contained in:
parent
06427371eb
commit
74b8cbfb84
128 changed files with 945 additions and 645 deletions
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone"
|
||||
description: "Show help for rclone commands, flags and backends."
|
||||
slug: rclone
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone about"
|
||||
description: "Get quota information from the remote."
|
||||
slug: rclone_about
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone authorize"
|
||||
description: "Remote authorization."
|
||||
slug: rclone_authorize
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone backend"
|
||||
description: "Run a backend specific command."
|
||||
slug: rclone_backend
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone cat"
|
||||
description: "Concatenates any files and sends them to stdout."
|
||||
slug: rclone_cat
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone check"
|
||||
description: "Checks the files in the source and destination match."
|
||||
slug: rclone_check
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone cleanup"
|
||||
description: "Clean up the remote if possible"
|
||||
slug: rclone_cleanup
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config"
|
||||
description: "Enter an interactive configuration session."
|
||||
slug: rclone_config
|
||||
|
@ -33,7 +33,7 @@ See the [global flags page](/flags/) for global options not listed here.
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
* [rclone config create](/commands/rclone_config_create/) - Create a new remote with name, type and options.
|
||||
* [rclone config delete](/commands/rclone_config_delete/) - Delete an existing remote <name>.
|
||||
* [rclone config delete](/commands/rclone_config_delete/) - Delete an existing remote `name`.
|
||||
* [rclone config disconnect](/commands/rclone_config_disconnect/) - Disconnects user from remote
|
||||
* [rclone config dump](/commands/rclone_config_dump/) - Dump the config file as JSON.
|
||||
* [rclone config edit](/commands/rclone_config_edit/) - Enter an interactive configuration session.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config create"
|
||||
description: "Create a new remote with name, type and options."
|
||||
slug: rclone_config_create
|
||||
|
@ -13,8 +13,8 @@ Create a new remote with name, type and options.
|
|||
## Synopsis
|
||||
|
||||
|
||||
Create a new remote of <name> with <type> and options. The options
|
||||
should be passed in in pairs of <key> <value>.
|
||||
Create a new remote of `name` with `type` and options. The options
|
||||
should be passed in in pairs of `key` `value`.
|
||||
|
||||
For example to make a swift remote of name myremote using auto config
|
||||
you would do:
|
||||
|
@ -45,7 +45,7 @@ using remote authorization you would do this:
|
|||
|
||||
|
||||
```
|
||||
rclone config create <name> <type> [<key> <value>]* [flags]
|
||||
rclone config create `name` `type` [`key` `value`]* [flags]
|
||||
```
|
||||
|
||||
## Options
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config delete"
|
||||
description: "Delete an existing remote <name>."
|
||||
description: "Delete an existing remote `name`."
|
||||
slug: rclone_config_delete
|
||||
url: /commands/rclone_config_delete/
|
||||
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/delete/ and as part of making a release run "make commanddocs"
|
||||
---
|
||||
# rclone config delete
|
||||
|
||||
Delete an existing remote <name>.
|
||||
Delete an existing remote `name`.
|
||||
|
||||
## Synopsis
|
||||
|
||||
Delete an existing remote <name>.
|
||||
Delete an existing remote `name`.
|
||||
|
||||
```
|
||||
rclone config delete <name> [flags]
|
||||
rclone config delete `name` [flags]
|
||||
```
|
||||
|
||||
## Options
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config disconnect"
|
||||
description: "Disconnects user from remote"
|
||||
slug: rclone_config_disconnect
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config dump"
|
||||
description: "Dump the config file as JSON."
|
||||
slug: rclone_config_dump
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config edit"
|
||||
description: "Enter an interactive configuration session."
|
||||
slug: rclone_config_edit
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config file"
|
||||
description: "Show path of configuration file in use."
|
||||
slug: rclone_config_file
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config password"
|
||||
description: "Update password in an existing remote."
|
||||
slug: rclone_config_password
|
||||
|
@ -14,7 +14,7 @@ Update password in an existing remote.
|
|||
|
||||
|
||||
Update an existing remote's password. The password
|
||||
should be passed in in pairs of <key> <value>.
|
||||
should be passed in in pairs of `key` `value`.
|
||||
|
||||
For example to set password of a remote of name myremote you would do:
|
||||
|
||||
|
@ -25,7 +25,7 @@ both support obscuring passwords directly.
|
|||
|
||||
|
||||
```
|
||||
rclone config password <name> [<key> <value>]+ [flags]
|
||||
rclone config password `name` [`key` `value`]+ [flags]
|
||||
```
|
||||
|
||||
## Options
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config providers"
|
||||
description: "List in JSON format all the providers and options."
|
||||
slug: rclone_config_providers
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config reconnect"
|
||||
description: "Re-authenticates user with remote."
|
||||
slug: rclone_config_reconnect
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config show"
|
||||
description: "Print (decrypted) config file, or the config for a single remote."
|
||||
slug: rclone_config_show
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config update"
|
||||
description: "Update options in an existing remote."
|
||||
slug: rclone_config_update
|
||||
|
@ -14,7 +14,7 @@ Update options in an existing remote.
|
|||
|
||||
|
||||
Update an existing remote's options. The options should be passed in
|
||||
in pairs of <key> <value>.
|
||||
in pairs of `key` `value`.
|
||||
|
||||
For example to update the env_auth field of a remote of name myremote
|
||||
you would do:
|
||||
|
@ -41,7 +41,7 @@ require this add an extra parameter thus:
|
|||
|
||||
|
||||
```
|
||||
rclone config update <name> [<key> <value>]+ [flags]
|
||||
rclone config update `name` [`key` `value`]+ [flags]
|
||||
```
|
||||
|
||||
## Options
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone config userinfo"
|
||||
description: "Prints info about logged in user of remote."
|
||||
slug: rclone_config_userinfo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone copy"
|
||||
description: "Copy files from source to dest, skipping already copied"
|
||||
slug: rclone_copy
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone copyto"
|
||||
description: "Copy files from source to dest, skipping already copied"
|
||||
slug: rclone_copyto
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone copyurl"
|
||||
description: "Copy url content to dest."
|
||||
slug: rclone_copyurl
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone cryptcheck"
|
||||
description: "Cryptcheck checks the integrity of a crypted remote."
|
||||
slug: rclone_cryptcheck
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone cryptdecode"
|
||||
description: "Cryptdecode returns unencrypted file names."
|
||||
slug: rclone_cryptdecode
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone dedupe"
|
||||
description: "Interactively find duplicate files and delete/rename them."
|
||||
slug: rclone_dedupe
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone delete"
|
||||
description: "Remove the contents of path."
|
||||
slug: rclone_delete
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone deletefile"
|
||||
description: "Remove a single file from remote."
|
||||
slug: rclone_deletefile
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone genautocomplete"
|
||||
description: "Output completion script for a given shell."
|
||||
slug: rclone_genautocomplete
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone genautocomplete bash"
|
||||
description: "Output bash completion script for rclone."
|
||||
slug: rclone_genautocomplete_bash
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone genautocomplete fish"
|
||||
description: "Output fish completion script for rclone."
|
||||
slug: rclone_genautocomplete_fish
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone genautocomplete zsh"
|
||||
description: "Output zsh completion script for rclone."
|
||||
slug: rclone_genautocomplete_zsh
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone gendocs"
|
||||
description: "Output markdown docs for rclone to the directory supplied."
|
||||
slug: rclone_gendocs
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone hashsum"
|
||||
description: "Produces a hashsum file for all the objects in the path."
|
||||
slug: rclone_hashsum
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone link"
|
||||
description: "Generate public link to file/folder."
|
||||
slug: rclone_link
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone listremotes"
|
||||
description: "List all the remotes in the config file."
|
||||
slug: rclone_listremotes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone ls"
|
||||
description: "List the objects in the path with size and path."
|
||||
slug: rclone_ls
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone lsd"
|
||||
description: "List all directories/containers/buckets in the path."
|
||||
slug: rclone_lsd
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone lsf"
|
||||
description: "List directories and objects in remote:path formatted for parsing"
|
||||
slug: rclone_lsf
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone lsjson"
|
||||
description: "List directories and objects in the path in JSON format."
|
||||
slug: rclone_lsjson
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone lsl"
|
||||
description: "List the objects in path with modification time, size and path."
|
||||
slug: rclone_lsl
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone md5sum"
|
||||
description: "Produces an md5sum file for all the objects in the path."
|
||||
slug: rclone_md5sum
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone mkdir"
|
||||
description: "Make the path if it doesn't already exist."
|
||||
slug: rclone_mkdir
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone mount"
|
||||
description: "Mount the remote as file system on a mountpoint."
|
||||
slug: rclone_mount
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone move"
|
||||
description: "Move files from source to dest."
|
||||
slug: rclone_move
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone moveto"
|
||||
description: "Move file or directory from source to dest."
|
||||
slug: rclone_moveto
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone ncdu"
|
||||
description: "Explore a remote with a text based user interface."
|
||||
slug: rclone_ncdu
|
||||
|
@ -17,7 +17,7 @@ This displays a text based user interface allowing the navigation of a
|
|||
remote. It is most useful for answering the question - "What is using
|
||||
all my disk space?".
|
||||
|
||||
<script src="https://asciinema.org/a/157793.js" id="asciicast-157793" async></script>
|
||||
{{< asciinema 157793 >}}
|
||||
|
||||
To make the user interface it first scans the entire remote given and
|
||||
builds an in memory representation. rclone ncdu can be used during
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone obscure"
|
||||
description: "Obscure password for use in the rclone.conf"
|
||||
slug: rclone_obscure
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone purge"
|
||||
description: "Remove the path and all of its contents."
|
||||
slug: rclone_purge
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone rc"
|
||||
description: "Run a command against a running rclone."
|
||||
slug: rclone_rc
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone rcat"
|
||||
description: "Copies standard input to file on remote."
|
||||
slug: rclone_rcat
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone rcd"
|
||||
description: "Run rclone listening to remote control commands only."
|
||||
slug: rclone_rcd
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone rmdir"
|
||||
description: "Remove the path if empty."
|
||||
slug: rclone_rmdir
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone rmdirs"
|
||||
description: "Remove empty directories under the path."
|
||||
slug: rclone_rmdirs
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve"
|
||||
description: "Serve a remote over a protocol."
|
||||
slug: rclone_serve
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve dlna"
|
||||
description: "Serve remote:path over DLNA"
|
||||
slug: rclone_serve_dlna
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve ftp"
|
||||
description: "Serve remote:path over FTP."
|
||||
slug: rclone_serve_ftp
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve http"
|
||||
description: "Serve the remote over HTTP."
|
||||
slug: rclone_serve_http
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve restic"
|
||||
description: "Serve the remote for restic's REST API."
|
||||
slug: rclone_serve_restic
|
||||
|
@ -88,7 +88,7 @@ these **must** end with /. Eg
|
|||
### Private repositories ####
|
||||
|
||||
The "--private-repos" flag can be used to limit users to repositories starting
|
||||
with a path of "/<username>/".
|
||||
with a path of `/<username>/`.
|
||||
|
||||
## Server options
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve sftp"
|
||||
description: "Serve the remote over SFTP."
|
||||
slug: rclone_serve_sftp
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone serve webdav"
|
||||
description: "Serve remote:path over webdav."
|
||||
slug: rclone_serve_webdav
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone settier"
|
||||
description: "Changes storage class/tier of objects in remote."
|
||||
slug: rclone_settier
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone sha1sum"
|
||||
description: "Produces an sha1sum file for all the objects in the path."
|
||||
slug: rclone_sha1sum
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone size"
|
||||
description: "Prints the total size and number of objects in remote:path."
|
||||
slug: rclone_size
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone sync"
|
||||
description: "Make source and dest identical, modifying destination only."
|
||||
slug: rclone_sync
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone touch"
|
||||
description: "Create new file or change file modification time."
|
||||
slug: rclone_touch
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone tree"
|
||||
description: "List the contents of the remote in a tree like fashion."
|
||||
slug: rclone_tree
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2020-05-22T09:52:00+01:00
|
||||
date: 2020-05-22T15:09:46+01:00
|
||||
title: "rclone version"
|
||||
description: "Show the version number."
|
||||
slug: rclone_version
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue