#!/bin/sh if [ -z $1 ] then emacsclient -nw -c --alternate-editor='emacs -nw' . else emacsclient -nw -c --alternate-editor='emacs -nw' "$@" fi