7 lines
256 B
Bash
Executable File
7 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
cd /Users/leidianyayi/Documents/GitHub/ModelTest20260714/GLM5.2
|
|
LOG=/Users/leidianyayi/Documents/GitHub/ModelTest20260714/GLM5.2/smoke2.log
|
|
echo "START $(date)" > "$LOG"
|
|
node tools/smoke2.mjs >> "$LOG" 2>&1
|
|
echo "EXIT=$? END $(date)" >> "$LOG"
|