10 lines
115 B
Bash
Executable File
10 lines
115 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if test "$1" = ""; then
|
|
PYINTERP="python"
|
|
else
|
|
PYINTERP="$1"
|
|
fi
|
|
|
|
$PYINTERP -m pudb.run debug_me.py
|