mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
Version v1.62.2
This commit is contained in:
parent
785c6d5ab6
commit
78d0f48b98
19
MANUAL.html
generated
19
MANUAL.html
generated
@ -19,7 +19,7 @@
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">rclone(1) User Manual</h1>
|
||||
<p class="author">Nick Craig-Wood</p>
|
||||
<p class="date">Mar 15, 2023</p>
|
||||
<p class="date">Mar 16, 2023</p>
|
||||
</header>
|
||||
<h1 id="rclone-syncs-your-files-to-cloud-storage">Rclone syncs your files to cloud storage</h1>
|
||||
<p><img width="50%" src="https://rclone.org/img/logo_on_light__horizontal_color.svg" alt="rclone logo" style="float:right; padding: 5px;" ></p>
|
||||
@ -785,7 +785,7 @@ rclone --dry-run --min-size 100M delete remote:path</code></pre>
|
||||
<p>Counts objects in the path and calculates the total size. Prints the result to standard output.</p>
|
||||
<p>By default the output is in human-readable format, but shows values in both human-readable format as well as the raw numbers (global option <code>--human-readable</code> is not considered). Use option <code>--json</code> to format output as JSON instead.</p>
|
||||
<p>Recurses by default, use <code>--max-depth 1</code> to stop the recursion.</p>
|
||||
<p>Some backends do not always provide file sizes, see for example <a href="https://rclone.org/googlephotos/#size">Google Photos</a> and <a href="https://rclone.org/drive/#limitations-of-google-docs">Google Drive</a>. Rclone will then show a notice in the log indicating how many such files were encountered, and count them in as empty files in the output of the size command.</p>
|
||||
<p>Some backends do not always provide file sizes, see for example <a href="https://rclone.org/googlephotos/#size">Google Photos</a> and <a href="https://rclone.org/drive/#limitations-of-google-docs">Google Docs</a>. Rclone will then show a notice in the log indicating how many such files were encountered, and count them in as empty files in the output of the size command.</p>
|
||||
<pre><code>rclone size remote:path [flags]</code></pre>
|
||||
<h2 id="options-14">Options</h2>
|
||||
<pre><code> -h, --help help for size
|
||||
@ -8642,7 +8642,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
|
||||
--use-json-log Use json log format
|
||||
--use-mmap Use mmap allocator (see docs)
|
||||
--use-server-modtime Use server modified time instead of object metadata
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.2")
|
||||
-v, --verbose count Print lots more stuff (repeat for more)</code></pre>
|
||||
<h2 id="backend-flags">Backend Flags</h2>
|
||||
<p>These flags are available for every command. They control the backends and may be set in the config file.</p>
|
||||
@ -29922,6 +29922,19 @@ $ tree /tmp/b
|
||||
<li>"error": return an error based on option value</li>
|
||||
</ul>
|
||||
<h1 id="changelog">Changelog</h1>
|
||||
<h2 id="v1.62.2---2023-03-16">v1.62.2 - 2023-03-16</h2>
|
||||
<p><a href="https://github.com/rclone/rclone/compare/v1.62.1...v1.62.2">See commits</a></p>
|
||||
<ul>
|
||||
<li>Bug Fixes
|
||||
<ul>
|
||||
<li>docker volume plugin: Add missing fuse3 dependency (Nick Craig-Wood)</li>
|
||||
<li>docs: Fix size documentation (asdffdsazqqq)</li>
|
||||
</ul></li>
|
||||
<li>FTP
|
||||
<ul>
|
||||
<li>Fix 426 errors on downloads with vsftpd (Lesmiscore)</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<h2 id="v1.62.1---2023-03-15">v1.62.1 - 2023-03-15</h2>
|
||||
<p><a href="https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1">See commits</a></p>
|
||||
<ul>
|
||||
|
16
MANUAL.md
generated
16
MANUAL.md
generated
@ -1,6 +1,6 @@
|
||||
% rclone(1) User Manual
|
||||
% Nick Craig-Wood
|
||||
% Mar 15, 2023
|
||||
% Mar 16, 2023
|
||||
|
||||
# Rclone syncs your files to cloud storage
|
||||
|
||||
@ -1593,7 +1593,7 @@ recursion.
|
||||
|
||||
Some backends do not always provide file sizes, see for example
|
||||
[Google Photos](https://rclone.org/googlephotos/#size) and
|
||||
[Google Drive](https://rclone.org/drive/#limitations-of-google-docs).
|
||||
[Google Docs](https://rclone.org/drive/#limitations-of-google-docs).
|
||||
Rclone will then show a notice in the log indicating how many such
|
||||
files were encountered, and count them in as empty files in the output
|
||||
of the size command.
|
||||
@ -14940,7 +14940,7 @@ These flags are available for every command.
|
||||
--use-json-log Use json log format
|
||||
--use-mmap Use mmap allocator (see docs)
|
||||
--use-server-modtime Use server modified time instead of object metadata
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.2")
|
||||
-v, --verbose count Print lots more stuff (repeat for more)
|
||||
```
|
||||
|
||||
@ -42464,6 +42464,16 @@ Options:
|
||||
|
||||
# Changelog
|
||||
|
||||
## v1.62.2 - 2023-03-16
|
||||
|
||||
[See commits](https://github.com/rclone/rclone/compare/v1.62.1...v1.62.2)
|
||||
|
||||
* Bug Fixes
|
||||
* docker volume plugin: Add missing fuse3 dependency (Nick Craig-Wood)
|
||||
* docs: Fix size documentation (asdffdsazqqq)
|
||||
* FTP
|
||||
* Fix 426 errors on downloads with vsftpd (Lesmiscore)
|
||||
|
||||
## v1.62.1 - 2023-03-15
|
||||
|
||||
[See commits](https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1)
|
||||
|
17
MANUAL.txt
generated
17
MANUAL.txt
generated
@ -1,6 +1,6 @@
|
||||
rclone(1) User Manual
|
||||
Nick Craig-Wood
|
||||
Mar 15, 2023
|
||||
Mar 16, 2023
|
||||
|
||||
Rclone syncs your files to cloud storage
|
||||
|
||||
@ -1472,7 +1472,7 @@ as JSON instead.
|
||||
Recurses by default, use --max-depth 1 to stop the recursion.
|
||||
|
||||
Some backends do not always provide file sizes, see for example Google
|
||||
Photos and Google Drive. Rclone will then show a notice in the log
|
||||
Photos and Google Docs. Rclone will then show a notice in the log
|
||||
indicating how many such files were encountered, and count them in as
|
||||
empty files in the output of the size command.
|
||||
|
||||
@ -14483,7 +14483,7 @@ These flags are available for every command.
|
||||
--use-json-log Use json log format
|
||||
--use-mmap Use mmap allocator (see docs)
|
||||
--use-server-modtime Use server modified time instead of object metadata
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.2")
|
||||
-v, --verbose count Print lots more stuff (repeat for more)
|
||||
|
||||
Backend Flags
|
||||
@ -41964,6 +41964,17 @@ Options:
|
||||
|
||||
Changelog
|
||||
|
||||
v1.62.2 - 2023-03-16
|
||||
|
||||
See commits
|
||||
|
||||
- Bug Fixes
|
||||
- docker volume plugin: Add missing fuse3 dependency (Nick
|
||||
Craig-Wood)
|
||||
- docs: Fix size documentation (asdffdsazqqq)
|
||||
- FTP
|
||||
- Fix 426 errors on downloads with vsftpd (Lesmiscore)
|
||||
|
||||
v1.62.1 - 2023-03-15
|
||||
|
||||
See commits
|
||||
|
@ -5,6 +5,16 @@ description: "Rclone Changelog"
|
||||
|
||||
# Changelog
|
||||
|
||||
## v1.62.2 - 2023-03-16
|
||||
|
||||
[See commits](https://github.com/rclone/rclone/compare/v1.62.1...v1.62.2)
|
||||
|
||||
* Bug Fixes
|
||||
* docker volume plugin: Add missing fuse3 dependency (Nick Craig-Wood)
|
||||
* docs: Fix size documentation (asdffdsazqqq)
|
||||
* FTP
|
||||
* Fix 426 errors on downloads with vsftpd (Lesmiscore)
|
||||
|
||||
## v1.62.1 - 2023-03-15
|
||||
|
||||
[See commits](https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1)
|
||||
|
@ -26,7 +26,7 @@ recursion.
|
||||
|
||||
Some backends do not always provide file sizes, see for example
|
||||
[Google Photos](/googlephotos/#size) and
|
||||
[Google Drive](/drive/#limitations-of-google-docs).
|
||||
[Google Docs](/drive/#limitations-of-google-docs).
|
||||
Rclone will then show a notice in the log indicating how many such
|
||||
files were encountered, and count them in as empty files in the output
|
||||
of the size command.
|
||||
|
@ -171,7 +171,7 @@ These flags are available for every command.
|
||||
--use-json-log Use json log format
|
||||
--use-mmap Use mmap allocator (see docs)
|
||||
--use-server-modtime Use server modified time instead of object metadata
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.2")
|
||||
-v, --verbose count Print lots more stuff (repeat for more)
|
||||
```
|
||||
|
||||
|
23
rclone.1
generated
23
rclone.1
generated
@ -1,7 +1,7 @@
|
||||
.\"t
|
||||
.\" Automatically generated by Pandoc 2.9.2.1
|
||||
.\"
|
||||
.TH "rclone" "1" "Mar 15, 2023" "User Manual" ""
|
||||
.TH "rclone" "1" "Mar 16, 2023" "User Manual" ""
|
||||
.hy
|
||||
.SH Rclone syncs your files to cloud storage
|
||||
.PP
|
||||
@ -2078,7 +2078,7 @@ Recurses by default, use \f[C]--max-depth 1\f[R] to stop the recursion.
|
||||
.PP
|
||||
Some backends do not always provide file sizes, see for example Google
|
||||
Photos (https://rclone.org/googlephotos/#size) and Google
|
||||
Drive (https://rclone.org/drive/#limitations-of-google-docs).
|
||||
Docs (https://rclone.org/drive/#limitations-of-google-docs).
|
||||
Rclone will then show a notice in the log indicating how many such files
|
||||
were encountered, and count them in as empty files in the output of the
|
||||
size command.
|
||||
@ -20461,7 +20461,7 @@ These flags are available for every command.
|
||||
--use-json-log Use json log format
|
||||
--use-mmap Use mmap allocator (see docs)
|
||||
--use-server-modtime Use server modified time instead of object metadata
|
||||
--user-agent string Set the user-agent to a specified string (default \[dq]rclone/v1.62.1\[dq])
|
||||
--user-agent string Set the user-agent to a specified string (default \[dq]rclone/v1.62.2\[dq])
|
||||
-v, --verbose count Print lots more stuff (repeat for more)
|
||||
\f[R]
|
||||
.fi
|
||||
@ -58046,6 +58046,23 @@ Options:
|
||||
.IP \[bu] 2
|
||||
\[dq]error\[dq]: return an error based on option value
|
||||
.SH Changelog
|
||||
.SS v1.62.2 - 2023-03-16
|
||||
.PP
|
||||
See commits (https://github.com/rclone/rclone/compare/v1.62.1...v1.62.2)
|
||||
.IP \[bu] 2
|
||||
Bug Fixes
|
||||
.RS 2
|
||||
.IP \[bu] 2
|
||||
docker volume plugin: Add missing fuse3 dependency (Nick Craig-Wood)
|
||||
.IP \[bu] 2
|
||||
docs: Fix size documentation (asdffdsazqqq)
|
||||
.RE
|
||||
.IP \[bu] 2
|
||||
FTP
|
||||
.RS 2
|
||||
.IP \[bu] 2
|
||||
Fix 426 errors on downloads with vsftpd (Lesmiscore)
|
||||
.RE
|
||||
.SS v1.62.1 - 2023-03-15
|
||||
.PP
|
||||
See commits (https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1)
|
||||
|
Loading…
Reference in New Issue
Block a user