免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
1234
最近访问板块 发新帖
楼主: lys5300
打印 上一主题 下一主题

抛砖引玉(a dictionary based for Terminal) [复制链接]

论坛徽章:
0
31 [报告]
发表于 2011-04-17 20:21 |只看该作者
可以if grep -q 'sugg'

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
32 [报告]
发表于 2011-04-19 14:33 |只看该作者
本帖最后由 yinyuemi 于 2011-04-19 14:46 编辑

回复 22# chenbin200818


    彬兄好! 我在脚本里加了可以对检索单词颜色高亮处理的代码,我这里没法测试中文环境,你帮测试下,多谢!
大家有兴趣的话也可以测试下,谢谢!
  1. #!/bin/bash

  2. #        This is a dictionary based for Termial.

  3. #        Its cache directory is in /tmp/dictionary/

  4. word=$1

  5. cache=/tmp/dictionary/$word

  6. if [ $# -gt 1 ] || [ -z $word ];then

  7.         echo

  8.         echo "dir [word]"

  9.         echo

  10.         exit 1

  11. fi

  12. if [ -e $cache ];then

  13.         cat $cache

  14.         exit 0

  15. elif [ ! -e ${cache%/*} ];then

  16.         mkdir -p ${cache%/*}

  17. fi

  18. wordf=$(wget -q "http://dict.cn/ws.php?utf8=true&q=$word" -O -)

  19. if echo "$wordf"|grep 'sugg' 1>/dev/null 2>&1

  20. then

  21.         echo "You may want to search these words."

  22.         echo "$wordf"|sed -e 's/<[\/]*sugg>//g'|grep '^[^<]'|tr ["\n"] ["\t"]

  23.         echo

  24.         exit 2

  25. else

  26.         echo "$wordf"|sed -e 's/<[\/]*\(def\|sent\|orig\|trans\)>//g' -e 's/&lt;em&gt;\(.*\)&lt;\/em&gt;/[\1]/g' -e 's/\(&gt;\|&lt;\)/ /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
  27.         
  28.         total=$(du ${cache%/*}|cut -d/ -f 1)

  29.         if [ $total -gt 102400 ];then

  30.                 echo

  31.                 echo -e "\tThe dictionary cache is beyond 100M.Maybe you can release some space."

  32.         fi

  33. fi

  34.         exit 0
复制代码

论坛徽章:
0
33 [报告]
发表于 2011-04-20 09:48 |只看该作者
有功夫试试

论坛徽章:
0
34 [报告]
发表于 2011-04-20 11:19 |只看该作者
受yinyuemi的启发 现在该脚本可以高亮显示搜索的词
我在其提供的例句中用橙黄色来高亮显示关键词
现在这个脚本比较完善了
脚本如下
#!/bin/sh
#translate between English and Chinese
if [ $# -ne 1 ];then
    echo "usage0 [word]"
    echo "lease input a word"
    exit 1
fi

word=$1
cache=/tmp/dictionary/$word

highlight_keyword(){
    awk -F"[][]" '\
        {
            if(NF>2)
                $2 = sprintf("\033[33m%s\033[0m", $2);
            print  
        }
    ' $1
}

if [ -e $cache ];then
    highlight_keyword $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 '^[^<]'
else
    echo "$wordf"|sed -e 's/<[\/]*\(def\|sent\|orig\|trans\)>//g ;s/&lt;em&gt;\(.*\)&lt;\/em&gt;/[\1]/g' |grep '^[^<]' > $cache && highlight_keyword $cache

    total=$(du ${cache%/*}|cut -d/ -f 1)
    if [ $total -gt 102400 ];then
        echo
        echo -e "\t\tThe dictionary cache is beyond 100M.Maybe you can release some space."
    fi
fi

exit 0

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
35 [报告]
发表于 2011-04-20 12:27 |只看该作者
回复 34# chenbin200818


    辛苦,不错
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP