#!/bin/bash
# This wrapper script solves the problem of IBM Java being unable to execute
# some binaries if they are called from a symbolic link deeper than 1
#
#    dbornkessel@suse.de
#
exec -a `readlink -f $0` `readlink -f $0`.bin ${1+"$@"}
