macOS 使用 iconv 转化文件编码

文章目录


使用方式

shell 复制代码
iconv  -f GB2312 -t UTF-8  分治算法.txt > 分治算法2.txt 

支持的编码类型


可以使用 下面命令 查看编码类型

shell 复制代码
iconv -l

PS : ISO-8859 有很多种分支,iconv 支持 ISO-8859-1、ISO-8859-10,但不支持 ISO-8859,否则可能报如下错误:

shell 复制代码
$ iconv  -f ISO-8859   -t UTF-8  分治算法.txt  [0]
iconv: iconv_open(UTF-8, ISO-8859): Invalid argument

这样就不会报错

shell 复制代码
iconv  -f ISO-8859-1   -t UTF-8  分治算法.txt

但具体文件编码类型,建议使用 enca 来查看,file 命令可能不准确

enca 教程:https://blog.csdn.net/lovechris00/article/details/146443005


iconv 更多用法

shell 复制代码
$ iconv --help                                                                                                                  
iconv: unrecognized option `--help'
Usage:	iconv [-cs] -f <from_code> -t <to_code> [file ...]
	iconv -f <from_code> [-cs] [-t <to_code>] [file ...]
	iconv -t <to_code> [-cs] [-f <from_code>] [file ...]
	iconv -l

shell 复制代码
ICONV(1)                                                                                   General Commands Manual                                                                                  ICONV(1)

NAME
     iconv -- codeset conversion utility

SYNOPSIS
     iconv [-cs] -f from_name -t to_name [file ...]
     iconv -f from_name [-cs] [-t to_name] [file ...]
     iconv -t to_name [-cs] [-f from_name] [file ...]
     iconv -l

DESCRIPTION
     The iconv utility converts the codeset of file (or from standard input if no file is specified) from codeset from_name to codeset to_name and outputs the converted text on standard output.

     The following options are available:

     -c    Prevent output of any invalid characters.  By default, iconv outputs an "invalid character" specified by the to_name codeset when it encounts a character which is valid in the from_name codeset
           but does not have a corresponding character in the to_name codeset.

     -f    Specifies the source codeset name as from_name.

     -l    Lists available codeset names.  Note that not all combinations of from_name and to_name are valid.

     -s    Silent.  By default, iconv outputs the number of "invalid characters" to standard error if they exist.  This option prevents this behaviour.

     -t    Specifies the destination codeset name as to_name.

EXIT STATUS
     The iconv utility exits 0 on success, and >0 if an error occurs.

EXAMPLES
     Convert file.txt from IBM273 to UTF-8 and save the result to converted.txt:

           iconv -f IBM273 -t UTF-8 file.txt > converted.txt

SEE ALSO
     mkcsmapper(1), mkesdb(1), iconv(3)

STANDARDS
     iconv conform to IEEE Std 1003.1-2008 ("POSIX.1").

HISTORY
     iconv first appeared in NetBSD 2.0, and made its appearance in FreeBSD 9.0.

macOS 15.1                                                                                    October 22, 2009  

2025-03-22(六)

相关推荐
阿汤哥的程序之路5 小时前
Java 安装开发环境(Mac Apple M1 Pro)
java·python·macos
Alexander plus10 小时前
mac丝滑安装Windows操作系统【丝滑&简单&免费】
windows·python·macos·vmware
帅次14 小时前
Flutter TextField 从入门到精通:掌握输入框的完整指南
android·flutter·macos·ios·kotlin·android studio
slomay15 小时前
Mac | Excel | 列数改为和行数一样用数字表示
经验分享·macos·excel
zzialx20 小时前
iOS:GCD信号量、同步、异步的使用方法
macos·ios·cocoa
Eric Woo X1 天前
DeepSeek R1 本地部署指南 (3) - 更换本地部署模型 Windows/macOS 通用
windows·macos·ai·deepseek
伊织code1 天前
macOS 使用 enca 识别 文件编码类型(比 file 命令准确)
macos·文件·编码·file·iconv·enca
s听风忆雪2 天前
mac brew 安装的[email protected] 打开redis扩展
开发语言·macos·php