当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《在linux中将网页从UTF-8转换为ISO-8859-1》经验,为你挑选了2个好方法。

任何人都有一个巧妙的技巧如何在Linux(Ubuntu)中将大量的php和html文件从UTF-8转换为ISO-8859-1?



1> H Marcelo Mo..:

Ubuntu已重新编码

$ sudo apt-get install recode
$ recode UTF-8..latin1 *.php

递归地,感谢Ted Dziuba:

$ find . -name "*.php" -exec recode UTF-8..latin1 {} \;



2> Varkhan..:

我认为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将在开始工作之前截断输出).

推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有