docs: change syntax hightlighting for command examples from sh to console

This commit is contained in:
albertony
2025-11-01 15:33:38 +01:00
parent becc068d36
commit 059ad47336
110 changed files with 782 additions and 750 deletions
+5 -5
View File
@@ -19,7 +19,7 @@ password. Alternatively, you can authenticate using an API Key from
Here is an example of how to make a remote called `remote`. First run:
```sh
```console
rclone config
```
@@ -88,26 +88,26 @@ Once configured you can use rclone.
See all files in the top level:
```sh
```console
rclone lsf remote:
```
Make a new directory in the root:
```sh
```console
rclone mkdir remote:dir
```
Recursively List the contents:
```sh
```console
rclone ls remote:
```
Sync `/home/local/directory` to the remote directory, deleting any
excess files in the directory.
```sh
```console
rclone sync --interactive /home/local/directory remote:dir
```