pudb/try-the-debugger.sh

10 lines
116 B
Bash
Raw Normal View History

#! /bin/sh
if test "$1" = ""; then
2020-09-28 13:53:53 -05:00
PYINTERP="python3"
else
PYINTERP="$1"
fi
$PYINTERP -m pudb.run debug_me.py