view etc/editclient.sh @ 575:d5e8f5ad5043

[xemacs-hg @ 2001-05-25 04:22:31 by martinb] Fix compile warning
author martinb
date Fri, 25 May 2001 04:22:33 +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