mirror of
https://github.com/rclone/rclone.git
synced 2025-01-13 20:38:12 +02:00
Typo: the the -> the in docs and comments
This commit is contained in:
parent
f1221b510b
commit
5894c02a34
@ -207,14 +207,14 @@ rclone --dry-run --min-size 100M delete remote:path</code></pre>
|
|||||||
<p><code>--size-only</code> may be used to only compare the sizes, not the MD5SUMs.</p>
|
<p><code>--size-only</code> may be used to only compare the sizes, not the MD5SUMs.</p>
|
||||||
<pre><code>rclone check source:path dest:path</code></pre>
|
<pre><code>rclone check source:path dest:path</code></pre>
|
||||||
<h2 id="rclone-ls">rclone ls</h2>
|
<h2 id="rclone-ls">rclone ls</h2>
|
||||||
<p>List all the objects in the the path with size and path.</p>
|
<p>List all the objects in the path with size and path.</p>
|
||||||
<h3 id="synopsis-9">Synopsis</h3>
|
<h3 id="synopsis-9">Synopsis</h3>
|
||||||
<p>List all the objects in the the path with size and path.</p>
|
<p>List all the objects in the path with size and path.</p>
|
||||||
<pre><code>rclone ls remote:path</code></pre>
|
<pre><code>rclone ls remote:path</code></pre>
|
||||||
<h2 id="rclone-lsd">rclone lsd</h2>
|
<h2 id="rclone-lsd">rclone lsd</h2>
|
||||||
<p>List all directories/containers/buckets in the the path.</p>
|
<p>List all directories/containers/buckets in the path.</p>
|
||||||
<h3 id="synopsis-10">Synopsis</h3>
|
<h3 id="synopsis-10">Synopsis</h3>
|
||||||
<p>List all directories/containers/buckets in the the path.</p>
|
<p>List all directories/containers/buckets in the path.</p>
|
||||||
<pre><code>rclone lsd remote:path</code></pre>
|
<pre><code>rclone lsd remote:path</code></pre>
|
||||||
<h2 id="rclone-lsl">rclone lsl</h2>
|
<h2 id="rclone-lsl">rclone lsl</h2>
|
||||||
<p>List all the objects path with modification time, size and path.</p>
|
<p>List all the objects path with modification time, size and path.</p>
|
||||||
|
@ -406,12 +406,12 @@ rclone check source:path dest:path
|
|||||||
|
|
||||||
## rclone ls
|
## rclone ls
|
||||||
|
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone ls remote:path
|
rclone ls remote:path
|
||||||
@ -419,12 +419,12 @@ rclone ls remote:path
|
|||||||
|
|
||||||
## rclone lsd
|
## rclone lsd
|
||||||
|
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone lsd remote:path
|
rclone lsd remote:path
|
||||||
|
@ -382,22 +382,22 @@ alter the source or destination.
|
|||||||
|
|
||||||
rclone ls
|
rclone ls
|
||||||
|
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
|
|
||||||
Synopsis
|
Synopsis
|
||||||
|
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
|
|
||||||
rclone ls remote:path
|
rclone ls remote:path
|
||||||
|
|
||||||
|
|
||||||
rclone lsd
|
rclone lsd
|
||||||
|
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
|
|
||||||
Synopsis
|
Synopsis
|
||||||
|
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
|
|
||||||
rclone lsd remote:path
|
rclone lsd remote:path
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ func init() {
|
|||||||
|
|
||||||
var commandDefintion = &cobra.Command{
|
var commandDefintion = &cobra.Command{
|
||||||
Use: "ls remote:path",
|
Use: "ls remote:path",
|
||||||
Short: `List all the objects in the the path with size and path.`,
|
Short: `List all the objects in the path with size and path.`,
|
||||||
Run: func(command *cobra.Command, args []string) {
|
Run: func(command *cobra.Command, args []string) {
|
||||||
cmd.CheckArgs(1, 1, command, args)
|
cmd.CheckArgs(1, 1, command, args)
|
||||||
fsrc := cmd.NewFsSrc(args)
|
fsrc := cmd.NewFsSrc(args)
|
||||||
|
@ -14,7 +14,7 @@ func init() {
|
|||||||
|
|
||||||
var commandDefintion = &cobra.Command{
|
var commandDefintion = &cobra.Command{
|
||||||
Use: "lsd remote:path",
|
Use: "lsd remote:path",
|
||||||
Short: `List all directories/containers/buckets in the the path.`,
|
Short: `List all directories/containers/buckets in the path.`,
|
||||||
Run: func(command *cobra.Command, args []string) {
|
Run: func(command *cobra.Command, args []string) {
|
||||||
cmd.CheckArgs(1, 1, command, args)
|
cmd.CheckArgs(1, 1, command, args)
|
||||||
fsrc := cmd.NewFsSrc(args)
|
fsrc := cmd.NewFsSrc(args)
|
||||||
|
@ -133,8 +133,8 @@ rclone
|
|||||||
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output bash completion script for rclone.
|
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output bash completion script for rclone.
|
||||||
* [rclone gendocs](/commands/rclone_gendocs/) - Output markdown docs for rclone to the directory supplied.
|
* [rclone gendocs](/commands/rclone_gendocs/) - Output markdown docs for rclone to the directory supplied.
|
||||||
* [rclone listremotes](/commands/rclone_listremotes/) - List all the remotes in the config file.
|
* [rclone listremotes](/commands/rclone_listremotes/) - List all the remotes in the config file.
|
||||||
* [rclone ls](/commands/rclone_ls/) - List all the objects in the the path with size and path.
|
* [rclone ls](/commands/rclone_ls/) - List all the objects in the path with size and path.
|
||||||
* [rclone lsd](/commands/rclone_lsd/) - List all directories/containers/buckets in the the path.
|
* [rclone lsd](/commands/rclone_lsd/) - List all directories/containers/buckets in the path.
|
||||||
* [rclone lsl](/commands/rclone_lsl/) - List all the objects path with modification time, size and path.
|
* [rclone lsl](/commands/rclone_lsl/) - List all the objects path with modification time, size and path.
|
||||||
* [rclone md5sum](/commands/rclone_md5sum/) - Produces an md5sum file for all the objects in the path.
|
* [rclone md5sum](/commands/rclone_md5sum/) - Produces an md5sum file for all the objects in the path.
|
||||||
* [rclone mkdir](/commands/rclone_mkdir/) - Make the path if it doesn't already exist.
|
* [rclone mkdir](/commands/rclone_mkdir/) - Make the path if it doesn't already exist.
|
||||||
|
@ -6,12 +6,12 @@ url: /commands/rclone_ls/
|
|||||||
---
|
---
|
||||||
## rclone ls
|
## rclone ls
|
||||||
|
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone ls remote:path
|
rclone ls remote:path
|
||||||
|
@ -6,12 +6,12 @@ url: /commands/rclone_lsd/
|
|||||||
---
|
---
|
||||||
## rclone lsd
|
## rclone lsd
|
||||||
|
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone lsd remote:path
|
rclone lsd remote:path
|
||||||
|
@ -67,8 +67,8 @@ The main rclone commands with most used first
|
|||||||
* [rclone mkdir](/commands/rclone_mkdir/) - Make the path if it doesn't already exist.
|
* [rclone mkdir](/commands/rclone_mkdir/) - Make the path if it doesn't already exist.
|
||||||
* [rclone rmdir](/commands/rclone_rmdir/) - Remove the path.
|
* [rclone rmdir](/commands/rclone_rmdir/) - Remove the path.
|
||||||
* [rclone check](/commands/rclone_check/) - Checks the files in the source and destination match.
|
* [rclone check](/commands/rclone_check/) - Checks the files in the source and destination match.
|
||||||
* [rclone ls](/commands/rclone_ls/) - List all the objects in the the path with size and path.
|
* [rclone ls](/commands/rclone_ls/) - List all the objects in the path with size and path.
|
||||||
* [rclone lsd](/commands/rclone_lsd/) - List all directories/containers/buckets in the the path.
|
* [rclone lsd](/commands/rclone_lsd/) - List all directories/containers/buckets in the path.
|
||||||
* [rclone lsl](/commands/rclone_lsl/) - List all the objects path with modification time, size and path.
|
* [rclone lsl](/commands/rclone_lsl/) - List all the objects path with modification time, size and path.
|
||||||
* [rclone md5sum](/commands/rclone_md5sum/) - Produces an md5sum file for all the objects in the path.
|
* [rclone md5sum](/commands/rclone_md5sum/) - Produces an md5sum file for all the objects in the path.
|
||||||
* [rclone sha1sum](/commands/rclone_sha1sum/) - Produces an sha1sum file for all the objects in the path.
|
* [rclone sha1sum](/commands/rclone_sha1sum/) - Produces an sha1sum file for all the objects in the path.
|
||||||
|
8
rclone.1
8
rclone.1
@ -512,10 +512,10 @@ rclone\ check\ source:path\ dest:path
|
|||||||
.fi
|
.fi
|
||||||
.SS rclone ls
|
.SS rclone ls
|
||||||
.PP
|
.PP
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
.SS Synopsis
|
.SS Synopsis
|
||||||
.PP
|
.PP
|
||||||
List all the objects in the the path with size and path.
|
List all the objects in the path with size and path.
|
||||||
.IP
|
.IP
|
||||||
.nf
|
.nf
|
||||||
\f[C]
|
\f[C]
|
||||||
@ -524,10 +524,10 @@ rclone\ ls\ remote:path
|
|||||||
.fi
|
.fi
|
||||||
.SS rclone lsd
|
.SS rclone lsd
|
||||||
.PP
|
.PP
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
.SS Synopsis
|
.SS Synopsis
|
||||||
.PP
|
.PP
|
||||||
List all directories/containers/buckets in the the path.
|
List all directories/containers/buckets in the path.
|
||||||
.IP
|
.IP
|
||||||
.nf
|
.nf
|
||||||
\f[C]
|
\f[C]
|
||||||
|
Loading…
Reference in New Issue
Block a user