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 |
Enlist the advantages of using c over perl?
How to close a file in perl?
What is the function of cgiwrap in cgi programming?
Distinguish my and local?
What is stdin in perl?
How to print escaping characters inside a string in perl?
Which functions in perl allows you to include a module file.
What exactly is grooving and shortening of the array?
Explain chomp?
What can be done for efficient parameter passing in perl? Explain.
How do I sort a hash by the hash key?
Which has the highest precedence, List or Terms? Explain?