文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>ubuntu中星际译王字典下载脚本

ubuntu中星际译王字典下载脚本

时间:2007-12-20  来源:xuhuiunix

#! /bin/bash

# install stardict
if [[ -f $(which stardict) ]]
then
    echo ""
    echo "You have stardict installed."
    echo ""
    echo "Downloading dictionary files ... "
    echo ""
    sleep 3
else
    sudo apt-get install stardict -y
    echo "Now stardict has been installed."
    echo ""
    echo "Downloading dictionary files ... "
    echo ""
    sleep 3
fi

# Definations
passwd="ubuntu:ubuntuftp"
url="http://[email protected]/stardict.sourceforge.net"
dir="$HOME/.stardict/dic"

# 通用词典选有:21世纪双向,朗道,韦氏,牛津,朗文,计算机专业
dict_1="stardict-21shijishuangxiangcidian-2.4.2.tar.bz2"
dict_2="stardict-langdao-ce-gb-2.4.2.tar.bz2"
dict_3="stardict-langdao-ec-gb-2.4.2.tar.bz2"
dict_4="stardict-merrianwebster-2.4.2.tar.bz2"
dict_5="stardict-oxford-gb-2.4.2.tar.bz2"
dict_6="stardict-longman-2.4.2.tar.bz2"
dict_7="stardict-computer-2.4.2.tar.bz2"

if [ ! -d $dir ]
then
    mkdir -p $dir
fi

for dict in $dict_1 $dict_2 $dict_3 $dict_4 $dict_5 $dict_6 $dict_7
do
    wget -c $url/$dict -P $HOME && tar jxf $HOME/$dict -C $dir
    rm -rf $HOME/$dict
    echo ""
done

echo "Run 'stardict &' in terminal,enjoy it."
echo ""
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载