6 lines
69 B
Bash
6 lines
69 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in 00; do
|
||
|
make -f run_mode.makefile MODE="$i"
|
||
|
done
|