: !/bin/sh # create chargecat unload file if [ "$1" = "" ]; then chargecatfile="chargecat.unl" else chargecatfile="$1" fi tmpchargecatfile="/tmp/chargecattmp$$.unl" rm -f "$chargecatfile" "$tmpchargecatfile" runisql <$chargecatfile rm -f "$tmpchargecatfile" exit 0