|
发表于 2003-3-7 14:41:26
|
显示全部楼层
doooom,我把你的脚本改了一下,可以直接用了。
你的想法真绝,我就想不到:)
[tram@~/translation]$ ./buildbook.sh
html one done
html two done
[tram@~/translation]$ cat autotrans.sh
#!/bin/bash -x
for i in `find ./ -name "*.xml"`
do
sed -e 's/Contents/内容/g' $i | \
sed -e 's/Description/说明/g' | \
sed -e 's/a>The /a>/g' | \
sed -e 's/libraries/库文件/g' | \
sed -e 's/package contains/包括/g' | \
sed -e 's/Command explanations/命令解释/g' | \
sed -e 's/Installation of/安装/g' | \
sed -e 's/a>Install /a>安装/g' | \
sed -e 's/by running the following commands/可以使用下面命令/g' | \
sed -e 's/Introduction to /简单介绍/g' | \
sed -e 's/Download location/下载地址/g' | \
sed -e 's/Version used/使用版本/g' | \
sed -e 's/Package size/软件包大小/g' | \
sed -e 's/Estimated Disk space required/预计磁盘使用空间/g' | \
sed -e 's/depends on/依赖于/g' | \
sed -e 's/will utilize/可以利用/g' | \
sed -e 's/Configuring/配置/g' | \
sed -e 's/ and /和/g' | \
sed -e 's/No description available./暂缺/g' | \
sed -e 's/Configuration Information/配置信息/g' > /tmp/blfstmp
mv /tmp/blfstmp $i
done
[tram@~/translation]$ |
|