#!/usr/bin/env bash # Big Screen Bot # # Douglas Thrift # # bigscreenbot # Copyright 2011 Douglas Thrift # # This file is part of Big Screen Bot. # # Big Screen Bot is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Big Screen Bot is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Big Screen Bot. If not, see . cd `dirname $0` code=2 while [[ $code -eq 2 ]]; do cp=(bin lib/*jar) java -cp `IFS=':'; echo "${cp[*]}"` net.douglasthrift.bigscreenbot.BigScreenBot "$@" code=$? done exit $code