Sign in
android
/
platform
/
external
/
scapy
/
refs/heads/android14-qpr3-d1-s3-release
/
.
/
run_scapy_py2.bat
blob: b31254102c4e37ea1524136858c47171dccf940f [
file
] [
log
] [
blame
] [
edit
]
@echo
off
set
PYTHONPATH
=%
cd
%
set
PYTHONDONTWRITEBYTECODE
=
True
if
"%1"
==
"--nopause"
(
set
nopause
=
"True"
python
-
m scapy
.
__init__
)
else
(
set
nopause
=
"False"
python
-
m scapy
.
__init__
%*
)
if
%
errorlevel
%==
1
if
NOT
"%nopause%"
==
"True"
(
PAUSE
)