Skip to content

Instantly share code, notes, and snippets.

@achamian
Created April 10, 2012 10:02
Show Gist options
  • Save achamian/2350023 to your computer and use it in GitHub Desktop.
Save achamian/2350023 to your computer and use it in GitHub Desktop.
Launch emacs
#!/usr/bin/env sh
if [ -z $1 ]; then
LAUNCH_DIR=$PWD
else
LAUNCH_DIR=$1
fi
open -a Emacs $LAUNCH_DIR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment