pudb/try-the-debugger.sh
2020-09-28 13:53:53 -05:00

10 lines
116 B
Bash
Executable File

#! /bin/sh
if test "$1" = ""; then
PYINTERP="python3"
else
PYINTERP="$1"
fi
$PYINTERP -m pudb.run debug_me.py