mirror of
https://github.com/workinghard/mmuGcodeParser.git
synced 2025-12-13 14:32:08 +00:00
10 lines
256 B
Batchfile
10 lines
256 B
Batchfile
@ECHO OFF
|
|
SET filepath=%~f1
|
|
|
|
IF NOT EXIST "%filepath%" (
|
|
ECHO %~n0: file not found - %filepath% >&2
|
|
EXIT /B 1
|
|
)
|
|
ECHO Adjusting the gcode file. Please wait ...
|
|
C:\<path to python>\python.exe C:\<path to script>\mmuGcodeParser.py %filepath%
|