I know that "bash -x script.sh" will execute script printing each line before actual execution. How to make perl and python interpreters do the same?
views:
148answers:
1For clarification: `perl -d:Trace program.pl` and `python -m trace -t program.py` respectively.
Vi
2010-05-21 00:51:34