Why we use "use lib $path"?
Answer / guest
If we are trying to add a module or library files in our
program using require or use statement then it will search
that module or library files in the Perl's default search path.
The statement use lib is used to add the directories to
default search path.
So if the module or library file is not located in the
Perl's default search path then it will find the library
files in the path we have given with the use lib $path.
| Is This Answer Correct ? | 3 Yes | 0 No |
How do I sort a hash by the hash value?
Explain lists and ivalue?
How to deleting an existing file in perl programming?
How to check the status of airplane mode (enable/disable) in perl for Android mobile?
Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.
Explain 'grep' function.
What does the qx{ } operator do?
In Perl, what is grep function used for?
What does localtime() do in perl?
what r the future opportunities in PERL/LINUX after 3 years ??
How do you match one letter in the current locale?
How do you give functions private variables that retain their values between calls?