ubuntu下安装goldendict及离线词库
1.sudo apt-get install goldendict 2.播放语音 sudo apt-get install mplayer sudo apt-get install ubuntu-restricted-addons sudo apt-get install ubuntu-restricted-extras 3.批量解压离线词库 #! /bin/bash # run this script to install goldendict and off-line dictionaries # Only for Ubuntu # created by longbin <beangr@163.com> # 2014-03-28 function goldendict_essential_install(){ for file in ${FILE_LIST} do trap 'echo -e "\nInterrupted by user"; exit' INT echo -e "\n=======================================" echo -e "Preparing to install ${file} ..." echo -e "=======================================" echo -e "\tsudo apt-get install ${file}" sudo apt-get install ${file} done RET_VAL=$(which goldendict) if [[ "${RET_VAL}" == "" ]] ;then echo "goldendict installed error." exit else echo "