Sign in
android
/
platform
/
external
/
scapy
/
refs/heads/android15-tests-dev
/
.
/
run_scapy_py3.bat
blob: e19c16d5a80c00b4ca3a293841abf525af5cd5ab [
file
] [
log
] [
blame
] [
edit
]
@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
)