9 lines
111 B
Bash
Executable File
9 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
. /etc/profile
|
|
if [ -z $EMACS ]; then
|
|
emacs --daemon
|
|
/usr/bin/emacsclient -t
|
|
else
|
|
/bin/bash
|
|
fi
|