Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 695:74f176715ed2
[xemacs-hg @ 2001-12-15 11:46:33 by youngs]
2001-12-15 John Paul Wallington <jpw@shootybangbang.com>
* modeline.el:
(abbrev-mode-line-string): new customizable variable
(overwrite-mode-line-string): ditto
(auto-fill-mode-line-string): ditto
(defining-kbd-macro-mode-line-string): ditto
* view-less.el:
(view-mode-line-string): ditto
author | youngs |
---|---|
date | Sat, 15 Dec 2001 11:46:34 +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