Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 301:f8fd9702bf71
Added tag r21-0b48 for changeset 3cc9f0ebfbd1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:40:27 +0200 |
parents | 90d73dddcdc4 |
children |
line wrap: on
line source
#!sh 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