1 #!/bin/bash 2 3 # Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one 4 # or more contributor license agreements. Licensed under the Elastic License; 5 # you may not use this file except in compliance with the Elastic License. 6 7 source "`dirname "$0"`"/elasticsearch-env 8 9 source "`dirname "$0"`"/x-pack-env 10 11 CLI_JAR=$(ls $ES_HOME/bin/elasticsearch-sql-cli-*.jar) 12 13 exec \ 14 "$JAVA" \ 15 -jar "$CLI_JAR" \ 16 "$@"