/usr/share/groonga/examples/dictionary/init-db.sh is in groonga-examples 6.0.1-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
if [ 1 != $# ]; then
echo "usage: $0 db_path"
exit 1
fi
if groonga-suggest-create-dataset $1 dictionary > /dev/null; then
echo "db initialized."
fi
|