8 lines
147 B
Bash
Executable File
8 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
if [ -z $1 ]
|
|
then
|
|
emacsclient -nw -c --alternate-editor='emacs -nw' .
|
|
else
|
|
emacsclient -nw -c --alternate-editor='emacs -nw' "$@"
|
|
fi
|