This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Claude Code CLI 前置环境准备脚本 | |
# 用于安装和配置运行Claude Code CLI所需的环境 | |
# 包括: Node.js、npm、以及相关的环境配置 | |
set -e | |
# 颜色定义 | |
RED='\033[0;31m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Claude Code & Codex Environment Setup Script | |
# Author: Claude Assistant | |
# Purpose: Automatically configure environment variables for Claude Code and Codex on macOS and Linux | |
set -e # Exit on error | |
# Colors for output | |
RED='\033[1;31m' |