AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
verify.sh
根目录
/
benchmarks
/
e2e
/
tasks
/
explore-unreachable
/
verify.sh
1
#!/usr/bin/env bash
2
set -e
3
got="$(tr -d '[:space:]()' < answer.txt | tr '[:upper:]' '[:lower:]')"
4
if [ "$got" != "rebalance" ]; then
5
echo "answer.txt normalized to '$got', want 'rebalance'" >&2
6
exit 1
7
fi
8
8 lines
BASH