8 lines
94 B
Plaintext
8 lines
94 B
Plaintext
|
#!/bin/sh
|
||
|
if [ -z $EMACS ]; then
|
||
|
emacs --daemon
|
||
|
/usr/bin/emacsclient -t
|
||
|
else
|
||
|
/bin/sh
|
||
|
fi
|