Loading...
Loading...
Compare original and translation side by side
undefinedundefined
**Claude Code**
```bash
alias cc='claude --dangerously-skip-permissions'undefined
**Claude Code**
```bash
alias cc='claude --dangerously-skip-permissions'undefinedundefinedundefinedundefinedundefined
**Gemini CLI**
```bash
**Gemini CLI**
```bashundefinedundefinedcat input.md | gemini -p "prompt" --output-format text --allowed-tools '' > output.mdcat input.md | claude -p "prompt" --output-format text > output.mdcodex exec "prompt" --json -o result.txtcat input.md | gemini -p "prompt" --output-format text --allowed-tools '' > output.mdcat input.md | claude -p "prompt" --output-format text > output.mdcodex exec "prompt" --json -o result.txtundefinedundefined
**代码审查**
```bash
cat code.py | claude --dangerously-skip-permissions -p \
"Review this code for bugs and security issues. Output markdown." > review.mdundefined
**代码审查**
```bash
cat code.py | claude --dangerously-skip-permissions -p \
"Review this code for bugs and security issues. Output markdown." > review.mdundefinedundefinedundefined| 功能 | Gemini CLI | Claude Code | Codex CLI |
|---|---|---|---|
| YOLO 模式 | | | |
| 指定模型 | | | |
| 非交互 | | | |
| 输出格式 | | | |
| 禁用工具 | | | N/A |
| 继续对话 | N/A | | |
| 功能 | Gemini CLI | Claude Code | Codex CLI |
|---|---|---|---|
| YOLO 模式 | | | |
| 指定模型 | | | |
| 非交互 | | | |
| 输出格式 | | | |
| 禁用工具 | | | N/A |
| 继续对话 | N/A | | |
export http_proxy=http://127.0.0.1:9910
export https_proxy=http://127.0.0.1:9910
for f in docs/*.md; do
cat "$f" | timeout 120 gemini -p \
"Translate to English. Keep code fences unchanged." \
--output-format text --allowed-tools '' 2>/dev/null > "en_$(basename $f)"
doneexport http_proxy=http://127.0.0.1:9910
export https_proxy=http://127.0.0.1:9910
for f in docs/*.md; do
cat "$f" | timeout 120 gemini -p \
"Translate to English. Keep code fences unchanged." \
--output-format text --allowed-tools '' 2>/dev/null > "en_$(basename $f)"
donecat src/*.py | claude --dangerously-skip-permissions -p \
"Review for: 1) Bugs 2) Security 3) Performance. Output markdown table." > review.mdcat src/*.py | claude --dangerously-skip-permissions -p \
"Review for: 1) Bugs 2) Security 3) Performance. Output markdown table." > review.mdquestion="How to implement rate limiting in Python?"
echo "$question" | gemini -p "$question" --output-format text > gemini_answer.md
echo "$question" | claude -p "$question" --output-format text > claude_answer.mdquestion="How to implement rate limiting in Python?"
echo "$question" | gemini -p "$question" --output-format text > gemini_answer.md
echo "$question" | claude -p "$question" --output-format text > claude_answer.md**预期输出**: 两个模型答案的对比**预期输出**: 两个模型答案的对比references/gemini-cli.mdreferences/claude-cli.mdreferences/codex-cli.mdreferences/gemini-cli.mdreferences/claude-cli.mdreferences/codex-cli.md