projects
/
chise
/
xemacs-chise.git.1
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
update.
[chise/xemacs-chise.git.1]
/
lib-src
/
installexe.sh
1
#!bash
2
3
install_prog=$1
4
shift
5
6
tstr=""
7
8
while [ $# -gt 0 ]
9
do
10
if [ -f $1.exe ]
11
then
12
tstr="$tstr$1.exe $2.exe"
13
shift 2
14
else
15
tstr="$tstr$1 "
16
fi
17
shift
18
done
19
echo "$install_prog $tstr"
20
eval "$install_prog $tstr"
21
exit
22