首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

编撰 Shell 脚本,将目录 examples 中的所有 html 文件中的 "gb2312" 或 "GB2312"

2012-08-14 
编写 Shell 脚本,将目录 examples 中的所有 html 文件中的 gb2312 或 GB2312 替换为 GBK;目录有一些

编写 Shell 脚本,将目录 examples 中的所有 html 文件中的 "gb2312" 或 "GB2312" 替换为 "GBK";
目录有一些HTML文件,怎么编写? 多谢了

[解决办法]
下面的script在当期目录下建立newhtmls子目录,然后把当前目录下的html转换后放到newhmls目录下。

== bash script ==
#! /bin/bash
mkdir newhtmls
for x in `ls *.html`
do
echo "processing: $x --> newhtmls/$x"
sed -e 's/gb2312/GBK/g' $x > newhtmls/$x
done
== end of bash script ==

热点排行