Files
tldr/pages/common/iconv.md
2016-01-08 09:38:59 +01:00

16 lines
295 B
Markdown

# iconv
> Converts text from one encoding to another.
- Convert file and print to stdout:
`iconv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}`
- Convert file to current locale:
`iconv -f {{from_encoding}} {{input_file}} > {{output_file}}`
- List supported encodings:
`iconv -l`