8 lines
147 B
Plaintext
Raw Normal View History

2023-05-13 01:06:40 +07:00
#!/bin/sh
if [ -z $1 ]
then
emacsclient -nw -c --alternate-editor='emacs -nw' .
else
emacsclient -nw -c --alternate-editor='emacs -nw' "$@"
fi