You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
271 B
11 lines
271 B
#!/bin/bash
|
|
|
|
# 设置代理(根据你的 Clash Verge 配置)
|
|
export http_proxy=http://127.0.0.1:7897
|
|
export https_proxy=http://127.0.0.1:7897
|
|
|
|
# 启动 Claude Code
|
|
echo "🚀 启动 Claude Code..."
|
|
echo "📡 使用代理: $http_proxy"
|
|
|
|
npx @anthropic-ai/claude-code
|