mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 08:30:35 +00:00
11 lines
238 B
Bash
Executable File
11 lines
238 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# Copyright (C) 2023-present ScyllaDB
|
|
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
|
|
trap 'echo "error $? in $0 line $LINENO"' ERR
|
|
|
|
here=$(dirname "$0")
|
|
exec "$here/../tools/cqlsh/bin/cqlsh.py" "$@"
|
|
|