Fix small typo in ELC list.
[ess.git] / etc / BACKBUGS.BAT
blob1f2cf8cf7afc0aecfa2f385403d0a1d51cdf8c5a
1 @echo off
2 rem ESS[BUGS]:  02/13/2003
3 rem runs BUGS taking commands from command file
5 if not "%3"=="" goto 30
6 if not "%2"=="" goto 20
7 if not "%1"=="" goto 10
9 echo usage: backbugs [[number_of_bins] default_output_name] command_file
10 goto 40
12 :10
13 bugs0603.exe 32 bugs %1
14 if exist bugs.bog attrib -r bugs.bog
15 copy /y bugs.log bugs.bog
16 attrib +r bugs.bog
17 goto 40
19 :20
20 bugs0603.exe 32 %1 %2
21 if exist %1.bog attrib -r %1.bog
22 copy /y %1.log %1.bog
23 attrib +r %1.bog
24 goto 40
26 :30
27 bugs0603.exe %1 %2 %3
28 if exist %2.bog attrib -r %2.bog
29 copy /y %2.log %2.bog
30 attrib +r %2.bog
32 :40