http://blog.tupleshop.com/2007/7/22/pimp-my-iterm dla iTerm.
A tak dla gnome-terminal (w komentarzu)
!/bin/bashif [[ $# == 0 ]]; then PROJECT_DIR=$PWD elif [[ $# == 1 && -d ”$1” ]]; then PROJECT_DIR=”$@” else print “usage: iterm.sh [rails project directory]” return 1 ficd $PROJECT_DIRgvim gnome-terminal \ —tab -t “app” \ —tab -t “server” -e “sh -x -c ’./script/server’” \ —tab -t “console” -e “sh -x -c ’./script/console’” \ —tab -t “log” -e “sh -x -c ‘tail -f log/development.log’”