From 0197e7f4e55e11c2974ab6f246aa89e147a83c1e Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 15 Jun 2024 12:37:43 +0100 Subject: [PATCH] docs: remove slug and url from command pages since they are no longer needed --- cmd/gendocs/gendocs.go | 6 ------ docs/content/commands/rclone.md | 2 -- docs/content/commands/rclone_about.md | 2 -- docs/content/commands/rclone_authorize.md | 2 -- docs/content/commands/rclone_backend.md | 2 -- docs/content/commands/rclone_bisync.md | 2 -- docs/content/commands/rclone_cat.md | 2 -- docs/content/commands/rclone_check.md | 2 -- docs/content/commands/rclone_checksum.md | 2 -- docs/content/commands/rclone_cleanup.md | 2 -- docs/content/commands/rclone_completion.md | 2 -- docs/content/commands/rclone_completion_bash.md | 2 -- docs/content/commands/rclone_completion_fish.md | 2 -- docs/content/commands/rclone_completion_powershell.md | 2 -- docs/content/commands/rclone_completion_zsh.md | 2 -- docs/content/commands/rclone_config.md | 2 -- docs/content/commands/rclone_config_create.md | 2 -- docs/content/commands/rclone_config_delete.md | 2 -- docs/content/commands/rclone_config_disconnect.md | 2 -- docs/content/commands/rclone_config_dump.md | 2 -- docs/content/commands/rclone_config_edit.md | 2 -- docs/content/commands/rclone_config_file.md | 2 -- docs/content/commands/rclone_config_password.md | 2 -- docs/content/commands/rclone_config_paths.md | 2 -- docs/content/commands/rclone_config_providers.md | 2 -- docs/content/commands/rclone_config_reconnect.md | 2 -- docs/content/commands/rclone_config_redacted.md | 2 -- docs/content/commands/rclone_config_show.md | 2 -- docs/content/commands/rclone_config_touch.md | 2 -- docs/content/commands/rclone_config_update.md | 2 -- docs/content/commands/rclone_config_userinfo.md | 2 -- docs/content/commands/rclone_copy.md | 2 -- docs/content/commands/rclone_copyto.md | 2 -- docs/content/commands/rclone_copyurl.md | 2 -- docs/content/commands/rclone_cryptcheck.md | 2 -- docs/content/commands/rclone_cryptdecode.md | 2 -- docs/content/commands/rclone_dedupe.md | 2 -- docs/content/commands/rclone_delete.md | 2 -- docs/content/commands/rclone_deletefile.md | 2 -- docs/content/commands/rclone_gendocs.md | 2 -- docs/content/commands/rclone_gitannex.md | 2 -- docs/content/commands/rclone_hashsum.md | 2 -- docs/content/commands/rclone_link.md | 2 -- docs/content/commands/rclone_listremotes.md | 2 -- docs/content/commands/rclone_ls.md | 2 -- docs/content/commands/rclone_lsd.md | 2 -- docs/content/commands/rclone_lsf.md | 2 -- docs/content/commands/rclone_lsjson.md | 2 -- docs/content/commands/rclone_lsl.md | 2 -- docs/content/commands/rclone_md5sum.md | 2 -- docs/content/commands/rclone_mkdir.md | 2 -- docs/content/commands/rclone_mount.md | 2 -- docs/content/commands/rclone_move.md | 2 -- docs/content/commands/rclone_moveto.md | 2 -- docs/content/commands/rclone_ncdu.md | 2 -- docs/content/commands/rclone_nfsmount.md | 2 -- docs/content/commands/rclone_obscure.md | 2 -- docs/content/commands/rclone_purge.md | 2 -- docs/content/commands/rclone_rc.md | 2 -- docs/content/commands/rclone_rcat.md | 2 -- docs/content/commands/rclone_rcd.md | 2 -- docs/content/commands/rclone_rmdir.md | 2 -- docs/content/commands/rclone_rmdirs.md | 2 -- docs/content/commands/rclone_selfupdate.md | 2 -- docs/content/commands/rclone_serve.md | 2 -- docs/content/commands/rclone_serve_dlna.md | 2 -- docs/content/commands/rclone_serve_docker.md | 2 -- docs/content/commands/rclone_serve_ftp.md | 2 -- docs/content/commands/rclone_serve_http.md | 2 -- docs/content/commands/rclone_serve_nfs.md | 2 -- docs/content/commands/rclone_serve_restic.md | 2 -- docs/content/commands/rclone_serve_s3.md | 2 -- docs/content/commands/rclone_serve_sftp.md | 2 -- docs/content/commands/rclone_serve_webdav.md | 2 -- docs/content/commands/rclone_settier.md | 2 -- docs/content/commands/rclone_sha1sum.md | 2 -- docs/content/commands/rclone_size.md | 2 -- docs/content/commands/rclone_sync.md | 2 -- docs/content/commands/rclone_test.md | 2 -- docs/content/commands/rclone_test_changenotify.md | 2 -- docs/content/commands/rclone_test_histogram.md | 2 -- docs/content/commands/rclone_test_info.md | 2 -- docs/content/commands/rclone_test_makefile.md | 2 -- docs/content/commands/rclone_test_makefiles.md | 2 -- docs/content/commands/rclone_test_memory.md | 2 -- docs/content/commands/rclone_touch.md | 2 -- docs/content/commands/rclone_tree.md | 2 -- docs/content/commands/rclone_version.md | 2 -- 88 files changed, 180 deletions(-) diff --git a/cmd/gendocs/gendocs.go b/cmd/gendocs/gendocs.go index c80b75374..458de5515 100644 --- a/cmd/gendocs/gendocs.go +++ b/cmd/gendocs/gendocs.go @@ -29,8 +29,6 @@ type frontmatter struct { Date string Title string Description string - Slug string - URL string Source string Annotations map[string]string } @@ -38,8 +36,6 @@ type frontmatter struct { var frontmatterTemplate = template.Must(template.New("frontmatter").Parse(`--- title: "{{ .Title }}" description: "{{ .Description }}" -slug: {{ .Slug }} -url: {{ .URL }} {{- range $key, $value := .Annotations }} {{ $key }}: {{ $value }} {{- end }} @@ -112,8 +108,6 @@ rclone.org website.`, Date: now, Title: strings.ReplaceAll(base, "_", " "), Description: commands[name].Short, - Slug: base, - URL: "/commands/" + strings.ToLower(base) + "/", Source: strings.ReplaceAll(strings.ReplaceAll(base, "rclone", "cmd"), "_", "/") + "/", Annotations: commands[name].Annotations, } diff --git a/docs/content/commands/rclone.md b/docs/content/commands/rclone.md index 8b54793e5..4cf7350d2 100644 --- a/docs/content/commands/rclone.md +++ b/docs/content/commands/rclone.md @@ -1,8 +1,6 @@ --- title: "rclone" description: "Show help for rclone commands, flags and backends." -slug: 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 diff --git a/docs/content/commands/rclone_about.md b/docs/content/commands/rclone_about.md index 27328c8c4..bee45538d 100644 --- a/docs/content/commands/rclone_about.md +++ b/docs/content/commands/rclone_about.md @@ -1,8 +1,6 @@ --- title: "rclone about" description: "Get quota information from the remote." -slug: rclone_about -url: /commands/rclone_about/ versionIntroduced: v1.41 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/about/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_authorize.md b/docs/content/commands/rclone_authorize.md index 5182880b4..f13052c95 100644 --- a/docs/content/commands/rclone_authorize.md +++ b/docs/content/commands/rclone_authorize.md @@ -1,8 +1,6 @@ --- title: "rclone authorize" description: "Remote authorization." -slug: rclone_authorize -url: /commands/rclone_authorize/ versionIntroduced: v1.27 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/authorize/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_backend.md b/docs/content/commands/rclone_backend.md index e4d0c3010..701609832 100644 --- a/docs/content/commands/rclone_backend.md +++ b/docs/content/commands/rclone_backend.md @@ -1,8 +1,6 @@ --- title: "rclone backend" description: "Run a backend-specific command." -slug: rclone_backend -url: /commands/rclone_backend/ groups: Important 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" diff --git a/docs/content/commands/rclone_bisync.md b/docs/content/commands/rclone_bisync.md index bd0578ef6..e728e573d 100644 --- a/docs/content/commands/rclone_bisync.md +++ b/docs/content/commands/rclone_bisync.md @@ -1,8 +1,6 @@ --- title: "rclone bisync" description: "Perform bidirectional synchronization between two paths." -slug: rclone_bisync -url: /commands/rclone_bisync/ groups: Filter,Copy,Important status: Beta versionIntroduced: v1.58 diff --git a/docs/content/commands/rclone_cat.md b/docs/content/commands/rclone_cat.md index 6580c9590..0be9eed20 100644 --- a/docs/content/commands/rclone_cat.md +++ b/docs/content/commands/rclone_cat.md @@ -1,8 +1,6 @@ --- title: "rclone cat" description: "Concatenates any files and sends them to stdout." -slug: rclone_cat -url: /commands/rclone_cat/ groups: Filter,Listing versionIntroduced: v1.33 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/cat/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_check.md b/docs/content/commands/rclone_check.md index d6a2243ed..6aebd4aad 100644 --- a/docs/content/commands/rclone_check.md +++ b/docs/content/commands/rclone_check.md @@ -1,8 +1,6 @@ --- title: "rclone check" description: "Checks the files in the source and destination match." -slug: rclone_check -url: /commands/rclone_check/ groups: Filter,Listing,Check # autogenerated - DO NOT EDIT, instead edit the source code in cmd/check/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_checksum.md b/docs/content/commands/rclone_checksum.md index 1e78aeb65..31e6d9988 100644 --- a/docs/content/commands/rclone_checksum.md +++ b/docs/content/commands/rclone_checksum.md @@ -1,8 +1,6 @@ --- title: "rclone checksum" description: "Checks the files in the destination against a SUM file." -slug: rclone_checksum -url: /commands/rclone_checksum/ groups: Filter,Listing versionIntroduced: v1.56 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/checksum/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_cleanup.md b/docs/content/commands/rclone_cleanup.md index 30b51d517..2412a0bf5 100644 --- a/docs/content/commands/rclone_cleanup.md +++ b/docs/content/commands/rclone_cleanup.md @@ -1,8 +1,6 @@ --- title: "rclone cleanup" description: "Clean up the remote if possible." -slug: rclone_cleanup -url: /commands/rclone_cleanup/ groups: Important versionIntroduced: v1.31 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/cleanup/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_completion.md b/docs/content/commands/rclone_completion.md index 0ecf68522..36aa16742 100644 --- a/docs/content/commands/rclone_completion.md +++ b/docs/content/commands/rclone_completion.md @@ -1,8 +1,6 @@ --- title: "rclone completion" description: "Output completion script for a given shell." -slug: rclone_completion -url: /commands/rclone_completion/ versionIntroduced: v1.33 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/completion/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_completion_bash.md b/docs/content/commands/rclone_completion_bash.md index 4773cc082..6a2ad8a7a 100644 --- a/docs/content/commands/rclone_completion_bash.md +++ b/docs/content/commands/rclone_completion_bash.md @@ -1,8 +1,6 @@ --- title: "rclone completion bash" description: "Output bash completion script for rclone." -slug: rclone_completion_bash -url: /commands/rclone_completion_bash/ # autogenerated - DO NOT EDIT, instead edit the source code in cmd/completion/bash/ and as part of making a release run "make commanddocs" --- # rclone completion bash diff --git a/docs/content/commands/rclone_completion_fish.md b/docs/content/commands/rclone_completion_fish.md index 3934273a2..2eff18b7d 100644 --- a/docs/content/commands/rclone_completion_fish.md +++ b/docs/content/commands/rclone_completion_fish.md @@ -1,8 +1,6 @@ --- title: "rclone completion fish" description: "Output fish completion script for rclone." -slug: rclone_completion_fish -url: /commands/rclone_completion_fish/ # autogenerated - DO NOT EDIT, instead edit the source code in cmd/completion/fish/ and as part of making a release run "make commanddocs" --- # rclone completion fish diff --git a/docs/content/commands/rclone_completion_powershell.md b/docs/content/commands/rclone_completion_powershell.md index 47a5febbd..cadfe617d 100644 --- a/docs/content/commands/rclone_completion_powershell.md +++ b/docs/content/commands/rclone_completion_powershell.md @@ -1,8 +1,6 @@ --- title: "rclone completion powershell" description: "Output powershell completion script for rclone." -slug: rclone_completion_powershell -url: /commands/rclone_completion_powershell/ # autogenerated - DO NOT EDIT, instead edit the source code in cmd/completion/powershell/ and as part of making a release run "make commanddocs" --- # rclone completion powershell diff --git a/docs/content/commands/rclone_completion_zsh.md b/docs/content/commands/rclone_completion_zsh.md index 92ca04c12..bec42f4c6 100644 --- a/docs/content/commands/rclone_completion_zsh.md +++ b/docs/content/commands/rclone_completion_zsh.md @@ -1,8 +1,6 @@ --- title: "rclone completion zsh" description: "Output zsh completion script for rclone." -slug: rclone_completion_zsh -url: /commands/rclone_completion_zsh/ # autogenerated - DO NOT EDIT, instead edit the source code in cmd/completion/zsh/ and as part of making a release run "make commanddocs" --- # rclone completion zsh diff --git a/docs/content/commands/rclone_config.md b/docs/content/commands/rclone_config.md index ee4c1403b..e79798f8b 100644 --- a/docs/content/commands/rclone_config.md +++ b/docs/content/commands/rclone_config.md @@ -1,8 +1,6 @@ --- title: "rclone config" description: "Enter an interactive configuration session." -slug: rclone_config -url: /commands/rclone_config/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_create.md b/docs/content/commands/rclone_config_create.md index 326c142c2..9a52085da 100644 --- a/docs/content/commands/rclone_config_create.md +++ b/docs/content/commands/rclone_config_create.md @@ -1,8 +1,6 @@ --- title: "rclone config create" description: "Create a new remote with name, type and options." -slug: rclone_config_create -url: /commands/rclone_config_create/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/create/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_delete.md b/docs/content/commands/rclone_config_delete.md index aeafa236b..a1e740dd1 100644 --- a/docs/content/commands/rclone_config_delete.md +++ b/docs/content/commands/rclone_config_delete.md @@ -1,8 +1,6 @@ --- title: "rclone config delete" description: "Delete an existing remote." -slug: rclone_config_delete -url: /commands/rclone_config_delete/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/delete/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_disconnect.md b/docs/content/commands/rclone_config_disconnect.md index 619c01b82..1acdb209a 100644 --- a/docs/content/commands/rclone_config_disconnect.md +++ b/docs/content/commands/rclone_config_disconnect.md @@ -1,8 +1,6 @@ --- title: "rclone config disconnect" description: "Disconnects user from remote" -slug: 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 diff --git a/docs/content/commands/rclone_config_dump.md b/docs/content/commands/rclone_config_dump.md index 5e6c859bf..d7f8f55d3 100644 --- a/docs/content/commands/rclone_config_dump.md +++ b/docs/content/commands/rclone_config_dump.md @@ -1,8 +1,6 @@ --- title: "rclone config dump" description: "Dump the config file as JSON." -slug: rclone_config_dump -url: /commands/rclone_config_dump/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/dump/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_edit.md b/docs/content/commands/rclone_config_edit.md index 2d3639196..4fbd49124 100644 --- a/docs/content/commands/rclone_config_edit.md +++ b/docs/content/commands/rclone_config_edit.md @@ -1,8 +1,6 @@ --- title: "rclone config edit" description: "Enter an interactive configuration session." -slug: rclone_config_edit -url: /commands/rclone_config_edit/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/edit/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_file.md b/docs/content/commands/rclone_config_file.md index 76de779d5..73a8d6e0b 100644 --- a/docs/content/commands/rclone_config_file.md +++ b/docs/content/commands/rclone_config_file.md @@ -1,8 +1,6 @@ --- title: "rclone config file" description: "Show path of configuration file in use." -slug: rclone_config_file -url: /commands/rclone_config_file/ versionIntroduced: v1.38 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/file/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_password.md b/docs/content/commands/rclone_config_password.md index 406877bc1..7d7cf73fd 100644 --- a/docs/content/commands/rclone_config_password.md +++ b/docs/content/commands/rclone_config_password.md @@ -1,8 +1,6 @@ --- title: "rclone config password" description: "Update password in an existing remote." -slug: rclone_config_password -url: /commands/rclone_config_password/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/password/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_paths.md b/docs/content/commands/rclone_config_paths.md index 2b12cc6ad..ef72f97ab 100644 --- a/docs/content/commands/rclone_config_paths.md +++ b/docs/content/commands/rclone_config_paths.md @@ -1,8 +1,6 @@ --- title: "rclone config paths" description: "Show paths used for configuration, cache, temp etc." -slug: rclone_config_paths -url: /commands/rclone_config_paths/ versionIntroduced: v1.57 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/paths/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_providers.md b/docs/content/commands/rclone_config_providers.md index 07668581d..d8e636b32 100644 --- a/docs/content/commands/rclone_config_providers.md +++ b/docs/content/commands/rclone_config_providers.md @@ -1,8 +1,6 @@ --- title: "rclone config providers" description: "List in JSON format all the providers and options." -slug: rclone_config_providers -url: /commands/rclone_config_providers/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/providers/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_reconnect.md b/docs/content/commands/rclone_config_reconnect.md index c60608ced..97265f46b 100644 --- a/docs/content/commands/rclone_config_reconnect.md +++ b/docs/content/commands/rclone_config_reconnect.md @@ -1,8 +1,6 @@ --- title: "rclone config reconnect" description: "Re-authenticates user with remote." -slug: 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 diff --git a/docs/content/commands/rclone_config_redacted.md b/docs/content/commands/rclone_config_redacted.md index e792dde4c..58221968e 100644 --- a/docs/content/commands/rclone_config_redacted.md +++ b/docs/content/commands/rclone_config_redacted.md @@ -1,8 +1,6 @@ --- title: "rclone config redacted" description: "Print redacted (decrypted) config file, or the redacted config for a single remote." -slug: rclone_config_redacted -url: /commands/rclone_config_redacted/ versionIntroduced: v1.64 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/redacted/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_show.md b/docs/content/commands/rclone_config_show.md index 5bf4150bf..37a6f3c5c 100644 --- a/docs/content/commands/rclone_config_show.md +++ b/docs/content/commands/rclone_config_show.md @@ -1,8 +1,6 @@ --- title: "rclone config show" description: "Print (decrypted) config file, or the config for a single remote." -slug: rclone_config_show -url: /commands/rclone_config_show/ versionIntroduced: v1.38 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/show/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_touch.md b/docs/content/commands/rclone_config_touch.md index c16f95af8..913d895f7 100644 --- a/docs/content/commands/rclone_config_touch.md +++ b/docs/content/commands/rclone_config_touch.md @@ -1,8 +1,6 @@ --- title: "rclone config touch" description: "Ensure configuration file exists." -slug: rclone_config_touch -url: /commands/rclone_config_touch/ versionIntroduced: v1.56 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/touch/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_update.md b/docs/content/commands/rclone_config_update.md index 55147084d..3efc6219a 100644 --- a/docs/content/commands/rclone_config_update.md +++ b/docs/content/commands/rclone_config_update.md @@ -1,8 +1,6 @@ --- title: "rclone config update" description: "Update options in an existing remote." -slug: rclone_config_update -url: /commands/rclone_config_update/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/update/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_config_userinfo.md b/docs/content/commands/rclone_config_userinfo.md index ab1ba9539..87018428f 100644 --- a/docs/content/commands/rclone_config_userinfo.md +++ b/docs/content/commands/rclone_config_userinfo.md @@ -1,8 +1,6 @@ --- title: "rclone config userinfo" description: "Prints info about logged in user of remote." -slug: 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 diff --git a/docs/content/commands/rclone_copy.md b/docs/content/commands/rclone_copy.md index 75eb5af4b..b8633cb35 100644 --- a/docs/content/commands/rclone_copy.md +++ b/docs/content/commands/rclone_copy.md @@ -1,8 +1,6 @@ --- title: "rclone copy" description: "Copy files from source to dest, skipping identical files." -slug: rclone_copy -url: /commands/rclone_copy/ groups: Copy,Filter,Listing,Important # autogenerated - DO NOT EDIT, instead edit the source code in cmd/copy/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_copyto.md b/docs/content/commands/rclone_copyto.md index 204681598..af25d213d 100644 --- a/docs/content/commands/rclone_copyto.md +++ b/docs/content/commands/rclone_copyto.md @@ -1,8 +1,6 @@ --- title: "rclone copyto" description: "Copy files from source to dest, skipping identical files." -slug: rclone_copyto -url: /commands/rclone_copyto/ groups: Copy,Filter,Listing,Important versionIntroduced: v1.35 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyto/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_copyurl.md b/docs/content/commands/rclone_copyurl.md index a6ac94a10..c205be914 100644 --- a/docs/content/commands/rclone_copyurl.md +++ b/docs/content/commands/rclone_copyurl.md @@ -1,8 +1,6 @@ --- title: "rclone copyurl" description: "Copy the contents of the URL supplied content to dest:path." -slug: rclone_copyurl -url: /commands/rclone_copyurl/ groups: Important versionIntroduced: v1.43 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyurl/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_cryptcheck.md b/docs/content/commands/rclone_cryptcheck.md index 9f258d2f0..8bc1c755d 100644 --- a/docs/content/commands/rclone_cryptcheck.md +++ b/docs/content/commands/rclone_cryptcheck.md @@ -1,8 +1,6 @@ --- title: "rclone cryptcheck" description: "Cryptcheck checks the integrity of an encrypted remote." -slug: rclone_cryptcheck -url: /commands/rclone_cryptcheck/ groups: Filter,Listing,Check versionIntroduced: v1.36 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/cryptcheck/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_cryptdecode.md b/docs/content/commands/rclone_cryptdecode.md index bc9425407..8964268fe 100644 --- a/docs/content/commands/rclone_cryptdecode.md +++ b/docs/content/commands/rclone_cryptdecode.md @@ -1,8 +1,6 @@ --- title: "rclone cryptdecode" description: "Cryptdecode returns unencrypted file names." -slug: rclone_cryptdecode -url: /commands/rclone_cryptdecode/ versionIntroduced: v1.38 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/cryptdecode/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_dedupe.md b/docs/content/commands/rclone_dedupe.md index 3791dfb41..391100380 100644 --- a/docs/content/commands/rclone_dedupe.md +++ b/docs/content/commands/rclone_dedupe.md @@ -1,8 +1,6 @@ --- title: "rclone dedupe" description: "Interactively find duplicate filenames and delete/rename them." -slug: rclone_dedupe -url: /commands/rclone_dedupe/ groups: Important versionIntroduced: v1.27 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/dedupe/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_delete.md b/docs/content/commands/rclone_delete.md index 9bfa4f8da..3b6cfa839 100644 --- a/docs/content/commands/rclone_delete.md +++ b/docs/content/commands/rclone_delete.md @@ -1,8 +1,6 @@ --- title: "rclone delete" description: "Remove the files in path." -slug: rclone_delete -url: /commands/rclone_delete/ groups: Important,Filter,Listing versionIntroduced: v1.27 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/delete/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_deletefile.md b/docs/content/commands/rclone_deletefile.md index 5bc923070..59d49e524 100644 --- a/docs/content/commands/rclone_deletefile.md +++ b/docs/content/commands/rclone_deletefile.md @@ -1,8 +1,6 @@ --- title: "rclone deletefile" description: "Remove a single file from remote." -slug: rclone_deletefile -url: /commands/rclone_deletefile/ groups: Important versionIntroduced: v1.42 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/deletefile/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_gendocs.md b/docs/content/commands/rclone_gendocs.md index d89d287c8..43b4ffdf0 100644 --- a/docs/content/commands/rclone_gendocs.md +++ b/docs/content/commands/rclone_gendocs.md @@ -1,8 +1,6 @@ --- title: "rclone gendocs" description: "Output markdown docs for rclone to the directory supplied." -slug: rclone_gendocs -url: /commands/rclone_gendocs/ versionIntroduced: v1.33 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/gendocs/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_gitannex.md b/docs/content/commands/rclone_gitannex.md index 45e5aeb54..bc8d096ec 100644 --- a/docs/content/commands/rclone_gitannex.md +++ b/docs/content/commands/rclone_gitannex.md @@ -1,8 +1,6 @@ --- title: "rclone gitannex" description: "Speaks with git-annex over stdin/stdout." -slug: rclone_gitannex -url: /commands/rclone_gitannex/ versionIntroduced: v1.67.0 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/gitannex/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_hashsum.md b/docs/content/commands/rclone_hashsum.md index b3392c01b..7092bfa19 100644 --- a/docs/content/commands/rclone_hashsum.md +++ b/docs/content/commands/rclone_hashsum.md @@ -1,8 +1,6 @@ --- title: "rclone hashsum" description: "Produces a hashsum file for all the objects in the path." -slug: rclone_hashsum -url: /commands/rclone_hashsum/ groups: Filter,Listing versionIntroduced: v1.41 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/hashsum/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_link.md b/docs/content/commands/rclone_link.md index 71b461a93..65d0b2fb8 100644 --- a/docs/content/commands/rclone_link.md +++ b/docs/content/commands/rclone_link.md @@ -1,8 +1,6 @@ --- title: "rclone link" description: "Generate public link to file/folder." -slug: rclone_link -url: /commands/rclone_link/ versionIntroduced: v1.41 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/link/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_listremotes.md b/docs/content/commands/rclone_listremotes.md index a9606cfc5..6e14a8115 100644 --- a/docs/content/commands/rclone_listremotes.md +++ b/docs/content/commands/rclone_listremotes.md @@ -1,8 +1,6 @@ --- title: "rclone listremotes" description: "List all the remotes in the config file and defined in environment variables." -slug: rclone_listremotes -url: /commands/rclone_listremotes/ versionIntroduced: v1.34 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/listremotes/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_ls.md b/docs/content/commands/rclone_ls.md index 5c438b1bb..352c000cd 100644 --- a/docs/content/commands/rclone_ls.md +++ b/docs/content/commands/rclone_ls.md @@ -1,8 +1,6 @@ --- title: "rclone ls" description: "List the objects in the path with size and path." -slug: rclone_ls -url: /commands/rclone_ls/ groups: Filter,Listing # autogenerated - DO NOT EDIT, instead edit the source code in cmd/ls/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_lsd.md b/docs/content/commands/rclone_lsd.md index 8fd419357..670342e2e 100644 --- a/docs/content/commands/rclone_lsd.md +++ b/docs/content/commands/rclone_lsd.md @@ -1,8 +1,6 @@ --- title: "rclone lsd" description: "List all directories/containers/buckets in the path." -slug: rclone_lsd -url: /commands/rclone_lsd/ groups: Filter,Listing # autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsd/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_lsf.md b/docs/content/commands/rclone_lsf.md index 7973b636a..525bca3ca 100644 --- a/docs/content/commands/rclone_lsf.md +++ b/docs/content/commands/rclone_lsf.md @@ -1,8 +1,6 @@ --- title: "rclone lsf" description: "List directories and objects in remote:path formatted for parsing." -slug: rclone_lsf -url: /commands/rclone_lsf/ groups: Filter,Listing versionIntroduced: v1.40 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsf/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_lsjson.md b/docs/content/commands/rclone_lsjson.md index dfcdbd779..b15441244 100644 --- a/docs/content/commands/rclone_lsjson.md +++ b/docs/content/commands/rclone_lsjson.md @@ -1,8 +1,6 @@ --- title: "rclone lsjson" description: "List directories and objects in the path in JSON format." -slug: rclone_lsjson -url: /commands/rclone_lsjson/ groups: Filter,Listing versionIntroduced: v1.37 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsjson/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_lsl.md b/docs/content/commands/rclone_lsl.md index eb4617906..8b8dba6d9 100644 --- a/docs/content/commands/rclone_lsl.md +++ b/docs/content/commands/rclone_lsl.md @@ -1,8 +1,6 @@ --- title: "rclone lsl" description: "List the objects in path with modification time, size and path." -slug: rclone_lsl -url: /commands/rclone_lsl/ groups: Filter,Listing versionIntroduced: v1.02 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsl/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_md5sum.md b/docs/content/commands/rclone_md5sum.md index 0ec173a5f..8089e554f 100644 --- a/docs/content/commands/rclone_md5sum.md +++ b/docs/content/commands/rclone_md5sum.md @@ -1,8 +1,6 @@ --- title: "rclone md5sum" description: "Produces an md5sum file for all the objects in the path." -slug: rclone_md5sum -url: /commands/rclone_md5sum/ groups: Filter,Listing versionIntroduced: v1.02 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/md5sum/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_mkdir.md b/docs/content/commands/rclone_mkdir.md index 0ca2025ab..a3184480e 100644 --- a/docs/content/commands/rclone_mkdir.md +++ b/docs/content/commands/rclone_mkdir.md @@ -1,8 +1,6 @@ --- title: "rclone mkdir" description: "Make the path if it doesn't already exist." -slug: rclone_mkdir -url: /commands/rclone_mkdir/ groups: Important # autogenerated - DO NOT EDIT, instead edit the source code in cmd/mkdir/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_mount.md b/docs/content/commands/rclone_mount.md index d48f71b22..1ac036173 100644 --- a/docs/content/commands/rclone_mount.md +++ b/docs/content/commands/rclone_mount.md @@ -1,8 +1,6 @@ --- title: "rclone mount" description: "Mount the remote as file system on a mountpoint." -slug: rclone_mount -url: /commands/rclone_mount/ groups: Filter versionIntroduced: v1.33 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/mount/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_move.md b/docs/content/commands/rclone_move.md index 65e64b26d..f7aea1b05 100644 --- a/docs/content/commands/rclone_move.md +++ b/docs/content/commands/rclone_move.md @@ -1,8 +1,6 @@ --- title: "rclone move" description: "Move files from source to dest." -slug: rclone_move -url: /commands/rclone_move/ groups: Filter,Listing,Important,Copy versionIntroduced: v1.19 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/move/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_moveto.md b/docs/content/commands/rclone_moveto.md index ba285e7e9..dd86c3f2c 100644 --- a/docs/content/commands/rclone_moveto.md +++ b/docs/content/commands/rclone_moveto.md @@ -1,8 +1,6 @@ --- title: "rclone moveto" description: "Move file or directory from source to dest." -slug: rclone_moveto -url: /commands/rclone_moveto/ groups: Filter,Listing,Important,Copy versionIntroduced: v1.35 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/moveto/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_ncdu.md b/docs/content/commands/rclone_ncdu.md index c0352b34c..2d1680079 100644 --- a/docs/content/commands/rclone_ncdu.md +++ b/docs/content/commands/rclone_ncdu.md @@ -1,8 +1,6 @@ --- title: "rclone ncdu" description: "Explore a remote with a text based user interface." -slug: rclone_ncdu -url: /commands/rclone_ncdu/ groups: Filter,Listing versionIntroduced: v1.37 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/ncdu/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_nfsmount.md b/docs/content/commands/rclone_nfsmount.md index dfe31eca6..72145e259 100644 --- a/docs/content/commands/rclone_nfsmount.md +++ b/docs/content/commands/rclone_nfsmount.md @@ -1,8 +1,6 @@ --- title: "rclone nfsmount" description: "Mount the remote as file system on a mountpoint." -slug: rclone_nfsmount -url: /commands/rclone_nfsmount/ groups: Filter status: Experimental versionIntroduced: v1.65 diff --git a/docs/content/commands/rclone_obscure.md b/docs/content/commands/rclone_obscure.md index d5ab27510..0498ac79b 100644 --- a/docs/content/commands/rclone_obscure.md +++ b/docs/content/commands/rclone_obscure.md @@ -1,8 +1,6 @@ --- title: "rclone obscure" description: "Obscure password for use in the rclone config file." -slug: rclone_obscure -url: /commands/rclone_obscure/ versionIntroduced: v1.36 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/obscure/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_purge.md b/docs/content/commands/rclone_purge.md index 7fea5b3f5..cfb47707e 100644 --- a/docs/content/commands/rclone_purge.md +++ b/docs/content/commands/rclone_purge.md @@ -1,8 +1,6 @@ --- title: "rclone purge" description: "Remove the path and all of its contents." -slug: rclone_purge -url: /commands/rclone_purge/ groups: Important # autogenerated - DO NOT EDIT, instead edit the source code in cmd/purge/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_rc.md b/docs/content/commands/rclone_rc.md index 5ffad0804..a5259dd4a 100644 --- a/docs/content/commands/rclone_rc.md +++ b/docs/content/commands/rclone_rc.md @@ -1,8 +1,6 @@ --- title: "rclone rc" description: "Run a command against a running rclone." -slug: rclone_rc -url: /commands/rclone_rc/ versionIntroduced: v1.40 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/rc/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_rcat.md b/docs/content/commands/rclone_rcat.md index 1f2545881..8434c72d1 100644 --- a/docs/content/commands/rclone_rcat.md +++ b/docs/content/commands/rclone_rcat.md @@ -1,8 +1,6 @@ --- title: "rclone rcat" description: "Copies standard input to file on remote." -slug: rclone_rcat -url: /commands/rclone_rcat/ groups: Important versionIntroduced: v1.38 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/rcat/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_rcd.md b/docs/content/commands/rclone_rcd.md index 869772c8a..6df6603b4 100644 --- a/docs/content/commands/rclone_rcd.md +++ b/docs/content/commands/rclone_rcd.md @@ -1,8 +1,6 @@ --- title: "rclone rcd" description: "Run rclone listening to remote control commands only." -slug: rclone_rcd -url: /commands/rclone_rcd/ groups: RC versionIntroduced: v1.45 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/rcd/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_rmdir.md b/docs/content/commands/rclone_rmdir.md index 72c41b722..bd5ae2e5b 100644 --- a/docs/content/commands/rclone_rmdir.md +++ b/docs/content/commands/rclone_rmdir.md @@ -1,8 +1,6 @@ --- title: "rclone rmdir" description: "Remove the empty directory at path." -slug: rclone_rmdir -url: /commands/rclone_rmdir/ groups: Important # autogenerated - DO NOT EDIT, instead edit the source code in cmd/rmdir/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_rmdirs.md b/docs/content/commands/rclone_rmdirs.md index 1a89a0726..65e32af11 100644 --- a/docs/content/commands/rclone_rmdirs.md +++ b/docs/content/commands/rclone_rmdirs.md @@ -1,8 +1,6 @@ --- title: "rclone rmdirs" description: "Remove empty directories under the path." -slug: rclone_rmdirs -url: /commands/rclone_rmdirs/ groups: Important versionIntroduced: v1.35 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/rmdirs/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_selfupdate.md b/docs/content/commands/rclone_selfupdate.md index 82994370e..e245ed63f 100644 --- a/docs/content/commands/rclone_selfupdate.md +++ b/docs/content/commands/rclone_selfupdate.md @@ -1,8 +1,6 @@ --- title: "rclone selfupdate" description: "Update the rclone binary." -slug: rclone_selfupdate -url: /commands/rclone_selfupdate/ versionIntroduced: v1.55 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/selfupdate/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_serve.md b/docs/content/commands/rclone_serve.md index 211472b89..80d726cfa 100644 --- a/docs/content/commands/rclone_serve.md +++ b/docs/content/commands/rclone_serve.md @@ -1,8 +1,6 @@ --- title: "rclone serve" description: "Serve a remote over a protocol." -slug: rclone_serve -url: /commands/rclone_serve/ versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_serve_dlna.md b/docs/content/commands/rclone_serve_dlna.md index d55176dc0..956692464 100644 --- a/docs/content/commands/rclone_serve_dlna.md +++ b/docs/content/commands/rclone_serve_dlna.md @@ -1,8 +1,6 @@ --- title: "rclone serve dlna" description: "Serve remote:path over DLNA" -slug: rclone_serve_dlna -url: /commands/rclone_serve_dlna/ groups: Filter versionIntroduced: v1.46 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/dlna/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_serve_docker.md b/docs/content/commands/rclone_serve_docker.md index 44fdd5f1c..35580fd76 100644 --- a/docs/content/commands/rclone_serve_docker.md +++ b/docs/content/commands/rclone_serve_docker.md @@ -1,8 +1,6 @@ --- title: "rclone serve docker" description: "Serve any remote on docker's volume plugin API." -slug: rclone_serve_docker -url: /commands/rclone_serve_docker/ groups: Filter versionIntroduced: v1.56 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/docker/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_serve_ftp.md b/docs/content/commands/rclone_serve_ftp.md index d2e70c9f6..cfa0ddd5c 100644 --- a/docs/content/commands/rclone_serve_ftp.md +++ b/docs/content/commands/rclone_serve_ftp.md @@ -1,8 +1,6 @@ --- title: "rclone serve ftp" description: "Serve remote:path over FTP." -slug: rclone_serve_ftp -url: /commands/rclone_serve_ftp/ groups: Filter versionIntroduced: v1.44 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/ftp/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_serve_http.md b/docs/content/commands/rclone_serve_http.md index d70c538ea..ac52a7267 100644 --- a/docs/content/commands/rclone_serve_http.md +++ b/docs/content/commands/rclone_serve_http.md @@ -1,8 +1,6 @@ --- title: "rclone serve http" description: "Serve the remote over HTTP." -slug: rclone_serve_http -url: /commands/rclone_serve_http/ groups: Filter versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/http/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_serve_nfs.md b/docs/content/commands/rclone_serve_nfs.md index 565e38db8..73e8d5ea0 100644 --- a/docs/content/commands/rclone_serve_nfs.md +++ b/docs/content/commands/rclone_serve_nfs.md @@ -1,8 +1,6 @@ --- title: "rclone serve nfs" description: "Serve the remote as an NFS mount" -slug: rclone_serve_nfs -url: /commands/rclone_serve_nfs/ groups: Filter status: Experimental versionIntroduced: v1.65 diff --git a/docs/content/commands/rclone_serve_restic.md b/docs/content/commands/rclone_serve_restic.md index f6ad9c7ef..25c31c9d6 100644 --- a/docs/content/commands/rclone_serve_restic.md +++ b/docs/content/commands/rclone_serve_restic.md @@ -1,8 +1,6 @@ --- title: "rclone serve restic" description: "Serve the remote for restic's REST API." -slug: rclone_serve_restic -url: /commands/rclone_serve_restic/ versionIntroduced: v1.40 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/restic/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_serve_s3.md b/docs/content/commands/rclone_serve_s3.md index 84aefd9f8..c55ffd6f7 100644 --- a/docs/content/commands/rclone_serve_s3.md +++ b/docs/content/commands/rclone_serve_s3.md @@ -1,8 +1,6 @@ --- title: "rclone serve s3" description: "Serve remote:path over s3." -slug: rclone_serve_s3 -url: /commands/rclone_serve_s3/ groups: Filter status: Experimental versionIntroduced: v1.65 diff --git a/docs/content/commands/rclone_serve_sftp.md b/docs/content/commands/rclone_serve_sftp.md index 10ccaf190..40acc461c 100644 --- a/docs/content/commands/rclone_serve_sftp.md +++ b/docs/content/commands/rclone_serve_sftp.md @@ -1,8 +1,6 @@ --- title: "rclone serve sftp" description: "Serve the remote over SFTP." -slug: rclone_serve_sftp -url: /commands/rclone_serve_sftp/ groups: Filter versionIntroduced: v1.48 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/sftp/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_serve_webdav.md b/docs/content/commands/rclone_serve_webdav.md index 621cbacf6..15f60bf23 100644 --- a/docs/content/commands/rclone_serve_webdav.md +++ b/docs/content/commands/rclone_serve_webdav.md @@ -1,8 +1,6 @@ --- title: "rclone serve webdav" description: "Serve remote:path over WebDAV." -slug: rclone_serve_webdav -url: /commands/rclone_serve_webdav/ groups: Filter versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/webdav/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_settier.md b/docs/content/commands/rclone_settier.md index 5bcf1425d..6e1b6d196 100644 --- a/docs/content/commands/rclone_settier.md +++ b/docs/content/commands/rclone_settier.md @@ -1,8 +1,6 @@ --- title: "rclone settier" description: "Changes storage class/tier of objects in remote." -slug: rclone_settier -url: /commands/rclone_settier/ versionIntroduced: v1.44 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/settier/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_sha1sum.md b/docs/content/commands/rclone_sha1sum.md index 4992640ad..b70f603a2 100644 --- a/docs/content/commands/rclone_sha1sum.md +++ b/docs/content/commands/rclone_sha1sum.md @@ -1,8 +1,6 @@ --- title: "rclone sha1sum" description: "Produces an sha1sum file for all the objects in the path." -slug: rclone_sha1sum -url: /commands/rclone_sha1sum/ groups: Filter,Listing versionIntroduced: v1.27 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/sha1sum/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_size.md b/docs/content/commands/rclone_size.md index 06858eb3b..f29b33129 100644 --- a/docs/content/commands/rclone_size.md +++ b/docs/content/commands/rclone_size.md @@ -1,8 +1,6 @@ --- title: "rclone size" description: "Prints the total size and number of objects in remote:path." -slug: rclone_size -url: /commands/rclone_size/ groups: Filter,Listing versionIntroduced: v1.23 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/size/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_sync.md b/docs/content/commands/rclone_sync.md index 41fd63c89..68be15e3d 100644 --- a/docs/content/commands/rclone_sync.md +++ b/docs/content/commands/rclone_sync.md @@ -1,8 +1,6 @@ --- title: "rclone sync" description: "Make source and dest identical, modifying destination only." -slug: rclone_sync -url: /commands/rclone_sync/ groups: Sync,Copy,Filter,Listing,Important # autogenerated - DO NOT EDIT, instead edit the source code in cmd/sync/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test.md b/docs/content/commands/rclone_test.md index aa0f9a114..8af7509bf 100644 --- a/docs/content/commands/rclone_test.md +++ b/docs/content/commands/rclone_test.md @@ -1,8 +1,6 @@ --- title: "rclone test" description: "Run a test command" -slug: rclone_test -url: /commands/rclone_test/ versionIntroduced: v1.55 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test_changenotify.md b/docs/content/commands/rclone_test_changenotify.md index 3b5b192af..92c5179ca 100644 --- a/docs/content/commands/rclone_test_changenotify.md +++ b/docs/content/commands/rclone_test_changenotify.md @@ -1,8 +1,6 @@ --- title: "rclone test changenotify" description: "Log any change notify requests for the remote passed in." -slug: rclone_test_changenotify -url: /commands/rclone_test_changenotify/ versionIntroduced: v1.56 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/changenotify/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test_histogram.md b/docs/content/commands/rclone_test_histogram.md index 9a9e2d875..6a70b7059 100644 --- a/docs/content/commands/rclone_test_histogram.md +++ b/docs/content/commands/rclone_test_histogram.md @@ -1,8 +1,6 @@ --- title: "rclone test histogram" description: "Makes a histogram of file name characters." -slug: rclone_test_histogram -url: /commands/rclone_test_histogram/ versionIntroduced: v1.55 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/histogram/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test_info.md b/docs/content/commands/rclone_test_info.md index fe225e56c..2cfe34855 100644 --- a/docs/content/commands/rclone_test_info.md +++ b/docs/content/commands/rclone_test_info.md @@ -1,8 +1,6 @@ --- title: "rclone test info" description: "Discovers file name or other limitations for paths." -slug: rclone_test_info -url: /commands/rclone_test_info/ versionIntroduced: v1.55 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/info/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test_makefile.md b/docs/content/commands/rclone_test_makefile.md index 195fb8fd6..a0dd91ec6 100644 --- a/docs/content/commands/rclone_test_makefile.md +++ b/docs/content/commands/rclone_test_makefile.md @@ -1,8 +1,6 @@ --- title: "rclone test makefile" description: "Make files with random contents of the size given" -slug: rclone_test_makefile -url: /commands/rclone_test_makefile/ versionIntroduced: v1.59 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/makefile/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test_makefiles.md b/docs/content/commands/rclone_test_makefiles.md index d2b0304fc..be1eb0f21 100644 --- a/docs/content/commands/rclone_test_makefiles.md +++ b/docs/content/commands/rclone_test_makefiles.md @@ -1,8 +1,6 @@ --- title: "rclone test makefiles" description: "Make a random file hierarchy in a directory" -slug: rclone_test_makefiles -url: /commands/rclone_test_makefiles/ versionIntroduced: v1.55 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/makefiles/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_test_memory.md b/docs/content/commands/rclone_test_memory.md index 49141e14c..c79aaea3d 100644 --- a/docs/content/commands/rclone_test_memory.md +++ b/docs/content/commands/rclone_test_memory.md @@ -1,8 +1,6 @@ --- title: "rclone test memory" description: "Load all the objects at remote:path into memory and report memory stats." -slug: rclone_test_memory -url: /commands/rclone_test_memory/ versionIntroduced: v1.55 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/test/memory/ and as part of making a release run "make commanddocs" --- diff --git a/docs/content/commands/rclone_touch.md b/docs/content/commands/rclone_touch.md index b44925414..b47ebd1bc 100644 --- a/docs/content/commands/rclone_touch.md +++ b/docs/content/commands/rclone_touch.md @@ -1,8 +1,6 @@ --- title: "rclone touch" description: "Create new file or change file modification time." -slug: rclone_touch -url: /commands/rclone_touch/ groups: Filter,Listing,Important versionIntroduced: v1.39 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/touch/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_tree.md b/docs/content/commands/rclone_tree.md index 015197904..eb891a448 100644 --- a/docs/content/commands/rclone_tree.md +++ b/docs/content/commands/rclone_tree.md @@ -1,8 +1,6 @@ --- title: "rclone tree" description: "List the contents of the remote in a tree like fashion." -slug: rclone_tree -url: /commands/rclone_tree/ groups: Filter,Listing versionIntroduced: v1.38 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/tree/ and as part of making a release run "make commanddocs" diff --git a/docs/content/commands/rclone_version.md b/docs/content/commands/rclone_version.md index d62ddf60b..0896cda13 100644 --- a/docs/content/commands/rclone_version.md +++ b/docs/content/commands/rclone_version.md @@ -1,8 +1,6 @@ --- title: "rclone version" description: "Show the version number." -slug: rclone_version -url: /commands/rclone_version/ versionIntroduced: v1.33 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/version/ and as part of making a release run "make commanddocs" ---