10 lines
153 B
Bash
Executable File
10 lines
153 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Set the working directory
|
|
DIR=$(cd "$(dirname "$0")"; pwd)
|
|
|
|
# Run the application
|
|
echo "running from $DIR"
|
|
|
|
open -a Terminal $DIR/ErsatzTV
|