11 lines
191 B
Bash
11 lines
191 B
Bash
#!/bin/bash
|
|
|
|
declare -r OS=$(uname -s)
|
|
|
|
if [[ "${OS}" == "Darwin" ]]; then
|
|
"${EMACS_DIR}/Emacs.app/Contents/MacOS/bin/emacsclient" -c "$@"
|
|
else
|
|
"${EMACS_DIR}/bin/emacsclient" -c "$@" &
|
|
fi
|
|
|