10 lines
141 B
Bash
10 lines
141 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cppcheck_tools_path=..
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
python "${cppcheck_tools_path}/donate-cpu.py" --test --bandwidth-limit=2m
|
||
|
sleep 2
|
||
|
done
|