#!/bin/sh
# 
# ivcd  shell script for ivtools comdraw
# 

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)       comdraw
                 ;;
        *)       comdraw "$*"
                 ;;
esac

