8 lines
206 B
Bash
Executable File
8 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
( cd throttle && ./Allrun $* )
|
|
( cd throttle3D && ./Allrun $* )
|
|
|
|
#------------------------------------------------------------------------------
|