peco + 辞書(alc編)
コード
選択した単語で検索したページヘ飛びます.
#!/bin/sh set -e word=$(peco /usr/share/dict/words) url=$(printf 'http://eow.alc.co.jp/search?q=%s&ref=sa' $word) OS=$(uname) if [ "$OS" = "Linux" ]; then xdg-open $url > /dev/null 2>&1 else open $url fi
選択した単語で検索したページヘ飛びます.
#!/bin/sh set -e word=$(peco /usr/share/dict/words) url=$(printf 'http://eow.alc.co.jp/search?q=%s&ref=sa' $word) OS=$(uname) if [ "$OS" = "Linux" ]; then xdg-open $url > /dev/null 2>&1 else open $url fi