10 lines
116 B
Bash
Executable File
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
|