mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-28 17:43:09 -04:00
6 lines
129 B
Bash
Executable file
6 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
|