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