#!/bin/bash
#< Open a bash xterm and a ksh xterm
# set up a bash xterm and a ksh xterm
# usage would be 2shells && exit (to close the calling xterm)

xterm -title ksh -fg white -bg black -e ksh &
xterm -title bash -fg yellow -bg black -e bash &
exit 0