summaryrefslogtreecommitdiff
path: root/storage/mroonga/vendor/groonga/examples/dictionary/eijiro/eijiro-import.sh
blob: 4042d7fbf56af1a5512e8c978372ecc38fa76fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

base_dir=$(dirname $0)

if [ 2 != $# ]; then
  echo "usage: $0 db_path eijiro.csv_path"
  exit 1
fi

if iconv -f UCS2 -t UTF8 $2 | ${base_dir}/eijiro2grn.rb | groonga $1 > /dev/null; then
  echo "eijiro data loaded."
fi