mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 05:24:49 +00:00
7 lines
129 B
Bash
Executable File
7 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
for index in {450..500};
|
|
do
|
|
instrs=$(($index*1000000))
|
|
echo "y" | nice -n 5 ./genCheckpoint.sh $instrs
|
|
done
|