commands.sh

iconv

all

Convert text from one encoding to another.

More info →

Options (3)

-f, --from-codeboolean

Convert file to a specific encoding, and print to `stdout`

Example: iconv {{[-f|--from-code]}} {{from_encoding}} {{[-t|--to-code]}} {{to_encoding}} {{input_file}}
-t, --to-codeboolean

Convert file to a specific encoding, and print to `stdout`

Example: iconv {{[-f|--from-code]}} {{from_encoding}} {{[-t|--to-code]}} {{to_encoding}} {{input_file}}
-l, --listboolean

List supported encodings

Example: iconv {{[-l|--list]}}

Examples (3)

Convert file to a specific encoding, and print to `stdout`

iconv [-f|--from-code] from_encoding [-t|--to-code] to_encoding input_file

Convert file to the current locale's encoding, and output to a file

iconv [-f|--from-code] from_encoding input_file > output_file

List supported encodings

iconv [-l|--list]
made by @shridhargupta | data from tldr-pages