atpg-ls/crun

14 lines
167 B
Plaintext
Raw Normal View History

2023-02-19 19:42:50 +08:00
#!/bin/bash
clear
make -j 16
if [ $? -ne 0 ]; then
echo "compile failed."
else
echo "========================"
2023-03-21 08:14:37 +00:00
time ./atpg $1 2>&1 | tee output.txt
2023-02-19 19:42:50 +08:00
fi