xref: /Lucene/lucene/distribution/src/binary-release/bin/luke.sh (revision 627ef4d469975044cce21fcfcf08ed65afbe7e0d)
1*627ef4d4SDawid Weiss#!/bin/bash
2*627ef4d4SDawid Weiss
3*627ef4d4SDawid Weiss#  Licensed to the Apache Software Foundation (ASF) under one or more
4*627ef4d4SDawid Weiss#  contributor license agreements.  See the NOTICE file distributed with
5*627ef4d4SDawid Weiss#  this work for additional information regarding copyright ownership.
6*627ef4d4SDawid Weiss#  The ASF licenses this file to You under the Apache License, Version 2.0
7*627ef4d4SDawid Weiss#  the "License"); you may not use this file except in compliance with
8*627ef4d4SDawid Weiss#  the License.  You may obtain a copy of the License at
9*627ef4d4SDawid Weiss#
10*627ef4d4SDawid Weiss#      http://www.apache.org/licenses/LICENSE-2.0
11*627ef4d4SDawid Weiss#
12*627ef4d4SDawid Weiss#  Unless required by applicable law or agreed to in writing, software
13*627ef4d4SDawid Weiss#  distributed under the License is distributed on an "AS IS" BASIS,
14*627ef4d4SDawid Weiss#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*627ef4d4SDawid Weiss#  See the License for the specific language governing permissions and
16*627ef4d4SDawid Weiss#  limitations under the License.
17*627ef4d4SDawid Weiss
18*627ef4d4SDawid WeissMODULES=$(cd $(dirname $0) && pwd)
19*627ef4d4SDawid Weissjava --module-path $MODULES/modules;$MODULES/modules-thirdparty -cp $MODULES/modules-thirdparty/${log4j.api.jar} --module lucene.luke
20