2020-05-22 17:16:40 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
<h1>Rclone Commands</h1>
|
|
|
|
<p>
|
2020-05-25 08:44:55 +02:00
|
|
|
This is an index of all commands in rclone. Run <code>rclone
|
|
|
|
command --help</code> to see the help for that command.
|
2020-05-22 17:16:40 +02:00
|
|
|
</p>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Command</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{ range .Data.Pages }}
|
|
|
|
<tr>
|
2020-05-25 12:47:49 +02:00
|
|
|
<td><a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a></td>
|
|
|
|
<td>{{ .Description | markdownify }}</td>
|
2020-05-22 17:16:40 +02:00
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{ end }}
|