Name : perl-Devel-Trace
| |
Version : 0.12
| Vendor : openSUSE
|
Release : bp154.1.1
| Date : 2021-07-15 09:52:29
|
Group : Development/Libraries/Perl
| Source RPM : perl-Devel-Trace-0.12-bp154.1.1.src.rpm
|
Size : 0.01 MB
| |
Packager : https://bugs_opensuse_org
| |
Summary : Print out each line before it is executed (like C< sh -x>)
|
Description :
If you run your program with \'perl -d:Trace program\', this module will print a message to standard error just before each line is executed. For example, if your program looks like this:
print \"Statement 1 at line 4\ \"; print \"Statement 2 at line 5\ \"; print \"Call to sub x returns \", &x(), \" at line 6.\ \";
exit 0;
sub x { print \"In sub x at line 12.\ \"; return 13; }
Then the \'Trace\' output will look like this:
>> ./test:4: print \"Statement 1 at line 4\ \"; >> ./test:5: print \"Statement 2 at line 5\ \"; >> ./test:6: print \"Call to sub x returns \", &x(), \" at line 6.\ \"; >> ./test:12: print \"In sub x at line 12.\ \"; >> ./test:13: return 13; >> ./test:8: exit 0;
This is something like the shell\'s \'-x\' option.
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/openSUSE:/Backports:/SLE-15-SP4/step/noarch |