#!/bin/sh

APP=spdrs60

if [ $# -eq 2 ] ; then
  $APP "$2" &
else
  $APP &
fi

