#!/bin/bash DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" if [ -d "$HOME/node_modules" ]; then export NODE_PATH=$HOME/node_modules:$NODE_PATH fi file=$1 port= [ ! -z "$2" ] && port=$2 node $DIR/localstream.js "$file" $port