linux网页改utf-8,在linux中将网页从UTF-8转换为ISO-8859-1

Varkhan..

9

我认为iconv是你的答案......

表格人iconv:

NAME

iconv - Convert encoding of given files from one encoding to another

SYNOPSIS

iconv -f encoding -t encoding inputfile

DESCRIPTION

The iconv program converts the encoding of characters in inputfile from one coded

character set to another. The result is written to standard output unless otherwise

specified by the --output option.

.....

所以你可以做一个

find $my_base_dir -name "*.php" -o -name "*.html" -exec sh -c "( \

iconv -t ISO88592 -f UTF8 {} -o {}.iconv ; \

mv {}.iconv {} ; \

)" \;

这将递归地找到适当命名的文件并重新编码它们(临时文件是必需的,因为iconv将在开始工作之前截断输出).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值