Skip to content

Instantly share code, notes, and snippets.

@hugo
Last active August 29, 2015 13:56
Show Gist options
  • Save hugo/9246935 to your computer and use it in GitHub Desktop.
Save hugo/9246935 to your computer and use it in GitHub Desktop.
// opens either the file/path passed in as the first argument, or the current directory in Atom
atom() {
path=${1-"$(pwd)"}
echo "opening $path in Atom..."
open -a /Applications/Atom.app "$path"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment