How to Install and Uninstall perl-Devel-Trace Package on openSuSE Tumbleweed
Last updated: November 23,2024
1. Install "perl-Devel-Trace" package
In this section, we are going to explain the necessary steps to install perl-Devel-Trace on openSuSE Tumbleweed
$
sudo zypper refresh
Copied
$
sudo zypper install
perl-Devel-Trace
Copied
2. Uninstall "perl-Devel-Trace" package
Please follow the instructions below to uninstall perl-Devel-Trace on openSuSE Tumbleweed:
$
sudo zypper remove
perl-Devel-Trace
Copied
3. Information about the perl-Devel-Trace package on openSuSE Tumbleweed
Information for package perl-Devel-Trace:
-----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Devel-Trace
Version : 0.12-1.26
Arch : noarch
Vendor : openSUSE
Installed Size : 7.9 KiB
Installed : No
Status : not installed
Source package : perl-Devel-Trace-0.12-1.26.src
Upstream URL : http://search.cpan.org/dist/Devel-Trace/
Summary : Print out each line before it is executed (like C)
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\n";
print "Statement 2 at line 5\n";
print "Call to sub x returns ", &x(), " at line 6.\n";
exit 0;
sub x {
print "In sub x at line 12.\n";
return 13;
}
Then the 'Trace' output will look like this:
>> ./test:4: print "Statement 1 at line 4\n";
>> ./test:5: print "Statement 2 at line 5\n";
>> ./test:6: print "Call to sub x returns ", &x(), " at line 6.\n";
>> ./test:12: print "In sub x at line 12.\n";
>> ./test:13: return 13;
>> ./test:8: exit 0;
This is something like the shell's '-x' option.
-----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Devel-Trace
Version : 0.12-1.26
Arch : noarch
Vendor : openSUSE
Installed Size : 7.9 KiB
Installed : No
Status : not installed
Source package : perl-Devel-Trace-0.12-1.26.src
Upstream URL : http://search.cpan.org/dist/Devel-Trace/
Summary : Print out each line before it is executed (like C
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\n";
print "Statement 2 at line 5\n";
print "Call to sub x returns ", &x(), " at line 6.\n";
exit 0;
sub x {
print "In sub x at line 12.\n";
return 13;
}
Then the 'Trace' output will look like this:
>> ./test:4: print "Statement 1 at line 4\n";
>> ./test:5: print "Statement 2 at line 5\n";
>> ./test:6: print "Call to sub x returns ", &x(), " at line 6.\n";
>> ./test:12: print "In sub x at line 12.\n";
>> ./test:13: return 13;
>> ./test:8: exit 0;
This is something like the shell's '-x' option.