#!/bin/bash # Simple way to create a main development screen in the # right base directory, or re-attach to the one that is # already setup. # I create a symlink or alias 's' so I am always one keystroke # away from my dev screen. if screen -ls | grep main > /dev/null then screen -x else cd $HOME/Development && screen -S main fi