: !/bin/sh # create dataplan unload file if [ "$1" = "" ]; then dataplanfile="dataplan.unl" else dataplanfile="$1" fi tmpdataplanfile="/tmp/dataplantmp$$.unl" rm -f "$dataplanfile" "$tmpdataplanfile" runisql <$dataplanfile rm -f "$tmpdataplanfile" exit 0