home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 21
/
CD_ASCQ_21_040595.iso
/
dos
/
prg
/
c
/
freedos3
/
source
/
ters151f
/
tt.bat
< prev
next >
Wrap
DOS Batch File
|
1994-02-08
|
1KB
|
28 lines
::======================================================================
:: ::
:: Usage: ::
:: TT f1 f2 ... fn ::
:: ::
:: Will invoke terse to edit the file f1. When you exit this editing ::
:: session (using Alt-X or Alt-Q), terse be invoked again to edit the ::
:: file f2, when you will finish with f3 terse will be invoked to ::
:: edit f3, and so on until until fn is edited. ::
:: ::
:: Any of f1 ... fn may be a wild card, in which case terse would ::
:: be invoked on all files matching this wild card. ::
:: ::
:: Example: ::
:: TT *.bat c:\config.sys d:chap?.* ::
:: ::
::======================================================================
@echo off
set editor=t.com
set tparams=
:loop
if [%1]==[] goto exec
set tparams=%tparams% %1
shift
goto loop
:exec
for %%f in (%tparams%) do %editor% %%f