#!/usr/bin/env bash cd "$(dirname "$(realpath "$0")")" DEBUG_BIN="$PWD/target/debug/nftmart-telemetry" RELEASE_BIN="$PWD/target/release/nftmart-telemetry" [[ -f "$DEBUG_BIN" ]] && { exec "$DEBUG_BIN" } [[ -f "$RELEASE_BIN" ]] && { exec "$RELEASE_BIN" } cat <