쪽팔리면 질문하지 맙시다. 소중한 답변 댓글을 삭제하는건 부끄러운 일 입니다
@echo off
:repeat
Timeout 5
@tasklist | find "Python.exe" /c > NUL
IF %ErrorLevel%==1 goto 1
IF NOT %ErrorLevel%==1 goto 0
:0
goto repeat
:1
Python frontend.py
goto repeat
%ErrorLevel%은 무었을 의미 하는 건가요?
쪽팔리면 질문하지 맙시다. 소중한 답변 댓글을 삭제하는건 부끄러운 일 입니다
@echo off
:repeat
Timeout 5
@tasklist | find "Python.exe" /c > NUL
IF %ErrorLevel%==1 goto 1
IF NOT %ErrorLevel%==1 goto 0
:0
goto repeat
:1
Python frontend.py
goto repeat
%ErrorLevel%은 무었을 의미 하는 건가요?
ÀÚµ¿À¸·Î ¹èÄ¡ÆÄÀÏ ¸¸µé¾î¼ ´Ù½Ã ÆÄÀ̽㠵¹¾Æ°¡°Ô Çϴ°ÅÁÒ...
:repeat
Timeout 5
@tasklist | find "Python.exe" /c > NUL
IF %ErrorLevel%==1 goto 1
goto repeat
:1
Python frontend.py
goto repeat
ÀÌ·¸°Ô ÇÏ¸é µÉ ±î¿ä?
¾Æ¸¶µµ ÀÛµ¿ÇÒ²®´Ï´Ù
@echo off
:repeat
timeout 5
tasklist | find "Python.exe" > nul
if %errorlevel% equ 1 python "frontend.py"
goto repeat