in reply to Access to standard module source code?
Hi, you can also pass the -m flag to perldoc, which will display the entire source of the module.
Shell command:
Output:$ perldoc -m List::MoreUtils
package List::MoreUtils; use 5.008_001; use strict; use warnings; my $have_xs; ...
Hope this helps!
|
|---|