Created
June 20, 2018 05:46
-
-
Save zaypen/111756bd3ae769d04ec0f01a10128ea6 to your computer and use it in GitHub Desktop.
/usr/local/bin/emacs
This file contains 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
#!/usr/bin/env bash | |
APP="/Applications/MacPorts/Emacs.app/Contents/MacOS/Emacs" | |
if [ -x "$APP" ]; then | |
"$APP" $@ | |
else | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment