Created
November 3, 2011 17:56
-
-
Save ChrisWills/1337202 to your computer and use it in GitHub Desktop.
A screenrc that sets up a development environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gnu Screen example project configuration file | |
# Author: Christian Wills - [email protected] | |
source /home/cwills/.screenrc | |
chdir /home/cwills/projects/school/cs101/hw1/ | |
screen | |
title "bash" | |
chdir /home/cwills/projects/school/cs101/hw1/client | |
screen bash | |
exec vim client.c | |
title "client" | |
chdir /home/cwills/projects/school/cs101/hw1/server | |
screen bash | |
exec vim server.c | |
title "server" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment