diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-06 22:49:55 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-06 22:49:55 -0700 |
commit | f0b99910f3558a426bcc80e2aff54c5d0428e5bb (patch) | |
tree | 351abe9676ea14106127e65ce78d16633e0ac92b /subx/nrun | |
parent | 5f1de34a679ab0b9c59067f7924f1c953917b53e (diff) | |
download | mu-f0b99910f3558a426bcc80e2aff54c5d0428e5bb.tar.gz |
4313 - some helpers for managing test binaries
I'm getting sick of hitting the <Tab> key.
Diffstat (limited to 'subx/nrun')
-rwxr-xr-x | subx/nrun | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/subx/nrun b/subx/nrun new file mode 100755 index 00000000..f5c22dee --- /dev/null +++ b/subx/nrun @@ -0,0 +1,10 @@ +#!/usr/bin/env zsh +# Natively run a specific example. + +if [ $# -eq 0 ] +then + echo "nrun <suffix>" + exit 1 +fi + +./teensy/test$1 |