Files
Android11/external/scapy/run_scapy_py3.bat
2023-10-13 14:01:41 +00:00

14 lines
258 B
Batchfile

@echo off
set PYTHONPATH=%cd%
set PYTHONDONTWRITEBYTECODE=True
if "%1"=="--nopause" (
set nopause="True"
python3 -m scapy.__init__
) else (
set nopause="False"
python3 -m scapy.__init__ %*
)
if %errorlevel%==1 if NOT "%nopause%"=="True" (
PAUSE
)