#!/bin/sh

tput home
echo -n "$@"
case `uname` in
  FreeBSD) tput ce;;
  *) tput el;;
esac
stty icrnl
read A
mutt "$@"
