#!/bin/bash

# Edit the path in the line below (do not put spaces around the equal sign)
RARSPath=[replaceme]

if [ $# -eq 0 ]
  then
    java -jar $RARSPath
  else
    java -jar $RARSPath nc me "$@"
fi
