Skip to content

Instantly share code, notes, and snippets.

@imjared
Created September 22, 2016 02:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imjared/db14e2c92df864ae048e1d2a94d08c0f to your computer and use it in GitHub Desktop.
Save imjared/db14e2c92df864ae048e1d2a94d08c0f to your computer and use it in GitHub Desktop.
#!/bin/bash
projectFile=$(find $1 -name "*.sublime-project" -maxdepth 1)
echo $projectFile
if [ $projectFile ]
then
subl $projectFile
else
subl $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment