mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 16:13:31 +02:00
commit
b83819f634
1 changed files with 15 additions and 0 deletions
15
pages/common/iconv.md
Normal file
15
pages/common/iconv.md
Normal 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`
|
Loading…
Add table
Reference in a new issue