#!/bin/sh
# 
# ivdt  shell script for ivtools drawtool
# 

LD_LIBRARY_PATH=/var/tmp/ivtools-0.8.2/usr/lib:$LD_LIBRARY_PATH 
PATH=/var/tmp/ivtools-0.8.2/usr/bin:$PATH 
case "$#" in 
        0)       drawtool
                 ;;
        *)       drawtool "$*"
                 ;;
esac

