From d11d4620db768111264857f90f05eb66f8b2a497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emre=20Sevin=C3=A7?= Date: Thu, 23 May 2019 12:41:54 +0200 Subject: [PATCH] Add `recode` to README.md Add `recode` to README.md. The `recode` program is a handy front-end to the recode library that converts files between character sets and usages. It recognizes or produces over 200 different character sets (or about 300 if combined with an `iconv` library) and transliterates files between almost any pair. When exact transliteration are not possible, it gets rid of offending characters or falls back on approximations. More information at: https://github.com/rrthomas/recode/ --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 06ceae8..5816cf9 100755 --- a/README.md +++ b/README.md @@ -287,7 +287,7 @@ mkdir empty && rsync -r --delete empty/ some-dir && rmdir some-dir - For binary diffs (delta compression), use `xdelta3`. -- To convert text encodings, try `iconv`. Or `uconv` for more advanced use; it supports some advanced Unicode things. For example: +- To convert text encodings, try `iconv` or `recode`. Or `uconv` for more advanced use; it supports some advanced Unicode things. For example: ```sh # Displays hex codes or actual names of characters (useful for debugging): uconv -f utf-8 -t utf-8 -x '::Any-Hex;' < input.txt @@ -474,7 +474,7 @@ A few examples of piecing together commands: - `tr`: character translation or manipulation -- `iconv` or `uconv`: conversion for text encodings +- `iconv`, `recode` or `uconv`: conversion for text encodings - `split` and `csplit`: splitting files