On Mon, May 29, 2000 at 11:20:04PM -0400, Chris Gray wrote: > > pidof xemacs && gnuclient -q $1 || xemacs -nw $1 This will only work if you are the one and only user ever to use xemacs. So you better use (analog to what was shown on the list a couple of days ago):
$ fuser -sn tcp $((UID+21490)) && gnuclient -q $1 || xemacs -nw $1 as gnuserver will open a user uniq tcp port on $((UID+21490)). And to really speed up things, you could even use the -vanilla flag next to -nw to tell xemacs to forget about all those nifty packages that take all this time to load. -- groetjes, carel