Unix and Linux Discussions Tagged with perl |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
12,556 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
13,627 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
78,472 |
Shell Programming and Scripting |
|
|
|
17 |
167,225 |
Shell Programming and Scripting |
|
|
|
8 |
19,318 |
Shell Programming and Scripting |
|
|
|
9 |
13,268 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,687 |
Shell Programming and Scripting |
|
|
|
1 |
3,645 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,395 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,603 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,260 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,114 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
18,676 |
Programming |
|
|
|
1 |
4,385 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,636 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,913 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
152,238 |
Programming |
|
|
|
2 |
15,963 |
Homework & Coursework Questions |
|
|
|
4 |
3,849 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,956 |
Shell Programming and Scripting |
|
|
|
2 |
4,808 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,457 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,727 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,442 |
Shell Programming and Scripting |
|
|
|
3 |
3,143 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,808 |
Shell Programming and Scripting |
|
|
|
1 |
13,886 |
Homework & Coursework Questions |
|
|
|
1 |
3,814 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,542 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
11,127 |
Shell Programming and Scripting |
|
|
|
2 |
3,084 |
Shell Programming and Scripting |
|
|
|
2 |
2,436 |
Shell Programming and Scripting |
|
|
|
7 |
5,294 |
Shell Programming and Scripting |
|
|
|
10 |
4,000 |
Shell Programming and Scripting |
|
|
|
2 |
5,365 |
Shell Programming and Scripting |
|
|
|
1 |
3,778 |
Shell Programming and Scripting |
|
|
|
4 |
4,504 |
Shell Programming and Scripting |
|
|
|
3 |
3,665 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
6,009 |
Shell Programming and Scripting |
|
|
|
4 |
3,944 |
Shell Programming and Scripting |
PFUNC(1) User Contributed Perl Documentation PFUNC(1)
NAME
pfunc - grep for perl functions
SYNOPSIS
pfunc subroutine FILES...
DESCRIPTION
pfunc searches the named FILES for all calls to the given subroutine. It will report back the file and line number each call is found on
along with what sort of call it is
function foo()
class method Class->foo()
object method $obj->foo()
EXAMPLE
$ pfunc isa /usr/share/perl/5.6.1/*.pm
Called as function in /usr/share/perl/5.6.1/CGI.pm at line 316
Called as function in /usr/share/perl/5.6.1/CGI.pm at line 327
Called as function in /usr/share/perl/5.6.1/CGI.pm at line 397
Called as function in /usr/share/perl/5.6.1/CGI.pm at line 494
Called as function in /usr/share/perl/5.6.1/CGI.pm at line 495
Called as object method in /usr/share/perl/5.6.1/CPAN.pm at line 4957
Called as function in /usr/share/perl/5.6.1/Dumpvalue.pm at line 191
Called as function in /usr/share/perl/5.6.1/Dumpvalue.pm at line 218
Called as function in /usr/share/perl/5.6.1/Dumpvalue.pm at line 248
Called as function in /usr/share/perl/5.6.1/Dumpvalue.pm at line 251
Called as function in /usr/share/perl/5.6.1/Dumpvalue.pm at line 254
Called as object method in /usr/share/perl/5.6.1/Shell.pm at line 28
Called as object method in /usr/share/perl/5.6.1/base.pm at line 12
NOTES
Its not fast, but its accurate.
AUTHOR
Michael G Schwern <schwern@pobox.com>
SEE ALSO
Module::Info
perl v5.12.1 2002-12-05 PFUNC(1)