1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:33:33 +02:00

Merge pull request #229 from evestera/iconv

Added docs for iconv
This commit is contained in:
Romain Prieto 2014-09-04 10:28:59 +10:00
commit b83819f634

15
pages/common/iconv.md Normal file
View file

@ -0,0 +1,15 @@
# 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`