rclone/docs/layouts/section/commands.html

24 lines
459 B
HTML
Raw Normal View History

{{ 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 }}