mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 10:25:42 +01:00
13 lines
No EOL
386 B
Text
13 lines
No EOL
386 B
Text
rem *******Begin Comment**************
|
|
rem This program starts the superapp batch program on the network,
|
|
rem directs the output to a file, and displays the file
|
|
rem in Notepad.
|
|
rem *******End Comment**************
|
|
@echo off
|
|
if exist C:\output.txt goto EMPTYEXISTS
|
|
setlocal
|
|
path=g:\programs\superapp;%path%
|
|
call superapp>C:\output.txt
|
|
endlocal
|
|
:EMPTYEXISTS
|
|
start notepad c:\output.txt |