- 论坛徽章:
- 2
|
本帖最后由 yinyuemi 于 2011-04-19 14:46 编辑
回复 22# chenbin200818
彬兄好! 我在脚本里加了可以对检索单词颜色高亮处理的代码,我这里没法测试中文环境,你帮测试下,多谢!
大家有兴趣的话也可以测试下,谢谢!
- #!/bin/bash
- # This is a dictionary based for Termial.
- # Its cache directory is in /tmp/dictionary/
- word=$1
- cache=/tmp/dictionary/$word
- if [ $# -gt 1 ] || [ -z $word ];then
- echo
- echo "dir [word]"
- echo
- exit 1
- fi
- if [ -e $cache ];then
- cat $cache
- exit 0
- elif [ ! -e ${cache%/*} ];then
- mkdir -p ${cache%/*}
- fi
- wordf=$(wget -q "http://dict.cn/ws.php?utf8=true&q=$word" -O -)
- if echo "$wordf"|grep 'sugg' 1>/dev/null 2>&1
- then
- echo "You may want to search these words."
- echo "$wordf"|sed -e 's/<[\/]*sugg>//g'|grep '^[^<]'|tr ["\n"] ["\t"]
- echo
- exit 2
- else
- echo "$wordf"|sed -e 's/<[\/]*\(def\|sent\|orig\|trans\)>//g' -e 's/<em>\(.*\)<\/em>/[\1]/g' -e 's/\(>\|<\)/ /g'|grep '^[^<]'>$cache && cat $cache | awk 'BEGIN{IGNORECASE=1}{for(i=1;i<=NF;i++){if($i=="['$word']"){printf ";echo -e -n \"\\e[31m '$word' \\e[0m\""}else{printf ";echo -n \""$i" \"" }};print ";echo "}' | sed 's/;//' |sh
-
- total=$(du ${cache%/*}|cut -d/ -f 1)
- if [ $total -gt 102400 ];then
- echo
- echo -e "\tThe dictionary cache is beyond 100M.Maybe you can release some space."
- fi
- fi
- exit 0
复制代码 |
|