1#!/bin/sh 2if [ -n "$INSIDE_EMACS" ]; then 3 exec emacsclient -n "$@" 4else 5 exec emacsclient -nc "$@" 6fi