美文网首页
linux online dict (利用有到词典和金山词典)

linux online dict (利用有到词典和金山词典)

作者: JokerChen | 来源:发表于2017-02-22 23:14 被阅读0次

    #!/bin/bash res=\curl -s http://www.iciba.com/$1|grep 'class="prop"' -A 10|grep '<span>' |sed -e 's/<span>//g' -e 's/<.span>//g'|tee /dev/stderr`
    if [[ $res == "" ]];then
    if echo $1 |grep -q '[a-zA-Z ].';then
    curl http://dict.youdao.com/w/eng/$1/#keyfrom=dict2.index 2>&1 | grep 'class="trans-container"' -A 10 |grep '<li'|sed "s/<li>//g"|sed "s/</li>//g"
    else
    curl http://dict.youdao.com/w/$1/#keyfrom=dict2.index 2>&1 | grep 'class="wordGroup"' -A10 |grep -o 'E2Ctranslation">.
    </a>'|grep -o '>[a-zA-Z ]+'|sed 's/>//g'
    fi
    fi`

    相关文章

      网友评论

          本文标题:linux online dict (利用有到词典和金山词典)

          本文链接:https://www.haomeiwen.com/subject/xcewmttx.html