f0b99910 ^
ebe2bda3 ^
1 2 3 4 5
6
7 8 9
10 11 12 13 14 15 16 17
#!/usr/bin/env zsh # Natively run a specific example. if [ $# -eq 0 ] then echo "nrun <binary>" exit 1 fi if [[ $1 == 'test'* ]] then ./teensy/$1 exit $? fi ./$1 exit $?