hey guys. ive been trying my had at modules, but no dice. heres what ive
got so far :

**********************************************************************
#!/usr/bin/perl -w
use lib "/usr/lib/perl5/site_perl/5.6.0";
use Mp3::Info;
print "What is the full name of the file you want to check up on?\n";
$file = <STDIN>;
chomp $file;
$tag = get_mp3tag($file) || die "couldnt give tag";
print $tag;
***********************************************************************
but when i run the script, i get a message telling me that it cant find
the module anywhere in @INC. ive specified the directory above, still no
dice. any reason this wouldnt be loading?
thanks

_______________________________________________
Perl-Unix-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to