Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 4774:26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
See xemacs-patches message with ID
<870180fe0912151244y5bb656b0g8f28cf7c34e66420@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Tue, 15 Dec 2009 13:45:48 -0700 |
parents | 3ee1c468b215 |
children | 8a653fbe5c27 |
line wrap: on
line source
#!bash install_prog=$1 shift tstr="" while [[ $# -gt 0 ]] do if [[ -f $1.exe ]] then if [[ "$2" == *.exe ]] then tstr="$tstr$1 $2" else tstr="$tstr$1.exe $2.exe" fi shift 2 else tstr="$tstr$1 " fi shift done echo "$install_prog $tstr" eval "$install_prog $tstr" exit