#!/bin/bash # # Copyright (C) 2020-present ScyllaDB # # # SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 # set -e trap 'echo "error $? in $0 line $LINENO"' ERR if [ -z "$BASH_VERSION" ]; then echo "Unsupported shell, please run this script on bash." exit 1 fi print_usage() { cat <