Sha256: 227fba0cbd7355d1808788534a4a7c82d5bde4b1c73c6ee91fc32701cfad9cc2

Contents?: true

Size: 176 Bytes

Versions: 1

Compression:

Stored size: 176 Bytes

Contents

#!/bin/sh

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

if zcat $2 | ./edict2grn.rb | groonga $1 > /dev/null; then
  echo "edict data loaded."
fi

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rroonga-1.0.1-x86-mingw32 vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh