mirror of
https://github.com/robmcmullen/atrcopy.git
synced 2024-11-29 11:51:14 +00:00
22 lines
458 B
Batchfile
22 lines
458 B
Batchfile
|
@echo off
|
||
|
rem = """-*-Python-*- script
|
||
|
rem Windows batch script based on pylint's batch scripts
|
||
|
rem Don't know how this works, but it does.
|
||
|
rem
|
||
|
rem -------------------- DOS section --------------------
|
||
|
rem You could set PYTHONPATH or TK environment variables here
|
||
|
python -x "%~f0" %*
|
||
|
goto exit
|
||
|
|
||
|
"""
|
||
|
# -------------------- Python section --------------------
|
||
|
import os,sys
|
||
|
|
||
|
import atrcopy
|
||
|
|
||
|
atrcopy.run()
|
||
|
|
||
|
DosExitLabel = """
|
||
|
:exit
|
||
|
rem """
|