Created
April 11, 2014 22:56
-
-
Save psyomn/10508106 to your computer and use it in GitHub Desktop.
mk.screen for quick screen making
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
| #!/usr/bin/env bash | |
| # Standard screen stuff that I do too many times | |
| # add this at something like $HOME/.custom/bin/ | |
| # and add that path to your PATH env to run this | |
| # | |
| # Example usage: | |
| # mk.screen myproject | |
| screen -dmS $1 | |
| screen -S $1 -X screen -t src | |
| screen -S $1 -X screen -t test | |
| screen -S $1 -X screen -t tasks | |
| screen -S $1 -X screen -t run | |
| screen -r $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment