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

