scapy/run_scapy

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
270 B
Plaintext
Raw Normal View History

#! /bin/sh
DIR=$(dirname "$0")
if [ -z "$PYTHON" ]
then
2020-04-04 09:54:58 +00:00
PYTHON=${PYTHON:-python3}
fi
$PYTHON --version > /dev/null 2>&1
if [ ! $? -eq 0 ]
then
echo "WARNING: '$PYTHON' not found, using 'python' instead."
PYTHON=python
fi
PYTHONPATH=$DIR exec "$PYTHON" -m scapy $@