15 lines
296 B
Bash
Executable file
15 lines
296 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck source=/dev/null
|
|
source "$SCRIPT_DIR/../lib/profiles.sh"
|
|
|
|
PROFILE="${1:-}"
|
|
if [[ -z "$PROFILE" ]]; then
|
|
echo "Usage: claude-profile <profile>"
|
|
exit 1
|
|
fi
|
|
|
|
launch_profile "$PROFILE"
|
|
|