1
1
mirror of https://github.com/secdev/scapy.git synced 2025-02-24 09:37:07 +00:00
scapy/run_scapy.bat
Gabriel Potter c4e038a2ce Modified start script (windows) ()
Added PAUSE when scapy crashes (to see error code), so the cmd won't
close itself
2016-11-11 13:28:36 +00:00

7 lines
91 B
Batchfile

@echo off
set PYTHONPATH=%cd%
python -m scapy.__init__
if errorlevel 1 (
PAUSE
)