edit metadata

This commit is contained in:
2025-02-12 15:01:15 +01:00
parent 341b6ed46f
commit 1ce84ebc53
43 changed files with 214 additions and 207 deletions

View File

@@ -1,26 +1,24 @@
---
title: "character-encoding"
tags: [ "System" ]
tags: [ "System", "encoding" ]
---
Convert a text file from one encoding type to another with:
```bash
```sh
iconv -f ascii -t utf8 oldfilename > newfilename
```
Available options are:
* ISO-8859-15
* UTF-8
* ASCII
* Lots more
- ISO-8859-15
- UTF-8
- ASCII
- Lots more
Generate a full list of encoding types available with:
```bash
```sh
iconv -l
```