docs: add encoded characters to encoding table
This commit is contained in:
parent
07481396e0
commit
03715f6c6b
1 changed files with 30 additions and 30 deletions
|
@ -301,36 +301,36 @@ list of all possible values by passing an invalid value to this
|
||||||
flag, e.g. `--local-encoding "help"`. The command `rclone help flags encoding`
|
flag, e.g. `--local-encoding "help"`. The command `rclone help flags encoding`
|
||||||
will show you the defaults for the backends.
|
will show you the defaults for the backends.
|
||||||
|
|
||||||
| Encoding | Characters |
|
| Encoding | Characters | Encoded as |
|
||||||
| --------- | ---------- |
|
| --------- | ---------- | ---------- |
|
||||||
| Asterisk | `*` |
|
| Asterisk | `*` | `*` |
|
||||||
| BackQuote | `` ` `` |
|
| BackQuote | `` ` `` | ``` |
|
||||||
| BackSlash | `\` |
|
| BackSlash | `\` | `\` |
|
||||||
| Colon | `:` |
|
| Colon | `:` | `:` |
|
||||||
| CrLf | CR 0x0D, LF 0x0A |
|
| CrLf | CR 0x0D, LF 0x0A | `␍`, `␊` |
|
||||||
| Ctl | All control characters 0x00-0x1F |
|
| Ctl | All control characters 0x00-0x1F | `␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟` |
|
||||||
| Del | DEL 0x7F |
|
| Del | DEL 0x7F | `␡` |
|
||||||
| Dollar | `$` |
|
| Dollar | `$` | `$` |
|
||||||
| Dot | `.` or `..` as entire string |
|
| Dot | `.` or `..` as entire string | `.`, `..` |
|
||||||
| DoubleQuote | `"` |
|
| DoubleQuote | `"` | `"` |
|
||||||
| Hash | `#` |
|
| Hash | `#` | `#` |
|
||||||
| InvalidUtf8 | An invalid UTF-8 character (e.g. latin1) |
|
| InvalidUtf8 | An invalid UTF-8 character (e.g. latin1) | `<60>` |
|
||||||
| LeftCrLfHtVt | CR 0x0D, LF 0x0A,HT 0x09, VT 0x0B on the left of a string |
|
| LeftCrLfHtVt | CR 0x0D, LF 0x0A, HT 0x09, VT 0x0B on the left of a string | `␍`, `␊`, `␉`, `␋` |
|
||||||
| LeftPeriod | `.` on the left of a string |
|
| LeftPeriod | `.` on the left of a string | `.` |
|
||||||
| LeftSpace | SPACE on the left of a string |
|
| LeftSpace | SPACE on the left of a string | `␠` |
|
||||||
| LeftTilde | `~` on the left of a string |
|
| LeftTilde | `~` on the left of a string | `~` |
|
||||||
| LtGt | `<`, `>` |
|
| LtGt | `<`, `>` | `<`, `>` |
|
||||||
| None | No characters are encoded |
|
| None | No characters are encoded | |
|
||||||
| Percent | `%` |
|
| Percent | `%` | `%` |
|
||||||
| Pipe | \| |
|
| Pipe | \| | `|` |
|
||||||
| Question | `?` |
|
| Question | `?` | `?` |
|
||||||
| RightCrLfHtVt | CR 0x0D, LF 0x0A, HT 0x09, VT 0x0B on the right of a string |
|
| RightCrLfHtVt | CR 0x0D, LF 0x0A, HT 0x09, VT 0x0B on the right of a string | `␍`, `␊`, `␉`, `␋` |
|
||||||
| RightPeriod | `.` on the right of a string |
|
| RightPeriod | `.` on the right of a string | `.` |
|
||||||
| RightSpace | SPACE on the right of a string |
|
| RightSpace | SPACE on the right of a string | `␠` |
|
||||||
| Semicolon | `;` |
|
| Semicolon | `;` | `;` |
|
||||||
| SingleQuote | `'` |
|
| SingleQuote | `'` | `'` |
|
||||||
| Slash | `/` |
|
| Slash | `/` | `/` |
|
||||||
| SquareBracket | `[`, `]` |
|
| SquareBracket | `[`, `]` | `[`, `]` |
|
||||||
|
|
||||||
##### Encoding example: FTP
|
##### Encoding example: FTP
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue