mirror of
https://github.com/robmcmullen/atrcopy.git
synced 2024-11-04 17:06:01 +00:00
22 lines
458 B
Batchfile
Executable File
22 lines
458 B
Batchfile
Executable File
@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 """
|