الملفات
vm-ros-provisioning/libraries/EnableInterrupt/examples/test.sh
2020-07-04 12:31:18 -04:00

25 أسطر
322 B
Bash

#!/bin/bash
examples="
AllPins2560
AllPins328
ATtinyBlink
HiSpeed
HiSpeedAllPins2560
HiSpeedAllPins328
InterruptedPin2560
InterruptedPin328
Mighty1284p
OOSimple
Simple
SimpleWithLibrary
"
for example in $examples; do
echo $example
sleep 2
( cd $example; rm -rf build-*; make)
echo $example done
sleep 2
done