You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@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 |
|
)
|
|
|