ipdb
ipdb copied to clipboard
Search for executable in PATH when running from the CLI
I run a program as:
myprog.py args
because myprog.py is in my PATH.
Then it would be convenient to be able to do just:
ipdb myprog.py args
to debug it, instead of the currently required:
ipdb `which myprog.py` args