#!/usr/bin/env bash title="Creating project..." script="${SCRIPTS:-$HOME/.local/scripts}/utils/hpa/hpa-create" first_arg=${1:-""} if [[ $first_arg == "-h" ]] || [[ $first_arg == "--help" ]]; then . "$script" $* else # bash -c "$script $*" | tr -d '\r' | head -1 gum spin --show-output --title "$title" -- bash -c "$script $*" | tr -d '\r' | head -1 fi