Skip to content

Instantly share code, notes, and snippets.

@markotom
Created March 24, 2017 08:47
Show Gist options
  • Save markotom/8afb265ec01fb717ba681fee8da351cb to your computer and use it in GitHub Desktop.
Save markotom/8afb265ec01fb717ba681fee8da351cb to your computer and use it in GitHub Desktop.
Open Sublime Text from command line
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