Created
January 28, 2013 02:34
-
-
Save beatak/4652500 to your computer and use it in GitHub Desktop.
started to use emacsclient…
This file contains hidden or 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
#!/bin/sh | |
echo 'checking process' | |
PC=`pgrep Emacs` | |
if [ -z $PC ] | |
then | |
echo 'opening daemon' | |
Emacs --daemon | |
emacsclient -c & | |
else | |
emacsclient -c & | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment