Malin Freeborn
ba8026e0c3
input examples are now given as ```bash input $ARG1 ``` While outputs use md's '> ' sign as a quote.
27 lines
343 B
Markdown
27 lines
343 B
Markdown
---
|
|
title: "character-encoding"
|
|
tags: [ "Documentation", "System" ]
|
|
---
|
|
Convert a text file from one encoding type to another with:
|
|
|
|
```bash
|
|
iconv -f ascii -t utf8 oldfilename > newfilename
|
|
```
|
|
|
|
Available options are:
|
|
|
|
* ISO-8859-15
|
|
|
|
* UTF-8
|
|
|
|
* ASCII
|
|
|
|
* Lots more
|
|
|
|
Generate a full list of encoding types available with:
|
|
|
|
```bash
|
|
iconv -l
|
|
```
|
|
|