Created
April 7, 2011 19:10
-
-
Save ernie/908466 to your computer and use it in GitHub Desktop.
A couple of bash functions for use with pow
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
| # These are nothing fancy. Stick them in your .profile for quick access. | |
| # Tail the log of a pow application | |
| function powl { | |
| tail -f ~/.pow/"$1"/log/development.log | |
| } | |
| # Restart a pow application | |
| function powr { | |
| touch ~/.pow/"$1"/tmp/restart.txt | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment