Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
10 строки
371 B
Batchfile
10 строки
371 B
Batchfile
@echo off
|
|
|
|
lab01.exe < 01-example.input.txt > 01-example.actual.txt 2>NUL
|
|
|
|
fc /N 01-example.actual.txt 01-example.expected.txt
|
|
|
|
lab01.exe < 02-alignment.input.txt > 02-alignment.actual.txt 2>NUL
|
|
fc /N 02-alignment.actual.txt 02-alignment.expected.txt
|
|
lab01.exe < 03-scaling.input.txt > 03-alignment.actual.txt 2>NUL
|
|
fc /N 03-alignment.actual.txt 03-alignment.expected.txt |