#!/bin/sh
#
#	batch smp with output saved in a dot file
#
case $# in
	1)  smp <$1 | tee .$1 ;;
	*)  echo "Usage: ssmp command_file"
esac

