|
#! /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://$passwd@ftp.ubuntu.org.cn/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 ""
|