Chinaunix首页 | 论坛 | 博客
  • 博客访问: 71012
  • 博文数量: 26
  • 博客积分: 1070
  • 博客等级: 少尉
  • 技术积分: 285
  • 用 户 组: 普通用户
  • 注册时间: 2009-04-27 09:32
文章分类

全部博文(26)

文章存档

2011年(1)

2010年(3)

2009年(22)

我的朋友

分类: LINUX

2009-05-01 07:52:55

#! /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=""
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 ""
阅读(470) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~