view etc/editclient.sh @ 1270:d65d8a05e272

[xemacs-hg @ 2003-02-07 20:45:59 by james] Add unload_eldap prototype to fix a compiler warning.
author james
date Fri, 07 Feb 2003 20:46:02 +0000
parents 3ecd8885ac67
children
line wrap: on
line source

#!/bin/sh
if gnuclient -batch -eval t >/dev/null 2>&1; then
  exec gnuclient ${1+"$@"}
else
  xemacs -unmapped -f gnuserv-start &
  until gnuclient -batch -eval t >/dev/null 2>&1
  do
     sleep 1
  done
  exec gnuclient ${1+"$@"}
fi