tmulher has asked for the wisdom of the Perl Monks concerning the following question:
I'm just getting started with scripting so please bear with me. I am able to use perldoc in a windows terminal but when I try 'perldoc perl' in a GIT bash I receive an error:
Can't locate Pod/Perldoc.pm in @INC (@INC contains: /usr/lib/perl5/5.8.8/msys /usr/lib/perl5/5.8.8 /usr/lib/perl5/site_perl/5.8.8/msys /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl .) at /c/ strawberry/perl/bin/perldoc line 5. BEGIN failed--compilation aborted at /c/strawberry/perl/bin/perldoc line 5.
Here is the code in perldoc
#!perl require 5; BEGIN { $^W = 1 if $ENV{'PERLDOCDEBUG'} } use Pod::Perldoc; exit( Pod::Perldoc->run() );
I much prefer using a GIT bash so I would really like to fix this.
Thank you for your time.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: perldoc GIT bash
by MidLifeXis (Monsignor) on Mar 28, 2014 at 15:23 UTC | |
by Anonymous Monk on Mar 28, 2014 at 18:56 UTC | |
by MidLifeXis (Monsignor) on Mar 28, 2014 at 19:18 UTC | |
Re: perldoc GIT bash
by kcott (Archbishop) on Mar 28, 2014 at 16:21 UTC | |
Re: perldoc GIT bash
by bulk88 (Priest) on Mar 31, 2014 at 02:55 UTC |