#!/bin/sh

#Make sure that we have an argument, otherwise display usage.
if [ 0 == ${#*} ]; then 
   echo "Usage: $0 <app>"
fi

#Properly set search path for shared libraries before running application.
env LD_LIBRARY_PATH=.:../lib ./$*

