Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: [perldoc] keyword search

by LanX (Saint)
on Aug 08, 2009 at 01:17 UTC ( [id://786973]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # ALL OCCURENCES
    > grep -l 'qr//' /usr/share/perl/5.10/pod/*.pod
    ...
    /usr/share/perl/5.10/pod/perlre.pod
    /usr/share/perl/5.10/pod/perlretut.pod
    /usr/share/perl/5.10/pod/perltoc.pod
    
  2. or download this
    # JUST THE X TAGS WITH qr
    > grep -l 'X<qr>' /usr/share/perl/5.10/pod/*.pod
    /usr/share/perl/5.10/pod/perlop.pod
    /usr/share/perl/5.10/pod/perltoc.pod
    
  3. or download this
    # AUTOMATICALLY OPENING THE SEARCHRESULTS IN PERLDOC
    > for i in `grep -l 'X<qr>' /usr/share/perl/5.10/pod/*.pod`;do perldoc
    + $i;done
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://786973]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (4)
As of 2024-04-19 21:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found