in reply to File Copy on Linux
Now, to check for what modules are availible on a particular installation, there are two ways to go about it: the correct way and the quick way.my $copyLog = "perlCopy.log";
This has the added advantage of informing you of all modules installed in the default location for this installation.perl -MExtUtils::Installed -e'foreach(ExtUtils::Installed->new()->modu +les()){print"$_\n";}' | less
If the module isn't installed you'll get a "Can't locate Some/Module.pm" error.perl -MSome::Module -e'print"hello,world\n";'
|
|---|