claude-launcher-profiles/bin/claude-profile

15 lines
296 B
Text
Raw Normal View History

2026-06-28 01:50:13 +02:00
#!/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"