getopt replaced by shell operations

This commit is contained in:
Guillaume Valadon 2020-04-04 11:54:58 +02:00
parent fe715ab700
commit a55b04efa5
1 changed files with 7 additions and 6 deletions

View File

@ -2,16 +2,17 @@
DIR=$(dirname "$0")
if [ -z "$PYTHON" ]
then
ARGS=$(getopt 23 "$*" 2> /dev/null)
for arg in $ARGS
ARGS=""
for arg in "$@"
do
case $arg
in
-2) PYTHON=python2; shift;;
-3) PYTHON=python3; shift;;
--) PYTHON=python3; break;;
-2) PYTHON=python2;;
-3) PYTHON=python3;;
*) ARGS="$ARGS $arg";;
esac
done
PYTHON=${PYTHON:-python3}
fi
$PYTHON --version > /dev/null 2>&1
if [ ! $? -eq 0 ]
@ -19,4 +20,4 @@ then
echo "WARNING: '$PYTHON' not found, using 'python' instead."
PYTHON=python
fi
PYTHONPATH=$DIR exec "$PYTHON" -m scapy "$@"
PYTHONPATH=$DIR exec "$PYTHON" -m scapy $ARGS