Mercurial > hg > beaglert
annotate scripts/connect_to_project.sh @ 501:6962184f8567 prerelease
Additional name changes to doxygen example title.
author | Robert Jack <robert.h.jack@gmail.com> |
---|---|
date | Wed, 22 Jun 2016 00:34:07 +0100 |
parents | d9a4fc5357e7 |
children |
rev | line source |
---|---|
giuliomoro@425 | 1 #!/bin/sh |
andrewm@61 | 2 # |
giuliomoro@377 | 3 # This script brings an already running Bela program to the foreground |
andrewm@61 | 4 # in the terminal, so it can be run interactively. |
andrewm@61 | 5 |
giuliomoro@462 | 6 SCRIPTDIR=$(dirname "$0") |
giuliomoro@462 | 7 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ |
giuliomoro@462 | 8 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } |
andrewm@61 | 9 |
giuliomoro@418 | 10 ssh -t $BBB_ADDRESS "make -C "$BBB_BELA_HOME" connect" |