歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> ubuntu中星際譯王字典安裝

ubuntu中星際譯王字典安裝

日期:2017/2/28 17:26:00   编辑:Linux教程

#! /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 ""

Copyright © Linux教程網 All Rights Reserved