Created
January 22, 2014 21:36
-
-
Save markrickert/8567818 to your computer and use it in GitHub Desktop.
wo - "Work On", a bash alias for quickly cd-ing into directories
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
# wo = work on | |
wo() { | |
code_dir=~/Dropbox # replace it with your development directory | |
cd $(find $code_dir -type d -maxdepth 3 | grep -i $* | grep -Ev Pods --max-count=1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment