Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 1306:371cff0ccdd7
[xemacs-hg @ 2003-02-16 06:08:02 by youngs]
Take out Rendhalver - 21.5.11 would have been the first release with
him in about.el, but seeing as though he has decided to leave the
project, I've taken him out of about.el. If he changes his mind, I
can always put him back in.
author | youngs |
---|---|
date | Sun, 16 Feb 2003 06:08:02 +0000 |
parents | 0784d089fdc9 |
children | 3ee1c468b215 |
line wrap: on
line source
#!bash install_prog=$1 shift tstr="" while [ $# -gt 0 ] do if [ -f $1.exe ] then tstr="$tstr$1.exe $2.exe" shift 2 else tstr="$tstr$1 " fi shift done echo "$install_prog $tstr" eval "$install_prog $tstr" exit