gendocs: add autogenerated header to all docs

s3-about
Nick Craig-Wood 2020-02-10 12:31:45 +00:00
parent 25cfeb2a64
commit dfb710eab7
70 changed files with 140 additions and 69 deletions

View File

@ -148,6 +148,7 @@ with modules beneath.
* ...commands * ...commands
* docs - the documentation and website * docs - the documentation and website
* content - adjust these docs only - everything else is autogenerated * content - adjust these docs only - everything else is autogenerated
* command - these are auto generated - edit the corresponding .go file
* fs - main rclone definitions - minimal amount of code * fs - main rclone definitions - minimal amount of code
* accounting - bandwidth limiting and statistics * accounting - bandwidth limiting and statistics
* asyncreader - an io.Reader which reads ahead * asyncreader - an io.Reader which reads ahead

View File

@ -25,6 +25,7 @@ date: %s
title: "%s" title: "%s"
slug: %s slug: %s
url: %s url: %s
# autogenerated - DO NOT EDIT, instead edit the source code in %s and as part of making a release run "make commanddocs"
--- ---
` `
@ -67,7 +68,8 @@ rclone.org website.`,
name := filepath.Base(filename) name := filepath.Base(filename)
base := strings.TrimSuffix(name, path.Ext(name)) base := strings.TrimSuffix(name, path.Ext(name))
url := "/commands/" + strings.ToLower(base) + "/" url := "/commands/" + strings.ToLower(base) + "/"
return fmt.Sprintf(gendocFrontmatterTemplate, now, strings.Replace(base, "_", " ", -1), base, url) source := strings.Replace(strings.Replace(base, "rclone", "cmd", -1), "_", "/", -1) + "/"
return fmt.Sprintf(gendocFrontmatterTemplate, now, strings.Replace(base, "_", " ", -1), base, url, source)
} }
linkHandler := func(name string) string { linkHandler := func(name string) string {
base := strings.TrimSuffix(name, path.Ext(name)) base := strings.TrimSuffix(name, path.Ext(name))

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone" title: "rclone"
slug: rclone slug: rclone
url: /commands/rclone/ url: /commands/rclone/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/ and as part of making a release run "make commanddocs"
--- ---
## rclone ## rclone

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone about" title: "rclone about"
slug: rclone_about slug: rclone_about
url: /commands/rclone_about/ url: /commands/rclone_about/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/about/ and as part of making a release run "make commanddocs"
--- ---
## rclone about ## rclone about

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone authorize" title: "rclone authorize"
slug: rclone_authorize slug: rclone_authorize
url: /commands/rclone_authorize/ url: /commands/rclone_authorize/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/authorize/ and as part of making a release run "make commanddocs"
--- ---
## rclone authorize ## rclone authorize

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone cachestats" title: "rclone cachestats"
slug: rclone_cachestats slug: rclone_cachestats
url: /commands/rclone_cachestats/ url: /commands/rclone_cachestats/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/cachestats/ and as part of making a release run "make commanddocs"
--- ---
## rclone cachestats ## rclone cachestats

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone cat" title: "rclone cat"
slug: rclone_cat slug: rclone_cat
url: /commands/rclone_cat/ url: /commands/rclone_cat/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/cat/ and as part of making a release run "make commanddocs"
--- ---
## rclone cat ## rclone cat

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone check" title: "rclone check"
slug: rclone_check slug: rclone_check
url: /commands/rclone_check/ url: /commands/rclone_check/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/check/ and as part of making a release run "make commanddocs"
--- ---
## rclone check ## rclone check

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone cleanup" title: "rclone cleanup"
slug: rclone_cleanup slug: rclone_cleanup
url: /commands/rclone_cleanup/ url: /commands/rclone_cleanup/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/cleanup/ and as part of making a release run "make commanddocs"
--- ---
## rclone cleanup ## rclone cleanup

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config" title: "rclone config"
slug: rclone_config slug: rclone_config
url: /commands/rclone_config/ url: /commands/rclone_config/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/ and as part of making a release run "make commanddocs"
--- ---
## rclone config ## rclone config

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config create" title: "rclone config create"
slug: rclone_config_create slug: rclone_config_create
url: /commands/rclone_config_create/ url: /commands/rclone_config_create/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/create/ and as part of making a release run "make commanddocs"
--- ---
## rclone config create ## rclone config create

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config delete" title: "rclone config delete"
slug: rclone_config_delete slug: rclone_config_delete
url: /commands/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 ## rclone config delete

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config disconnect" title: "rclone config disconnect"
slug: rclone_config_disconnect slug: rclone_config_disconnect
url: /commands/rclone_config_disconnect/ url: /commands/rclone_config_disconnect/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/disconnect/ and as part of making a release run "make commanddocs"
--- ---
## rclone config disconnect ## rclone config disconnect

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config dump" title: "rclone config dump"
slug: rclone_config_dump slug: rclone_config_dump
url: /commands/rclone_config_dump/ url: /commands/rclone_config_dump/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/dump/ and as part of making a release run "make commanddocs"
--- ---
## rclone config dump ## rclone config dump

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config edit" title: "rclone config edit"
slug: rclone_config_edit slug: rclone_config_edit
url: /commands/rclone_config_edit/ url: /commands/rclone_config_edit/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/edit/ and as part of making a release run "make commanddocs"
--- ---
## rclone config edit ## rclone config edit

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config file" title: "rclone config file"
slug: rclone_config_file slug: rclone_config_file
url: /commands/rclone_config_file/ url: /commands/rclone_config_file/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/file/ and as part of making a release run "make commanddocs"
--- ---
## rclone config file ## rclone config file

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config password" title: "rclone config password"
slug: rclone_config_password slug: rclone_config_password
url: /commands/rclone_config_password/ url: /commands/rclone_config_password/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/password/ and as part of making a release run "make commanddocs"
--- ---
## rclone config password ## rclone config password

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config providers" title: "rclone config providers"
slug: rclone_config_providers slug: rclone_config_providers
url: /commands/rclone_config_providers/ url: /commands/rclone_config_providers/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/providers/ and as part of making a release run "make commanddocs"
--- ---
## rclone config providers ## rclone config providers

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config reconnect" title: "rclone config reconnect"
slug: rclone_config_reconnect slug: rclone_config_reconnect
url: /commands/rclone_config_reconnect/ url: /commands/rclone_config_reconnect/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/reconnect/ and as part of making a release run "make commanddocs"
--- ---
## rclone config reconnect ## rclone config reconnect

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config show" title: "rclone config show"
slug: rclone_config_show slug: rclone_config_show
url: /commands/rclone_config_show/ url: /commands/rclone_config_show/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/show/ and as part of making a release run "make commanddocs"
--- ---
## rclone config show ## rclone config show

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config update" title: "rclone config update"
slug: rclone_config_update slug: rclone_config_update
url: /commands/rclone_config_update/ url: /commands/rclone_config_update/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/update/ and as part of making a release run "make commanddocs"
--- ---
## rclone config update ## rclone config update

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone config userinfo" title: "rclone config userinfo"
slug: rclone_config_userinfo slug: rclone_config_userinfo
url: /commands/rclone_config_userinfo/ url: /commands/rclone_config_userinfo/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/userinfo/ and as part of making a release run "make commanddocs"
--- ---
## rclone config userinfo ## rclone config userinfo

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone copy" title: "rclone copy"
slug: rclone_copy slug: rclone_copy
url: /commands/rclone_copy/ url: /commands/rclone_copy/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/copy/ and as part of making a release run "make commanddocs"
--- ---
## rclone copy ## rclone copy

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone copyto" title: "rclone copyto"
slug: rclone_copyto slug: rclone_copyto
url: /commands/rclone_copyto/ url: /commands/rclone_copyto/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyto/ and as part of making a release run "make commanddocs"
--- ---
## rclone copyto ## rclone copyto

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone copyurl" title: "rclone copyurl"
slug: rclone_copyurl slug: rclone_copyurl
url: /commands/rclone_copyurl/ url: /commands/rclone_copyurl/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyurl/ and as part of making a release run "make commanddocs"
--- ---
## rclone copyurl ## rclone copyurl

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone cryptcheck" title: "rclone cryptcheck"
slug: rclone_cryptcheck slug: rclone_cryptcheck
url: /commands/rclone_cryptcheck/ url: /commands/rclone_cryptcheck/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/cryptcheck/ and as part of making a release run "make commanddocs"
--- ---
## rclone cryptcheck ## rclone cryptcheck

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone cryptdecode" title: "rclone cryptdecode"
slug: rclone_cryptdecode slug: rclone_cryptdecode
url: /commands/rclone_cryptdecode/ url: /commands/rclone_cryptdecode/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/cryptdecode/ and as part of making a release run "make commanddocs"
--- ---
## rclone cryptdecode ## rclone cryptdecode

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone dbhashsum" title: "rclone dbhashsum"
slug: rclone_dbhashsum slug: rclone_dbhashsum
url: /commands/rclone_dbhashsum/ url: /commands/rclone_dbhashsum/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/dbhashsum/ and as part of making a release run "make commanddocs"
--- ---
## rclone dbhashsum ## rclone dbhashsum

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone dedupe" title: "rclone dedupe"
slug: rclone_dedupe slug: rclone_dedupe
url: /commands/rclone_dedupe/ url: /commands/rclone_dedupe/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/dedupe/ and as part of making a release run "make commanddocs"
--- ---
## rclone dedupe ## rclone dedupe

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone delete" title: "rclone delete"
slug: rclone_delete slug: rclone_delete
url: /commands/rclone_delete/ url: /commands/rclone_delete/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/delete/ and as part of making a release run "make commanddocs"
--- ---
## rclone delete ## rclone delete

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone deletefile" title: "rclone deletefile"
slug: rclone_deletefile slug: rclone_deletefile
url: /commands/rclone_deletefile/ url: /commands/rclone_deletefile/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/deletefile/ and as part of making a release run "make commanddocs"
--- ---
## rclone deletefile ## rclone deletefile

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone genautocomplete" title: "rclone genautocomplete"
slug: rclone_genautocomplete slug: rclone_genautocomplete
url: /commands/rclone_genautocomplete/ url: /commands/rclone_genautocomplete/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/genautocomplete/ and as part of making a release run "make commanddocs"
--- ---
## rclone genautocomplete ## rclone genautocomplete

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone genautocomplete bash" title: "rclone genautocomplete bash"
slug: rclone_genautocomplete_bash slug: rclone_genautocomplete_bash
url: /commands/rclone_genautocomplete_bash/ url: /commands/rclone_genautocomplete_bash/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/genautocomplete/bash/ and as part of making a release run "make commanddocs"
--- ---
## rclone genautocomplete bash ## rclone genautocomplete bash

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone genautocomplete zsh" title: "rclone genautocomplete zsh"
slug: rclone_genautocomplete_zsh slug: rclone_genautocomplete_zsh
url: /commands/rclone_genautocomplete_zsh/ url: /commands/rclone_genautocomplete_zsh/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/genautocomplete/zsh/ and as part of making a release run "make commanddocs"
--- ---
## rclone genautocomplete zsh ## rclone genautocomplete zsh

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone gendocs" title: "rclone gendocs"
slug: rclone_gendocs slug: rclone_gendocs
url: /commands/rclone_gendocs/ url: /commands/rclone_gendocs/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/gendocs/ and as part of making a release run "make commanddocs"
--- ---
## rclone gendocs ## rclone gendocs

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone hashsum" title: "rclone hashsum"
slug: rclone_hashsum slug: rclone_hashsum
url: /commands/rclone_hashsum/ url: /commands/rclone_hashsum/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/hashsum/ and as part of making a release run "make commanddocs"
--- ---
## rclone hashsum ## rclone hashsum

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone link" title: "rclone link"
slug: rclone_link slug: rclone_link
url: /commands/rclone_link/ url: /commands/rclone_link/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/link/ and as part of making a release run "make commanddocs"
--- ---
## rclone link ## rclone link

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone listremotes" title: "rclone listremotes"
slug: rclone_listremotes slug: rclone_listremotes
url: /commands/rclone_listremotes/ url: /commands/rclone_listremotes/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/listremotes/ and as part of making a release run "make commanddocs"
--- ---
## rclone listremotes ## rclone listremotes

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone ls" title: "rclone ls"
slug: rclone_ls slug: rclone_ls
url: /commands/rclone_ls/ url: /commands/rclone_ls/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/ls/ and as part of making a release run "make commanddocs"
--- ---
## rclone ls ## rclone ls

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone lsd" title: "rclone lsd"
slug: rclone_lsd slug: rclone_lsd
url: /commands/rclone_lsd/ url: /commands/rclone_lsd/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsd/ and as part of making a release run "make commanddocs"
--- ---
## rclone lsd ## rclone lsd

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone lsf" title: "rclone lsf"
slug: rclone_lsf slug: rclone_lsf
url: /commands/rclone_lsf/ url: /commands/rclone_lsf/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsf/ and as part of making a release run "make commanddocs"
--- ---
## rclone lsf ## rclone lsf

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone lsjson" title: "rclone lsjson"
slug: rclone_lsjson slug: rclone_lsjson
url: /commands/rclone_lsjson/ url: /commands/rclone_lsjson/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsjson/ and as part of making a release run "make commanddocs"
--- ---
## rclone lsjson ## rclone lsjson

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone lsl" title: "rclone lsl"
slug: rclone_lsl slug: rclone_lsl
url: /commands/rclone_lsl/ url: /commands/rclone_lsl/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsl/ and as part of making a release run "make commanddocs"
--- ---
## rclone lsl ## rclone lsl

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone md5sum" title: "rclone md5sum"
slug: rclone_md5sum slug: rclone_md5sum
url: /commands/rclone_md5sum/ url: /commands/rclone_md5sum/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/md5sum/ and as part of making a release run "make commanddocs"
--- ---
## rclone md5sum ## rclone md5sum

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone mkdir" title: "rclone mkdir"
slug: rclone_mkdir slug: rclone_mkdir
url: /commands/rclone_mkdir/ url: /commands/rclone_mkdir/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/mkdir/ and as part of making a release run "make commanddocs"
--- ---
## rclone mkdir ## rclone mkdir

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone mount" title: "rclone mount"
slug: rclone_mount slug: rclone_mount
url: /commands/rclone_mount/ url: /commands/rclone_mount/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/mount/ and as part of making a release run "make commanddocs"
--- ---
## rclone mount ## rclone mount

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone move" title: "rclone move"
slug: rclone_move slug: rclone_move
url: /commands/rclone_move/ url: /commands/rclone_move/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/move/ and as part of making a release run "make commanddocs"
--- ---
## rclone move ## rclone move

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone moveto" title: "rclone moveto"
slug: rclone_moveto slug: rclone_moveto
url: /commands/rclone_moveto/ url: /commands/rclone_moveto/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/moveto/ and as part of making a release run "make commanddocs"
--- ---
## rclone moveto ## rclone moveto

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone ncdu" title: "rclone ncdu"
slug: rclone_ncdu slug: rclone_ncdu
url: /commands/rclone_ncdu/ url: /commands/rclone_ncdu/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/ncdu/ and as part of making a release run "make commanddocs"
--- ---
## rclone ncdu ## rclone ncdu

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone obscure" title: "rclone obscure"
slug: rclone_obscure slug: rclone_obscure
url: /commands/rclone_obscure/ url: /commands/rclone_obscure/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/obscure/ and as part of making a release run "make commanddocs"
--- ---
## rclone obscure ## rclone obscure

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone purge" title: "rclone purge"
slug: rclone_purge slug: rclone_purge
url: /commands/rclone_purge/ url: /commands/rclone_purge/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/purge/ and as part of making a release run "make commanddocs"
--- ---
## rclone purge ## rclone purge

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone rc" title: "rclone rc"
slug: rclone_rc slug: rclone_rc
url: /commands/rclone_rc/ url: /commands/rclone_rc/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/rc/ and as part of making a release run "make commanddocs"
--- ---
## rclone rc ## rclone rc

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone rcat" title: "rclone rcat"
slug: rclone_rcat slug: rclone_rcat
url: /commands/rclone_rcat/ url: /commands/rclone_rcat/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/rcat/ and as part of making a release run "make commanddocs"
--- ---
## rclone rcat ## rclone rcat

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone rcd" title: "rclone rcd"
slug: rclone_rcd slug: rclone_rcd
url: /commands/rclone_rcd/ url: /commands/rclone_rcd/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/rcd/ and as part of making a release run "make commanddocs"
--- ---
## rclone rcd ## rclone rcd

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone rmdir" title: "rclone rmdir"
slug: rclone_rmdir slug: rclone_rmdir
url: /commands/rclone_rmdir/ url: /commands/rclone_rmdir/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/rmdir/ and as part of making a release run "make commanddocs"
--- ---
## rclone rmdir ## rclone rmdir

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone rmdirs" title: "rclone rmdirs"
slug: rclone_rmdirs slug: rclone_rmdirs
url: /commands/rclone_rmdirs/ url: /commands/rclone_rmdirs/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/rmdirs/ and as part of making a release run "make commanddocs"
--- ---
## rclone rmdirs ## rclone rmdirs

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve" title: "rclone serve"
slug: rclone_serve slug: rclone_serve
url: /commands/rclone_serve/ url: /commands/rclone_serve/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve ## rclone serve

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve dlna" title: "rclone serve dlna"
slug: rclone_serve_dlna slug: rclone_serve_dlna
url: /commands/rclone_serve_dlna/ url: /commands/rclone_serve_dlna/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/dlna/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve dlna ## rclone serve dlna

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve ftp" title: "rclone serve ftp"
slug: rclone_serve_ftp slug: rclone_serve_ftp
url: /commands/rclone_serve_ftp/ url: /commands/rclone_serve_ftp/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/ftp/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve ftp ## rclone serve ftp

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve http" title: "rclone serve http"
slug: rclone_serve_http slug: rclone_serve_http
url: /commands/rclone_serve_http/ url: /commands/rclone_serve_http/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/http/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve http ## rclone serve http

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve restic" title: "rclone serve restic"
slug: rclone_serve_restic slug: rclone_serve_restic
url: /commands/rclone_serve_restic/ url: /commands/rclone_serve_restic/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/restic/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve restic ## rclone serve restic

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve sftp" title: "rclone serve sftp"
slug: rclone_serve_sftp slug: rclone_serve_sftp
url: /commands/rclone_serve_sftp/ url: /commands/rclone_serve_sftp/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/sftp/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve sftp ## rclone serve sftp

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone serve webdav" title: "rclone serve webdav"
slug: rclone_serve_webdav slug: rclone_serve_webdav
url: /commands/rclone_serve_webdav/ url: /commands/rclone_serve_webdav/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/webdav/ and as part of making a release run "make commanddocs"
--- ---
## rclone serve webdav ## rclone serve webdav

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone settier" title: "rclone settier"
slug: rclone_settier slug: rclone_settier
url: /commands/rclone_settier/ url: /commands/rclone_settier/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/settier/ and as part of making a release run "make commanddocs"
--- ---
## rclone settier ## rclone settier

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone sha1sum" title: "rclone sha1sum"
slug: rclone_sha1sum slug: rclone_sha1sum
url: /commands/rclone_sha1sum/ url: /commands/rclone_sha1sum/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/sha1sum/ and as part of making a release run "make commanddocs"
--- ---
## rclone sha1sum ## rclone sha1sum

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone size" title: "rclone size"
slug: rclone_size slug: rclone_size
url: /commands/rclone_size/ url: /commands/rclone_size/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/size/ and as part of making a release run "make commanddocs"
--- ---
## rclone size ## rclone size

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone sync" title: "rclone sync"
slug: rclone_sync slug: rclone_sync
url: /commands/rclone_sync/ url: /commands/rclone_sync/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/sync/ and as part of making a release run "make commanddocs"
--- ---
## rclone sync ## rclone sync

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone touch" title: "rclone touch"
slug: rclone_touch slug: rclone_touch
url: /commands/rclone_touch/ url: /commands/rclone_touch/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/touch/ and as part of making a release run "make commanddocs"
--- ---
## rclone touch ## rclone touch

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone tree" title: "rclone tree"
slug: rclone_tree slug: rclone_tree
url: /commands/rclone_tree/ url: /commands/rclone_tree/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/tree/ and as part of making a release run "make commanddocs"
--- ---
## rclone tree ## rclone tree

View File

@ -1,8 +1,9 @@
--- ---
date: 2020-02-01T10:26:53Z date: 2020-02-10T12:28:36Z
title: "rclone version" title: "rclone version"
slug: rclone_version slug: rclone_version
url: /commands/rclone_version/ url: /commands/rclone_version/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/version/ and as part of making a release run "make commanddocs"
--- ---
## rclone version ## rclone version