#!/bin/sh if [ $(id -u) -eq 0 ]; then exec sudo -u neoraider emacsclient -nw /sudo::$(readlink -f $1) else exec emacsclient -nw $(readlink -f $1) fi