Forrest logo
back to context overview

iconv

List of commands for iconv:

  • iconv:tldr:5fb8c iconv: List supported encodings.
    $ iconv -l
    try on your machine
    explain this command
  • iconv:tldr:6fd7b iconv: Convert file to the current locale's encoding, and output to a file.
    $ iconv -f ${from_encoding} ${input_file} > ${output_file}
    try on your machine
    explain this command
  • iconv:tldr:92686 iconv: Convert file to a specific encoding, and print to `stdout`.
    $ iconv -f ${from_encoding} -t ${to_encoding} ${input_file}
    try on your machine
    explain this command
back to context overview