mirror of
https://github.com/rclone/rclone.git
synced 2024-12-03 14:03:41 +08:00
24 lines
459 B
HTML
24 lines
459 B
HTML
{{ define "main" }}
|
|
<h1>Rclone Commands</h1>
|
|
<p>
|
|
This is an index of all commands in rclone. Run "rclone
|
|
command --help" to see the help for that command.
|
|
</p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Command</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Data.Pages }}
|
|
<tr>
|
|
<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
|
|
<td>{{ .Description }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{ end }}
|