Created
March 24, 2017 08:47
-
-
Save markotom/8afb265ec01fb717ba681fee8da351cb to your computer and use it in GitHub Desktop.
Open Sublime Text from command line
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
function s() { | |
if [ $# -eq 0 ]; then | |
subl .; | |
else | |
subl "$@"; | |
fi; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment